/* ============================================
   Sydney Floors Australia — Light Theme
   White + Warm Cream + Dark Navy + Gold
   ============================================ */

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

:root {
  /* Brand accent */
  --gold:        #C9A84C;
  --gold-light:  #ddb86a;
  --gold-dark:   #a8863a;
  --brown:       #8B6040;

  /* Light backgrounds */
  --bg:          #ffffff;
  --bg-2:        #faf6f0;   /* warm cream — alternate sections */
  --bg-3:        #f2ebe0;   /* light beige — cards / inputs */
  --bg-4:        #e8dccb;   /* medium beige — borders / dividers */

  /* Text / navy */
  --navy:        #12192e;   /* headings & primary text */
  --navy-2:      #1e2d4a;
  --text:        #3a3228;   /* body text */
  --muted:       #7a6b59;   /* secondary / muted text */
  --muted-light: #a89880;

  /* Footer (kept dark for contrast) */
  --footer-bg:   #0e1525;
  --footer-text: #8a9ab8;

  /* Aliases used in HTML inline styles */
  --dark:        #12192e;
  --dark-2:      #faf6f0;
  --dark-3:      #f2ebe0;
  --dark-4:      #e8dccb;
  --white:       #ffffff;
  --gray:        #7a6b59;
  --gray-light:  #3a3228;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --transition:   0.3s ease;
  --radius:       4px;
  --shadow:       0 8px 32px rgba(18,25,46,0.12);
  --shadow-gold:  0 8px 24px rgba(201,168,76,0.30);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; background: var(--bg); }
.section-alt { background: var(--bg-2) !important; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(18,25,46,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ---- DIVIDER ---- */
.gold-line {
  width: 60px; height: 4px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.gold-line-left { margin-left: 0; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 9px 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
}
.topbar a { color: var(--gold); font-weight: 600; }
.topbar a:hover { color: var(--gold-light); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), top var(--transition);
}

.navbar.scrolled {
  top: 0;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(18,25,46,0.10);
  backdrop-filter: blur(12px);
}

.navbar.scrolled .nav-inner { padding: 14px 24px; }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--transition);
  background: var(--bg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.1;
}
.nav-logo .logo-text span { color: var(--navy); display: block; }
.nav-logo .logo-text em {
  font-style: normal;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}
.mobile-menu a:hover { color: var(--gold-dark); }
.mobile-menu .btn { font-size: 0.85rem; }

/* ============================================
   HERO SPLIT — van left / content right
   ============================================ */

/* Wrapper: side-by-side, full viewport height */
.hero-split {
  display: grid;
  grid-template-columns: 70% 30%;
  min-height: 100vh;
  padding-top: 72px;          /* offset for topbar */
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

/* ── LEFT: van image ── */
.hero-split__img {
  position: relative;
  overflow: hidden;
}

.hero-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  display: block;
  transition: transform 10s ease;
}
.hero-split__img:hover img { transform: scale(1.04); }

/* gold bar at the very top of the image */
.hero-split__gold-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gold);
  z-index: 2;
}

/* soft fade from image into navy on the right edge */
.hero-split__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 60%,
    rgba(12,18,32,0.55) 85%,
    var(--navy) 100%
  );
  pointer-events: none;
}

/* ── RIGHT: content panel ── */
.hero-split__content {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* subtle radial gold glow top-right */
  background-image: radial-gradient(ellipse at 90% 10%, rgba(201,168,76,0.08) 0%, transparent 55%);
}

.hero-split__inner {
  padding: 80px 60px 60px 48px;
  max-width: 560px;
}

/* badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.14);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 24px;
  font-size: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-badge::before { content: '★'; }

/* main headline */
.hero-split__title {
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.hero-split__title .highlight { color: var(--gold); }

/* sub-copy */
.hero-split__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 440px;
}

/* quick-services list */
.hero-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 36px;
  list-style: none;
}
.hero-services-list li {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-services-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* CTA buttons */
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }

/* stats row at the bottom of right panel */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats > div {
  flex: 1;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-left: 20px;
}
.hero-stats > div:first-child { padding-left: 0; }
.hero-stats > div:last-child  { border-right: none; }

.hero-stats .stat-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stats .stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* scroll indicator — sits at the bottom of the right panel */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  right: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 600;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0%   { top: 5px;  opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 65% 35%; }
  .hero-split__inner { padding: 72px 32px 60px 32px; }
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh auto;
    padding-top: 72px;
  }
  .hero-split__img { min-height: 50vh; }
  .hero-split__img::after {
    /* on mobile fade bottom edge instead of right */
    background: linear-gradient(to bottom, transparent 50%, var(--navy) 100%);
  }
  .hero-split__content { background: var(--navy); }
  .hero-split__inner { padding: 40px 24px 32px; max-width: none; }
  .hero-split__title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-services-list { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stats > div { border-right: none; padding: 0; flex: 0 0 40%; }
  .hero-scroll-indicator { display: none; }
  .hero-actions { flex-direction: column; }
}

/* ============================================
   SERVICES STRIP
   ============================================ */
.services-strip { background: var(--bg); padding: 0; }

.services-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--bg-4);
}

.strip-item {
  padding: 32px 20px;
  border-right: 1px solid var(--bg-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: background var(--transition);
  cursor: default;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--bg-2); }

.strip-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background var(--transition);
}
.strip-item:hover .strip-icon { background: rgba(201,168,76,0.22); }

.strip-item h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content .section-subtitle { max-width: none; }
.why-content .section-title { margin-bottom: 20px; }
.why-list { margin: 36px 0; display: flex; flex-direction: column; gap: 24px; }

