/* ============================================
   SENDA FENDER AUSTRALIA — MAIN STYLESHEET
   Aesthetic: Coastal Editorial / Clean Maritime
   ============================================ */

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

:root {
  --cyan: #00A7BD;
  --cyan-light: #33C4D6;
  --cyan-pale: #E6F8FB;
  --cyan-glow: rgba(0, 167, 189, 0.15);
  --cyan-deep: #008999;
  --dark: #0C1B2A;
  --navy: #142838;
  --charcoal: #2B3A4A;
  --slate: #576775;
  --grey: #8A97A4;
  --grey-light: #B4BEC8;
  --border: #DAE1E8;
  --border-light: #EDF1F5;
  --sand: #F6F4F0;
  --sand-light: #FAF9F7;
  --white: #FFFFFF;
  --white-warm: #FEFEFE;
  --error: #D94848;
  --success: #2D9E6B;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --max-w: 1240px;
  --section-py: clamp(72px, 10vw, 128px);
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(12, 27, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(12, 27, 42, 0.06);
  --shadow-lg: 0 12px 40px rgba(12, 27, 42, 0.08);
  --shadow-xl: 0 24px 64px rgba(12, 27, 42, 0.1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--cyan-deep); }
button { cursor: pointer; font-family: inherit; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* --- SUBTLE TEXTURE --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes water-flow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulse-soft {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes slide-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border-light), var(--shadow-sm);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light), var(--shadow-md);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.4s;
}
.nav.scrolled .nav-inner { height: 64px; }

.nav-logo img {
  height: 44px;
  width: auto;
  transition: height 0.4s;
}
.nav.scrolled .nav-logo img { height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--cyan) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
  border-radius: var(--radius) !important;
  letter-spacing: 0.04em !important;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--cyan-deep) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--cyan-glow) !important;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.nav-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,27,42,0.55) 0%, rgba(12,27,42,0.25) 40%, rgba(12,27,42,0.7) 100%),
    linear-gradient(90deg, rgba(12,27,42,0.7) 0%, transparent 65%);
}

.hero-water {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  z-index: 1;
  opacity: 0.2;
}
.hero-water svg {
  width: 100%;
  height: 100%;
  animation: water-flow 10s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-logo {
  height: clamp(60px, 10vw, 90px);
  width: auto;
  margin-bottom: 28px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
  border-radius: 6px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--cyan-light);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 680px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--radius);
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary {
  background: var(--cyan);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--cyan-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--cyan-glow);
}
.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: translateY(-2px);
}
/* Light-bg variants */
.btn-primary-on-light {
  background: var(--cyan);
  color: var(--white);
}
.btn-primary-on-light:hover {
  background: var(--cyan-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--cyan-glow);
}
.btn-outline-on-light {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}
.btn-outline-on-light:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  animation: fadeIn 1s 1.5s both;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--cyan-light), transparent);
  animation: pulse-soft 2.5s infinite;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.75;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image:hover img { transform: scale(1.03); }

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
}
.about-badge-icon {
  width: 46px;
  height: 46px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.about-badge-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--dark);
}
.about-badge-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.73rem;
  color: var(--grey);
  text-transform: none;
  letter-spacing: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.stat {
  padding: 20px 16px;
  background: var(--sand-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.stat:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--cyan);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* ============================================
   SERVICES (Dark Section)
   ============================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(0, 167, 189, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 167, 189, 0.04) 0%, transparent 45%);
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.services-header .section-label { justify-content: center; color: var(--cyan-light); }
.services-header .section-label::before { display: none; }
.services-header .section-title { color: var(--white); }
.services-header .section-desc { margin: 0 auto; color: var(--grey-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  backdrop-filter: blur(8px);
}
.service-card:hover {
  border-color: var(--cyan);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 167, 189, 0.1);
  border: 1px solid rgba(0, 167, 189, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-light);
  flex-shrink: 0;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  padding: var(--section-py) 0;
  background: var(--white);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 48px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.feature:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow), var(--shadow-md);
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--cyan-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.feature p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.65;
}

.product-image-stack {
  position: relative;
  height: 520px;
}
.product-image-stack img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-image-stack img:nth-child(1) {
  width: 65%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: 2;
}
.product-image-stack img:nth-child(2) {
  width: 55%;
  height: 60%;
  bottom: 0;
  right: 0;
  z-index: 1;
  border: 4px solid var(--white);
}
.product-image-stack:hover img:nth-child(1) { transform: translate(-6px, -6px); }
.product-image-stack:hover img:nth-child(2) { transform: translate(6px, 6px); }

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--section-py) 0;
  background: var(--sand-light);
  position: relative;
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-label::before { display: none; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,27,42,0.5));
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

/* ============================================
   VIDEO (Dark CTA Section)
   ============================================ */
