/* ============================================
   Tucson Wallpaper Studio — Main Stylesheet
   Luxury Dark Theme
   ============================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --bg-primary: #121212;
  --bg-secondary: #1F1F1F;
  --bg-light: #F5F5F5;
  --text-light: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #AAAAAA;
  --accent: #C9A24A;
  --accent-hover: #B8933F;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

/* === RESET === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--text-light);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 74, 0.15);
  height: var(--header-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.logo a span {
  color: var(--accent);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
}

.header-contact a {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.header-contact a:hover {
  color: var(--accent);
}

.header-contact svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* === MAIN NAV === */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: block;
  padding: 0 16px;
  line-height: var(--header-height);
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--accent);
}

/* === DROPDOWN === */
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  transition: transform var(--transition);
}

.dropdown:hover > a::after {
  transform: rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--bg-secondary);
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu li {
  opacity: 1;
  transform: translateX(0);
}

.dropdown:hover .dropdown-menu li:nth-child(1) { transition-delay: 0.05s; }
.dropdown:hover .dropdown-menu li:nth-child(2) { transition-delay: 0.1s; }
.dropdown:hover .dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
.dropdown:hover .dropdown-menu li:nth-child(4) { transition-delay: 0.2s; }
.dropdown:hover .dropdown-menu li:nth-child(5) { transition-delay: 0.25s; }
.dropdown:hover .dropdown-menu li:nth-child(6) { transition-delay: 0.3s; }
.dropdown:hover .dropdown-menu li:nth-child(7) { transition-delay: 0.35s; }
.dropdown:hover .dropdown-menu li:nth-child(8) { transition-delay: 0.4s; }
.dropdown:hover .dropdown-menu li:nth-child(9) { transition-delay: 0.45s; }
.dropdown:hover .dropdown-menu li:nth-child(10) { transition-delay: 0.5s; }
.dropdown:hover .dropdown-menu li:nth-child(11) { transition-delay: 0.55s; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(201, 162, 74, 0.08);
  padding-left: 26px;
}

/* === HAMBURGER / MOBILE MENU === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 1050;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  padding: var(--header-height) 0 30px;
  border-left: 1px solid rgba(201, 162, 74, 0.15);
}

.mobile-nav-overlay.open {
  transform: translateX(0);
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
}

.mobile-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(201, 162, 74, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1060;
}

.mobile-close-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
}

.mobile-close-btn:hover {
  border-color: var(--accent);
}

.mobile-close-btn:hover svg {
  stroke: var(--accent);
}

.mobile-nav-list {
  padding: 20px 24px;
}

.mobile-nav-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-list > li > a {
  display: block;
  padding: 14px 0;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}

.mobile-nav-list > li > a:hover {
  color: var(--accent);
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.mobile-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-dropdown-toggle.open::after {
  transform: rotate(-135deg);
}

.mobile-dropdown-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 16px;
}

.mobile-dropdown-list.open {
  max-height: 600px;
}

.mobile-dropdown-list a {
  display: block;
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: left;
}

.mobile-dropdown-list a:hover {
  color: var(--accent);
}

.mobile-nav-contact {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 10px;
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.mobile-nav-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.85) 0%, rgba(18, 18, 18, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-text h1 span {
  color: var(--accent);
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 520px;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  height: auto;
  min-height: 52px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--text-dark);
  box-shadow: 0 0 20px rgba(201, 162, 74, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--text-dark);
}

/* === SECTIONS === */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--bg-primary);
}

.section-alt {
  background: var(--bg-secondary);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-light h2,
.section-light h3 {
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-light .section-header p {
  color: #666;
}

.accent-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* === CARDS GRID === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.section-light .card {
  background: #fff;
  border: 1px solid #e5e5e5;
}

.card-image {
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.section-light .card-body p {
  color: #666;
}

.card-body .btn {
  padding: 10px 24px;
  min-height: 44px;
  font-size: 0.85rem;
}

/* === FEEDBACK FORM === */
.feedback-form-container {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(201, 162, 74, 0.15);
}

.feedback-form-container h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: var(--text-light);
  text-align: center;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form .form-group {
  margin-bottom: 0;
  position: relative;
}

.contact-form .form-group:last-child:not(.form-row .form-group) {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 20px;
}

.submit-btn {
  display: inline-block;
  padding: 16px 48px;
  min-height: 54px;
  background: var(--accent);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
}

.submit-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 25px rgba(201, 162, 74, 0.35);
}

#form-success {
  text-align: center;
  padding: 30px;
}

#form-success p {
  font-size: 1.1rem;
  color: var(--accent);
}