.why-item { display: flex; gap: 20px; align-items: flex-start; }

.why-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.why-item p  { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

.why-image { position: relative; }
.why-image-main {
  width: 100%; height: 520px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--bg-3);
}
.why-image-main img { width: 100%; height: 100%; object-fit: cover; }
.why-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.why-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 24px 28px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.why-badge .num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.why-badge .lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

/* ============================================
   SERVICES GRID (homepage)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bg-4);
  border: 1px solid var(--bg-4);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  background: var(--bg);
  padding: 48px 40px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--bg-2); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 14px; font-weight: 800; color: var(--navy); }
.service-card p  { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; }
.service-card ul li {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 40px;
  border: 1px solid var(--bg-4);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201,168,76,0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-3);
  cursor: pointer;
}
.gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 2; }
.gallery-item:nth-child(9) { grid-column: span 2; aspect-ratio: 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-4));
  font-size: 2rem;
}
.gallery-placeholder span {
  font-size: 0.7rem;
  color: var(--muted);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,25,46,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay-content h4 { font-size: 0.9rem; font-weight: 700; color: #fff; }
.gallery-overlay-content span { font-size: 0.75rem; color: var(--gold-light); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--bg-4);
  padding: 36px;
  border-radius: 8px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: rgba(201,168,76,0.12);
  line-height: 1;
}
.stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 3px; font-size: 0.9rem; }
.testimonial-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.author-loc  { font-size: 0.78rem; color: var(--muted); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 560px;
  background: var(--bg-3);
  border-radius: 8px;
  overflow: hidden;
}
.about-img-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 180px; height: 180px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.about-img-accent .big-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.about-img-accent p { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bg-4);
  border: 1px solid var(--bg-4);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 24px;
}
.value-card { background: var(--bg); padding: 40px 32px; text-align: center; transition: background var(--transition); }
.value-card:hover { background: var(--bg-2); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }
.value-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { color: var(--muted); line-height: 1.8; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-detail-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-item h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-detail-item p  { font-size: 0.95rem; color: var(--navy); margin: 0; }
.contact-detail-item a  { color: var(--gold-dark); }
.contact-detail-item a:hover { text-decoration: underline; }

.service-areas {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--bg-4);
}
.service-areas h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.areas-list { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag {
  background: var(--bg-2);
  border: 1px solid var(--bg-4);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.78rem;
  color: var(--text);
}

/* ---- FORM ---- */
.quote-form {
  background: var(--bg);
  border: 1px solid var(--bg-4);
  padding: 48px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.form-title { font-size: 1.5rem; margin-bottom: 8px; color: var(--navy); }
.form-subtitle { font-size: 0.9rem; color: var(--muted); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--bg-4);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: var(--bg);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-light); }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 14px; }
.form-note span { color: var(--gold-dark); }

/* ============================================
   PAGE HERO — split layout (inner pages)
   ============================================ */
.page-hero-split {
  display: grid;
  grid-template-columns: 70% 30%;
  min-height: 420px;
  padding-top: 72px; /* clear fixed navbar */
  background: var(--navy);
  overflow: hidden;
}

/* Left: van photo */
.page-hero-split__img {
  position: relative;
  overflow: hidden;
}
.page-hero-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
/* gold top accent bar */
.page-hero-split__gold-bar {
  position: absolute;
  top: 72px; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}
/* right-edge fade so image blends into navy panel */
.page-hero-split__img::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 100%;
  background: linear-gradient(to right, transparent, var(--navy));
  pointer-events: none;
}

/* Right: page title / breadcrumb */
.page-hero-split__content {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 48px 40px 48px 24px;
}
.page-hero-split__inner { width: 100%; }
.page-hero-split h1 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 14px;
  color: #fff;
}
.page-hero-split p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* breadcrumb on dark hero */
.breadcrumb-dark {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.breadcrumb-dark a { color: var(--gold-light); }
.breadcrumb-dark a:hover { color: var(--gold); }

/* section-label variant on dark */
.section-label-dark {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .page-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-hero-split__img {
    height: 220px;
  }
  .page-hero-split__img::after { display: none; }
  .page-hero-split__content {
    padding: 36px 24px;
  }
}

/* Legacy .page-hero kept for fallback (unused) */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%), var(--bg-2);
  border-bottom: 1px solid var(--bg-4);
  position: relative;
  overflow: hidden;
}
.page-hero-content { max-width: 640px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 16px; color: var(--navy); }
.page-hero p  { font-size: 1.05rem; color: var(--muted); line-height: 1.8; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--gold-dark); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; color: #fff; }
.cta-banner p  { font-size: 1.05rem; color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--gold);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--footer-text);
  line-height: 1.8;
  margin: 20px 0 28px;
  max-width: 300px;
}
.footer-brand .logo-text span { color: var(--gold) !important; }
.footer-brand .logo-text em   { color: rgba(255,255,255,0.45) !important; }

.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--footer-text);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.footer-col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--footer-text);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--footer-text);
}
.footer-contact-item .fi { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--gold-light); }
.footer-contact-item a:hover { text-decoration: underline; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.78rem;
  color: var(--footer-text);
}
.footer-bottom a { color: var(--footer-text); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================
   UTILITY
   ============================================ */
.text-gold { color: var(--gold-dark) !important; }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }

.badge {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
}

.alert { padding: 14px 20px; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 20px; display: none; }
.alert-success { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.3); color: #15803d; }
.alert-error   { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.3); color: #b91c1c; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .why-grid, .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .why-image { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(5), .gallery-item:nth-child(9) { grid-column: span 1; aspect-ratio: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}

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