.video-section {
  padding: var(--section-py) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 167, 189, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 167, 189, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.video-section .section-label { color: var(--cyan-light); }
.video-section .section-label::before { background: var(--cyan-light); }
.video-section .section-title { color: var(--white); }
.video-section .section-desc { color: var(--grey-light); }

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 48px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 16/9;
  background: var(--navy);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-header {
  text-align: center;
  position: relative;
  z-index: 1;
}
.video-header .section-label { justify-content: center; }
.video-header .section-label::before { display: none; }
.video-header .section-desc { margin: 0 auto; }

.video-cta {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.video-cta p {
  color: var(--grey);
  font-size: 1rem;
  margin-bottom: 20px;
}
.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: var(--cyan);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--cyan-glow);
}

/* ============================================
   SERVICE AREA — ROUTE MAP (HORIZONTAL)
   ============================================ */
.service-area {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--sand-light);
  overflow: hidden;
  position: relative;
}
.service-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(0, 167, 189, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 167, 189, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.service-area .container { position: relative; z-index: 1; }
.service-area-header { text-align: center; margin-bottom: 40px; }
.service-area .section-label { color: var(--cyan); justify-content: center; }
.service-area .section-label::before { display: none; }
.service-area .section-title { color: var(--dark); }
.service-area .section-desc { color: var(--slate); max-width: 560px; margin-left: auto; margin-right: auto; }

/* Distance pill */
.route-distance {
  text-align: center;
  margin-bottom: 32px;
}
.route-distance-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  background: rgba(0, 167, 189, 0.1);
  border: 1px solid rgba(0, 167, 189, 0.2);
  border-radius: 100px;
  padding: 6px 20px;
}

/* Route line — HORIZONTAL on desktop */
.route-line {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0;
  margin: 0 auto;
}
.route-line::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 2px;
  width: 100%;
  background: linear-gradient(
    to right,
    var(--cyan) 0%,
    rgba(0, 167, 189, 0.3) 50%,
    var(--cyan) 100%
  );
}

/* Route stops — horizontal */
.route-stop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 4px;
  min-width: 0;
}
.route-stop:nth-child(odd),
.route-stop:nth-child(even) {
  flex-direction: column;
  padding-left: 4px;
  padding-right: 4px;
  justify-content: flex-start;
}

/* Dots — horizontal positioning */
.route-dot {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cyan);
  z-index: 2;
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}
.route-stop:hover .route-dot {
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(0, 167, 189, 0.4);
}
.route-dot-home {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  margin-top: -11px;
  background: var(--cyan);
  border: 3px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 167, 189, 0.3);
  animation: pulse-soft 3s ease-in-out infinite;
}
.route-stop:hover .route-dot-home {
  transform: scale(1.15);
}

/* Info — below dots */
.route-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 12px;
  text-align: center;
}
.route-stop:nth-child(odd) .route-info,
.route-stop:nth-child(even) .route-info {
  text-align: center;
}
.route-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.route-sub {
  font-size: 0.72rem;
  color: var(--slate);
  font-weight: 500;
}
.route-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--cyan);
  padding: 2px 8px;
  border-radius: 100px;
  width: fit-content;
}
.route-stop:nth-child(odd) .route-badge {
  align-self: center;
}
.route-suburbs {
  font-size: 0.72rem;
  color: var(--slate);
  line-height: 1.45;
  margin-top: 4px;
  max-width: 160px;
}
.route-stop:nth-child(odd) .route-suburbs {
  margin-left: auto;
  margin-right: auto;
}

/* Stats — compact */
.route-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.route-stat { text-align: center; }
.route-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.route-stat-label {
  font-size: 0.75rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* CTA */
.route-cta {
  text-align: center;
  margin-top: 32px;
}
.route-cta p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--white);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info .section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-method-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--cyan-pale);
  border: 1px solid rgba(0, 167, 189, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-method-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey);
  margin-bottom: 2px;
}
.contact-method-text span,
.contact-method-text a {
  font-size: 1.05rem;
  color: var(--dark);
}
.contact-method-text a:hover { color: var(--cyan); }

.contact-social {
  margin-top: 32px;
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 1.1rem;
  transition: all 0.3s;
}
.social-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--cyan-glow);
}

.contact-form {
  background: var(--sand-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-group label .required { color: var(--cyan); }

.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
  background: var(--white);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--grey-light); }

/* Custom Select Dropdown */
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--grey-light);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.custom-select-trigger.has-value {
  color: var(--dark);
}
.custom-select-trigger svg {
  flex-shrink: 0;
  color: var(--grey);
  transition: transform 0.25s ease;
}
.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
}
.custom-select.open .custom-select-trigger,
.custom-select-trigger:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}
.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 6px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 50;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select-options li {
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--grey-light);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.custom-select-options li:hover {
  background: var(--cyan);
  color: var(--white);
}

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

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

.form-submit { width: 100%; margin-top: 8px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0 28px;
  background: #081320;
  color: var(--grey-light);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer-logo img {
  height: 34px;
  width: auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.footer-logo:hover img { opacity: 1; }

.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-nav a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--cyan-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a,
.footer-legal button {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  transition: color 0.3s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.footer-legal a:hover,
.footer-legal button:hover { color: var(--cyan-light); }

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 27, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-xl);
}
.modal-overlay.active .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--sand-light);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--grey);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.modal-close:hover {
  border-color: var(--cyan);
  color: var(--dark);
  background: var(--cyan-pale);
}