.error-message {
  color: #ff6b6b;
  margin-top: 5px;
  font-size: 14px;
}

/* === MAP === */
.map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 74, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* === GALLERY / IMAGE GRID === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* === TWO COLUMN LAYOUT === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.two-col-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.two-col-text p {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.section-light .two-col-text p {
  color: #555;
}

.two-col-image {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === CONTENT SECTIONS (for SEO text) === */
.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 1.8rem;
  margin: 40px 0 15px;
}

.content-section h3 {
  font-size: 1.3rem;
  margin: 30px 0 12px;
}

.content-section p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.section-light .content-section p {
  color: #555;
}

.content-section ul,
.content-section ol {
  margin: 15px 0;
  padding-left: 24px;
}

.content-section ul {
  list-style: disc;
}

.content-section ol {
  list-style: decimal;
}

.content-section li {
  margin-bottom: 8px;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.section-light .content-section li {
  color: #555;
}

/* === CTA BLOCK === */
.cta-block {
  text-align: center;
  padding: 40px;
  background: rgba(201, 162, 74, 0.06);
  border-radius: 12px;
  margin: 40px 0;
  border: 1px solid rgba(201, 162, 74, 0.12);
}

.cta-block h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.cta-block p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cta-block .btn {
  margin: 0 8px;
}

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-secondary);
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.section-light .faq-item {
  background: #fff;
  border: 1px solid #e5e5e5;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.section-light .faq-answer-inner {
  color: #555;
}

.faq-answer-inner a {
  color: var(--accent);
}

/* === AREAS / NEIGHBORHOODS GRID === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.area-tag {
  display: block;
  padding: 12px 18px;
  background: rgba(201, 162, 74, 0.08);
  border: 1px solid rgba(201, 162, 74, 0.15);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  transition: all var(--transition);
}

.area-tag:hover {
  background: var(--accent);
  color: var(--text-dark);
}

/* === FOOTER === */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(201, 162, 74, 0.15);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer-col p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* === STICKY QUOTE BUTTON === */
.sticky-quote-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  padding: 16px 28px;
  background: var(--accent);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 8px 25px rgba(201, 162, 74, 0.35);
}

.sticky-quote-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 30px rgba(201, 162, 74, 0.5);
  transform: translateY(-2px);
}

/* === MODAL === */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--bg-primary);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 20px;
  border: 1px solid rgba(201, 162, 74, 0.2);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(201, 162, 74, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
}

.modal-close:hover {
  border-color: var(--accent);
}

.modal-close:hover svg {
  stroke: var(--accent);
}

/* === PAGE HEADER (inner pages) === */
.page-header {
  padding: 120px 0 60px;
  margin-top: var(--header-height);
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 15px 0;
  font-size: 0.82rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs span {
  color: var(--text-muted);
  margin: 0 8px;
}

.breadcrumbs .current {
  color: var(--accent);
}

/* === ICON LIST === */
.icon-list {
  list-style: none;
  padding: 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.section-light .icon-list li {
  color: #555;
}

.icon-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* === STATS === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }

  .main-nav {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav-overlay,
  .mobile-nav-backdrop {
    display: block;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-header {
    padding: 80px 0 40px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .feedback-form-container {
    padding: 25px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .sticky-quote-btn {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    width: calc(100% - 40px);
    max-width: 320px;
    text-align: center;
  }

  .sticky-quote-btn:hover {
    transform: translateX(50%) translateY(-2px);
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .cta-block {
    padding: 25px;
  }

  .two-col-image {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* === PRINT === */
@media print {
  .site-header,
  .sticky-quote-btn,
  .modal-overlay,
  .mobile-nav-overlay,
  .mobile-nav-backdrop {
    display: none !important;
  }
}
