/* ============================================================
   AA PAINTSHOP SOLUTION — Main Stylesheet
   Complete Surface Finishing Solutions
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --orange:        #E07B00;
  --orange-dark:   #C06A00;
  --orange-light:  #F5A623;
  --orange-pale:   #FFF4E6;
  --navy:          #0D1B2A;
  --navy-light:    #1A2E42;
  --white:         #FFFFFF;
  --gray-light:    #F7F7F5;
  --gray-mid:      #E8E8E6;
  --gray:          #666666;
  --gray-dark:     #444444;
  --text:          #1E1E1E;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.16);
  --radius:        4px;
  --transition:    all 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
input, textarea, select, button { font-family: 'Barlow', sans-serif; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.55); }
.topbar a:hover { color: var(--orange-light); }
.topbar-left { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a { display: flex; align-items: center; gap: 5px; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  padding: 4px 0;
}
.logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  /* logo has black bg — show as-is, it works on white header */
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 9px 15px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius);
  letter-spacing: 0.4px;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 15px; right: 15px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover { color: var(--orange); }
.main-nav a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.5px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-dark) !important; color: white !important; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 7px 12px;
  cursor: pointer;
  color: var(--orange);
  font-size: 1.15rem;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
}
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 40%, var(--navy-light));
  opacity: 0.85;
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  line-height: 1.1;
}
.page-banner h1 em { font-style: normal; color: var(--orange-light); }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb .sep { color: var(--orange); }
.breadcrumb .current { color: var(--orange-light); }

/* ===== SECTION COMMONS ===== */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 110px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.section-title em { font-style: normal; color: var(--orange); }
.section-title.white { color: var(--white); }
.section-desc {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 580px;
}
.section-desc.white { color: rgba(255,255,255,0.6); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }
.section-head.center .section-label { justify-content: center; }
.section-head.center .section-label::before { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,123,0,0.35); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: white; transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--orange-dark);
  border-color: white;
}
.btn-white:hover { background: var(--orange-pale); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--orange-light); color: var(--orange-light); }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.83rem; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--orange); }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card-body { padding: 24px; }
.card-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.2;
}
.card-desc { font-size: 0.87rem; color: var(--gray); line-height: 1.65; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-link:hover { gap: 10px; }

/* ===== ICON BOX ===== */
.icon-box {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  transition: var(--transition);
}
.icon-box:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.icon-box-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.icon-box-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.icon-box-desc { font-size: 0.87rem; color: var(--gray); line-height: 1.65; }

/* ===== STATS ===== */
.stat-box { text-align: center; }
.stat-box .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange-light);
  line-height: 1;
}
.stat-box .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* ===== DARK SECTION ===== */
.bg-dark-navy { background: var(--navy); }
.bg-gray { background: var(--gray-light); }
.bg-orange-pale { background: var(--orange-pale); }

/* ===== PRODUCT ITEM ===== */
.product-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.product-chip:hover { background: rgba(224,123,0,0.18); border-color: var(--orange); }
.product-chip .icon { font-size: 1.6rem; margin-bottom: 10px; }
.product-chip .name { font-size: 0.83rem; color: rgba(255,255,255,0.85); font-weight: 600; line-height: 1.35; }

/* ===== DARK CARD ===== */
.dark-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
}
.dark-card:hover { background: rgba(255,255,255,0.1); border-color: var(--orange); }
.dark-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--orange-light);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.dark-card-desc { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ===== CONTACT ===== */
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-card-title { font-weight: 700; color: var(--navy); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-card-text { font-size: 0.9rem; color: var(--gray); line-height: 1.5; }
.contact-card-text a { color: var(--orange); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { outline: none; border-color: var(--orange); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  background: var(--orange);
  color: white;
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.contact-form button:hover { background: var(--orange-dark); transform: translateY(-2px); }
.form-success {
  display: none;
  background: #f0fff4;
  border: 1px solid #68d391;
  color: #276749;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
}

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -5%;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.55); }
.footer-top { padding: 64px 0; border-bottom: 1px solid rgba(255,255,255,0.09); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand .brand {
  font-family: 'Barlow Condensed', sans-serif;
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}
.footer-brand .tagline {
  color: var(--orange-light);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
  margin-top: 2px;
}
.footer-brand p { font-size: 0.87rem; line-height: 1.7; max-width: 290px; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a::before { content: '›'; color: var(--orange); font-size: 1rem; }
.footer-col ul li a:hover { color: var(--orange-light); padding-left: 4px; }
.footer-contact-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 13px; font-size: 0.87rem; }
.footer-contact-row .icon { color: var(--orange-light); font-size: 0.9rem; min-width: 16px; margin-top: 2px; }
.footer-contact-row a { color: rgba(255,255,255,0.5); }
.footer-contact-row a:hover { color: var(--orange-light); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--orange-light); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.07); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== HERO (index) ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/banner/banner.jfif?w=1800&q=80') center/cover no-repeat;
  opacity: 0.3;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--navy) 45%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 1000px; padding: 50px 0; }
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-title em { font-style: normal; color: var(--orange-light); }
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  line-height: 1.72;
  margin-bottom: 38px;
  font-weight: 300;
  max-width: 550px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 60px;
  padding-top: 42px;
  border-top: 1px solid rgba(255,255,255,0.13);
  flex-wrap: wrap;
}

/* ===== ABOUT (index) ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col.gap-lg { gap: 80px; }
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

.img-block { position: relative; border-radius: var(--radius); overflow: hidden; }
.img-block img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--orange);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
}
.img-badge span { display: block; font-size: 0.7rem; font-family: 'Barlow', sans-serif; font-weight: 400; opacity: 0.85; letter-spacing: 1px; }

.check-list { display: flex; flex-direction: column; gap: 13px; margin: 24px 0; }
.check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-icon {
  width: 26px; height: 26px; min-width: 26px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
  margin-top: 2px;
}
.check-text { font-size: 0.92rem; color: var(--gray-dark); line-height: 1.55; }
.check-text strong { color: var(--navy); font-weight: 700; }

/* Service detail list */
.service-detail-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.service-detail-list li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-dark);
  padding: 10px 14px;
  background: var(--gray-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
}

/* Inline info box */
.info-band {
  background: var(--orange);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 24px;
}
.info-band strong { display: block; font-size: 1rem; margin-bottom: 4px; }

/* ===== HORIZONTAL RULE ===== */
.divider { border: none; border-top: 1px solid var(--gray-mid); margin: 0; }

/* ===== GRID HELPERS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.gap-sm { gap: 16px; }
.gap-lg { gap: 40px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.flip { direction: ltr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-top: 2px solid var(--orange);
    gap: 4px;
    z-index: 1000;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 10px 12px; }
  .main-nav a.nav-cta { width: auto; display: inline-flex; }
  .site-header { position: relative; }
  .header-inner { position: relative; }

  .hero { min-height: 75vh; }
  .hero-stats { gap: 28px; }
  .hero-title { font-size: 2.4rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar .container { flex-direction: column; gap: 4px; text-align: center; }
  .topbar-right { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .page-banner { padding: 60px 0; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
}