.modal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.modal .modal-updated {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 32px;
}
.modal h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cyan-deep);
  margin: 28px 0 12px;
}
.modal p, .modal li {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.8;
}
.modal ul { padding-left: 20px; margin: 8px 0; }
.modal li { margin-bottom: 4px; }

.modal::-webkit-scrollbar { width: 6px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.modal::-webkit-scrollbar-thumb:hover { background: var(--grey-light); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 27, 42, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: zoom-out;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.lightbox-overlay.active img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr; }
  .product-image-stack { height: 400px; order: -1; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 220px);
  }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { color: var(--charcoal) !important; }
  .nav-mobile-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image img { height: 340px; }
  .about-badge { bottom: -10px; right: 12px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }

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

  /* Route map — vertical timeline on mobile */
  .route-map { padding: 0 8px; }
  .route-distance { margin-bottom: 24px; }
  .route-line {
    flex-direction: column;
    align-items: stretch;
    padding-left: 40px;
    gap: 0;
    position: relative;
  }
  .route-line::before {
    left: 15px;
    right: auto;
    top: 7px;
    bottom: 7px;
    height: auto;
    width: 2px;
    background: linear-gradient(to bottom, var(--cyan), rgba(0, 167, 189, 0.25) 50%, var(--cyan));
  }
  .route-stop,
  .route-stop:nth-child(odd),
  .route-stop:nth-child(even) {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 0 20px 0;
  }
  .route-stop:last-child { padding-bottom: 0; }
  .route-dot {
    position: absolute;
    left: -32px;
    top: 2px;
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
  }
  .route-dot-home {
    left: -43px;
    top: -6px;
    margin-top: 0;
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }
  .route-info,
  .route-stop:nth-child(odd) .route-info,
  .route-stop:nth-child(even) .route-info {
    text-align: left;
    align-items: flex-start;
    margin-top: 0;
    gap: 3px;
  }
  .route-stop:nth-child(odd) .route-badge { align-self: flex-start; }
  .route-stop:nth-child(odd) .route-suburbs { margin-left: 0; margin-right: 0; }
  .route-name { font-size: 0.95rem; }
  .route-suburbs { max-width: none; font-size: 0.72rem; color: var(--slate); line-height: 1.5; }
  .route-stats {
    gap: 32px;
    margin-top: 28px;
    padding-top: 24px;
  }
  .route-stat-num { font-size: 1.5rem; }
  .route-cta { margin-top: 24px; }
  .route-cta p { font-size: 0.88rem; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 180px);
  }

  .product-image-stack { height: 300px; }

  .footer-top { flex-direction: column; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .modal { padding: 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-stats { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .contact-form { padding: 24px; }
  .route-stat-num { font-size: 1.3rem; }
  .route-stats { gap: 20px; }
  .route-name { font-size: 0.9rem; }
  .route-suburbs { font-size: 0.68rem; }
  .route-line { padding-left: 36px; }
  .route-dot { left: -28px; }
  .route-dot-home { left: -39px; }
}

/* --- QUOTE POPUP --- */
.quote-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(12, 27, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.quote-popup-overlay.active { opacity: 1; visibility: visible; }
.quote-popup {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  position: relative;
}
.quote-popup-overlay.active .quote-popup {
  transform: translateY(0) scale(1);
}
.quote-popup-close {
  position: absolute; top: 12px; right: 14px;
  background: rgba(12, 27, 42, 0.6);
  border: none; color: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 20px; line-height: 1;
  cursor: pointer; z-index: 2;
  transition: background 0.2s;
}
.quote-popup-close:hover { background: rgba(12, 27, 42, 0.85); }
.quote-popup-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.quote-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-popup-content {
  padding: 28px 32px 32px;
  text-align: center;
}
.quote-popup-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.quote-popup-content p {
  font-family: var(--font-body);
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.quote-popup-content .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}
.quote-popup-dismiss {
  background: none;
  border: none;
  color: var(--grey);
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.quote-popup-dismiss:hover { color: var(--slate); }
@media (max-width: 480px) {
  .quote-popup-image { height: 150px; }
  .quote-popup-content { padding: 20px 20px 24px; }
  .quote-popup-content h3 { font-size: 1.3rem; }
}

/* --- SUBURB CHECK POPUP --- */
.suburb-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(12, 27, 42, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.suburb-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.suburb-popup {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px 32px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}
.suburb-popup-overlay.active .suburb-popup {
  transform: translateY(0) scale(1);
}
.suburb-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--grey);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.suburb-popup-close:hover { color: var(--dark); }
.suburb-popup-icon {
  margin-bottom: 12px;
}
.suburb-popup h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}
.suburb-popup p {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 20px;
}
.suburb-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 2px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 12px;
  box-sizing: border-box;
}
.suburb-input:focus {
  border-color: var(--cyan);
}
.suburb-submit {
  width: 100%;
  justify-content: center;
}
