/* =============================================
   Direct Assist Support — style.css
   Brand Colors from logo:
     Blue:   #1B4DB8
     Orange: #F7941D
     Green:  #2A8A2A
   Fonts: Cormorant Garamond (headings) + Plus Jakarta Sans (body)
   ============================================= */

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

:root {
  /* Brand palette */
  --blue-900:  #0D2A70;
  --blue-800:  #1B3F9A;
  --blue-700:  #1B4DB8;
  --blue-500:  #3B6DD4;
  --blue-100:  #E6EEFB;
  --blue-50:   #F0F5FE;

  --orange-700: #C97A10;
  --orange-500: #F7941D;
  --orange-300: #FAB96A;
  --orange-100: #FEF0DC;

  --green-800:  #1A6020;
  --green-600:  #2A8A2A;
  --green-400:  #4CAF50;
  --green-100:  #E6F5E6;

  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;
  --white:    #ffffff;

  --primary: var(--blue-700);
  --text: var(--gray-900);
  --light: var(--gray-500);
  --light-text: var(--gray-500);

  --radius:    14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.11);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
  --trans:     0.25s ease;
      --surface: #13131a;
    --border: rgba(255,255,255,0.07);
    --accent: #6c63ff;
    --accent-glow: rgba(108, 99, 255, 0.35);
    --text-primary: #f0f0f5;
    --text-muted: #8888aa;
    --dropdown-bg: #16161f;
    --dropdown-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
    --nav-height: 93px;

}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ---- Utility ---- */
.container { max-width: 1330px; margin: 0 auto; padding: 0 1rem; }

/* ============================================================
   INFO BAR
   ============================================================ */
.info-bar {
  background: var(--blue-800);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
  letter-spacing: 0.01em;
}
.info-bar a { color: var(--orange-300); font-weight: 500; transition: color var(--trans); }
.info-bar a:hover { color: white; }
.info-sep { opacity: 0.3; }
.info-bar > span {
	display: flex;
	align-items: center;
	gap: 10px;
}
/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow var(--trans);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(27,77,184,0.10); }
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo .logo-img {
  height: 88px;
  width: auto;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--trans);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--blue-700); }
.nav-cta {
  background: var(--orange-500) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em !important;
  transition: all var(--trans) !important;
  box-shadow: 0 4px 14px rgba(247,148,29,0.3) !important;
}
.nav-cta:hover {
  background: var(--orange-700) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(247,148,29,0.38) !important;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: var(--trans); }
.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); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;

  /* HD background image — caregiver with elderly in car */
  background-image: url('../img/Gemini_Generated_Image_jim8mjim8mjim8mj.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,29,88,0.90) 0%,
    rgba(27,77,184,0.75) 50%,
    rgba(42,138,42,0.55) 100%
  );
  z-index: 1;
  opacity: 0.6;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(247,148,29,0.18);
  border: 1px solid rgba(247,148,29,0.45);
  color: var(--orange-300);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  animation: fadeDown 0.6s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6.5vw, 64px);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeDown 0.7s 0.1s ease both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--orange-300);
}
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
  animation: fadeDown 0.7s 0.2s ease both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 0.7s 0.3s ease both;
}
.btn-orange {
  background: var(--orange-500);
  color: white;
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(247,148,29,0.38);
  transition: all var(--trans);
  display: inline-block;
}
.btn-orange:hover {
  background: var(--orange-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(247,148,29,0.45);
}
.btn-ghost-white {
  border: 2px solid rgba(255,255,255,0.55);
  color: white;
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  transition: all var(--trans);
  display: inline-block;
  backdrop-filter: blur(4px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}
.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  animation: fadeDown 0.7s 0.4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  font-weight: 400;
}
.trust-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

/* Stats bar */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  background: white;
  border-top: 3px solid var(--orange-500);
  margin-top: auto;
    background: #f2f2f2;

}
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  gap: 0;
}
.stat-item { text-align: center; padding: 0 2.5rem; }
.stat-num {
  font-size: 47px;
  font-weight: 700;
  color: var(--blue-700);
}
.stat-label { font-size: 12px; color: var(--gray-500); margin-top: 2px; font-weight: 400; }
.stat-divider { width: 1px; height: 44px; background: var(--gray-300); flex-shrink: 0; }

 .about-section {
    padding: 80px 20px;
  }

  .about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .about-content {
    flex: 1;
  }

  .about-content h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .about-content p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .about-content strong {
    color: var(--text);
  }

  .about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
  }

  .about-btn:hover {
    background: #3a8ca8;
  }

  .about-image {
    flex: 1;
  }

  .about-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .about-container {
      flex-direction: column;
      gap: 40px;
    }

    .about-content h2 {
      font-size: 32px;
    }
  }

  @media (max-width: 576px) {
    .about-content h2 {
      font-size: 26px;
    }
  }

  /* SUPPORT SECTION */
.support-section {
  padding: 5.5rem 0;
  background: var(--gray-100);
}

.support-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.support-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.36s ease, box-shadow 0.36s ease, border-color 0.36s ease;
  display: flex;
  flex-direction: column;
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27,77,184,0.08);
}

.support-card h3 {
  font-size: 18px;
  color: var(--blue-700);
  margin-bottom: 0.6rem;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.support-card p {
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 15px;
}

.support-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(27,77,184,0.08), rgba(42,138,42,0.06));
  display: inline-grid;
  place-items: center;
  color: var(--blue-700);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .support-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .support-card { padding: 1.1rem; }
  .support-card h3 { font-size: 16px; }
}

  /* SECTION */
.services{
  padding:80px 20px;
}

.services-container{
  max-width:1200px;
  margin:auto;
}

.services-title{
  text-align:center;
  margin-bottom:50px;
}

.services-title h2{
  font-size:36px;
  color:var(--text);
  margin-bottom:10px;
}

.services-title p{
  color:var(--light);
}

/* GRID */
.services-grid{
  display:flex;
  flex-wrap:wrap;
  gap:25px;
}

/* CARD */
.service-card{
  width:calc(33.33% - 17px);
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.4s ease;
  display:flex;
  flex-direction:column;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* IMAGE */
.service-img{
  height:200px;
  overflow:hidden;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s;
}

.service-card:hover img{
  transform:scale(1.08);
}

/* CONTENT */
.service-content{
  padding:20px;
}

.service-content h3{
  font-size:18px;
  margin-bottom:10px;
  color:var(--text);
}

.service-content p{
  font-size:14px;
  color:var(--light);
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:992px){
  .service-card{
    width:calc(50% - 13px);
  }
}

@media(max-width:576px){
  .service-card{
    width:100%;
  }

  .services-title h2{
    font-size:28px;
  }
}
/* ============================================================
   SECTION STYLES (shared)
   ============================================================ */
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-500);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  background: var(--orange-100);
  padding: 4px 12px;
  border-radius: 30px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 30px;
}
.light-tag  { color: var(--orange-300); background: rgba(247,148,29,0.15); border: 1px solid rgba(247,148,29,0.3); }
.light-title { color: white; }
.light-sub   { color: rgba(255,255,255,0.7); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 5.5rem 0; background: var(--gray-100); }

.services-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 2rem;
}
.service-card {
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 0;
  transition: all var(--trans);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--trans);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { background: var(--orange-500); }

.service-icon-wrap {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.service-icon-wrap.blue   { background: var(--blue-700); }
.service-icon-wrap.orange { background: var(--orange-500); }
.service-icon-wrap.green  { background: var(--green-600); }

.service-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 0.5rem; color: var(--gray-900); }
.service-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 1rem; }
.card-link { font-size: 13px; color: var(--blue-700); font-weight: 600; letter-spacing: 0.02em; transition: color var(--trans); }
.service-card:hover .card-link { color: var(--orange-500); }

/* NDIS bar */
.ndis-bar {
  background: white;
  border: 1px solid var(--gray-300);
  border-left: 4px solid var(--blue-700);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.ndis-left { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.ndis-badge {
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.ndis-badge.aged {
  background: var(--green-100);
  color: var(--green-800);
}
.ndis-bar p { font-size: 14px; color: var(--gray-500); flex: 1; min-width: 200px; }
.btn-blue-sm {
  background: var(--blue-700);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--trans);
  display: inline-block;
}
.btn-blue-sm:hover { background: var(--blue-800); transform: translateY(-1px); }

.ndsp-page-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ndsp-banner-overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: center;
}

.ndsp-page-banner h1 {
    color: #fff;
    font-size: 42px;
    margin: 0;
}
.ndsp-container{
  max-width: 1260px;
  margin: 0 auto;

}
.ndsp-content{
  padding: 40px 0;
}
/* ============================================================
   WHY US
   ============================================================ */
.why-section { padding: 5.5rem 0; background: white; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Image side */
.why-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.why-img-wrap img {
  width: 100%;
  /*! height: 480px; */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.why-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-300);
  z-index: 2;
}
.badge-icon { font-size: 22px; }
.badge-val { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--blue-700); }
.badge-label { font-size: 12px; color: var(--gray-500); }
.why-img-badge2 {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--orange-500);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  box-shadow: 0 8px 24px rgba(247,148,29,0.35);
  z-index: 2;
}
.badge2-num {  font-size: 22px; font-weight: 700; color: white; }
.badge2-label { font-size: 12px; color: rgba(255,255,255,0.85); }

/* Features list */
.why-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.why-feat { display: flex; gap: 14px; align-items: flex-start; }
.feat-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-icon.blue-i   { background: var(--blue-100);   color: var(--blue-700); }
.feat-icon.orange-i { background: var(--orange-100); color: var(--orange-700); }
.feat-icon.green-i  { background: var(--green-100);  color: var(--green-800); }
.feat-title { font-size: 15px; font-weight: 600; margin-bottom: 2px; color: var(--gray-900); }
.feat-desc  { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-section {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
}
.steps-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1588776814546-1ffebb5e0f46?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.steps-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,29,88,0.95) 0%, rgba(27,77,184,0.90) 60%, rgba(42,138,42,0.85) 100%);
}
.steps-section .section-header { max-width: 1140px; margin: 0 auto 3rem; padding: 0 2rem; }

.steps-grid {
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
  flex: 1;
  min-width: 155px;
  max-width: 195px;
  transition: background var(--trans);
  backdrop-filter: blur(4px);
}
.step-card:hover { background: rgba(255,255,255,0.13); }
.step-num {
  font-size: 38px;
  font-weight: 700;
  color: var(--orange-300);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.step-icon { font-size: 28px; margin-bottom: 0.75rem; }
.step-card h3 { font-size: 14px; font-weight: 600; color: white; margin-bottom: 0.4rem; }
.step-card p  { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.step-arrow {
  font-size: 22px;
  color: var(--orange-300);
  padding: 2.5rem 0.5rem 0;
  align-self: flex-start;
  opacity: 0.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 5.5rem 0; background: var(--gray-100); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.review-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-700);
  transition: background var(--trans);
}
.review-card.featured::after { background: var(--orange-500); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 0.7;
  color: var(--blue-100);
  font-weight: 700;
  margin-bottom: 1rem;
}
.orange-q { color: var(--orange-100); }
.green-q  { color: var(--green-100); }
.review-text { font-size: 14px; color: var(--gray-700); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; font-weight: 300; }
.stars { color: var(--orange-500); font-size: 14px; letter-spacing: 2px; margin-bottom: 1rem; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.blue-av   { background: var(--blue-100);   color: var(--blue-700); }
.orange-av { background: var(--orange-100); color: var(--orange-700); }
.green-av  { background: var(--green-100);  color: var(--green-800); }
.reviewer-name { font-size: 14px; font-weight: 600; }
.reviewer-role { font-size: 12px; color: var(--gray-500); }

/* ============================================================
   BOOKING
   ============================================================ */
.booking-section {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
}
.booking-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1532619675605-1ede6c2ed2b0?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.booking-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,29,88,0.94) 0%, rgba(27,77,184,0.88) 100%);
}
.booking-inner {
  position: relative;
  z-index: 2;
  /*! display: grid; */
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.booking-header { padding-top: 1rem; text-align: center;}
.booking-header .section-sub { color: rgba(255,255,255,0.7);  }
.booking-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; color: var(--gray-700); font-weight: 600; letter-spacing: 0.01em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 15px;
  background: var(--gray-100);
  color: var(--gray-900);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
  font-family: 'Plus Jakarta Sans', sans-serif;
  
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-700);
  background: white;
  box-shadow: 0 0 0 3px rgba(27,77,184,0.1);
}
.form-group input.error { border-color: #E24B4A; }
.form-group textarea { resize: vertical; height: 100px;width: 100%; }
.field-err { font-size: 12px; color: #E24B4A; display: none; }
.field-err.show { display: block; }
.form-group .submit-btn {
  background: var(--orange-500);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  letter-spacing: 0.02em;
  transition: all var(--trans);
  box-shadow: 0 6px 20px rgba(247,148,29,0.32);
  cursor: pointer;
}
.submit-btn:hover {
  background: var(--orange-700);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(247,148,29,0.40);
}
.success-msg {
  display: none;
  background: var(--green-100);
  color: var(--green-800);
  border: 1px solid var(--green-400);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  font-size: 15px;
  text-align: center;
  margin-top: 1.5rem;
  animation: fadeUp 0.5s ease;
}
.success-icon { font-size: 32px; margin-bottom: 0.5rem; }
.success-msg strong { display: block; font-size: 17px; margin-bottom: 0.4rem; color: var(--green-800); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #FFF; padding: 4.5rem 0 1.5rem; color: #000; }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  /* Brighten logo on dark background */
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(255,255,255,0.15));
}
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 230px; font-weight: 300; }
.footer-social { display: flex; gap: 10px; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: all var(--trans);
}
.footer-social a:hover { background: var(--orange-500); color: white; border-color: var(--orange-500); }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: #000;
  margin-bottom: 0.55rem;
  transition: color var(--trans);
  font-weight: 300;
  display: flex;
  gap: 10px;
}
.footer-col a:hover { color: var(--orange-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 300; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color var(--trans); }
.footer-legal a:hover { color: var(--orange-300); }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.40);
  z-index: 998;
  transition: transform var(--trans), box-shadow var(--trans);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.50);
}
.ndsp-page-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ndsp-banner-overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: center;
}

.ndsp-page-banner h1 {
    color: #fff;
    font-size: 42px;
    margin: 0;
}
  /* ── NAV WRAPPER ── */
  
 
  /* ── NAV INNER (logo + hamburger row) ── */
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-height);
  }
 
  /* Logo slot */
  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
  .nav-logo span { color: var(--accent); }
 
  /* ── HAMBURGER ── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .hamburger:hover { background: rgba(255,255,255,0.1); }
  .hamburger .bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
    transform-origin: center;
  }
  /* X state */
  .hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
  /* ── DESKTOP: MENU LIST ── */
  .menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
  }
 
  /* ── TOP-LEVEL ITEMS ── */
  .menu-item { position: relative; }
 
  .menu-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    position: relative;
  }
 
  /* Chevron */
  .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    mask-size: contain; -webkit-mask-size: contain;
    mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
    mask-position: center; -webkit-mask-position: center;
    opacity: 0.6;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s;
  }
 
  .current-menu-item > a,
  .current_page_item > a {
    color:#000;
    background: rgba(255,255,255,0.05);
  }
 
  .current-menu-item > a::before,
  .current_page_item > a::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
  }
 
  .menu-item:hover > a,
  .menu-item:focus-within > a {
    color: #000;
    background: rgba(255,255,255,0.06);
  }
 
  .menu-item-has-children:hover > a::after,
  .menu-item-has-children:focus-within > a::after {
    transform: rotate(180deg);
    opacity: 1;
  }
 
  /* ── DESKTOP DROPDOWN ── */
  .sub-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px) scale(0.96);
    min-width: 220px;
    background: var(--dropdown-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--dropdown-shadow);
    list-style: none;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s cubic-bezier(0.16,1,0.3,1),
      transform 0.3s cubic-bezier(0.16,1,0.3,1),
      visibility 0.25s;
  }
 
  .sub-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0; right: 0;
    height: 14px;
  }
 
  .sub-menu::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px; height: 10px;
    background: var(--dropdown-bg);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-radius: 2px 0 0 0;
  }
 
  .menu-item-has-children:hover .sub-menu,
  .menu-item-has-children:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
  }
 
  .sub-menu .menu-item { width: 100%; }
 
  .sub-menu .menu-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s ease, background 0.15s ease, padding-left 0.2s ease;
    position: relative;
    overflow: hidden;
  }
 
  .sub-menu .menu-item a::before {
    content: '';
    position: absolute;
    left: 0; top: 20%;
    height: 60%; width: 2px;
    border-radius: 2px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    transform: scaleY(0);
    transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
    transform-origin: center;
  }
 
  .sub-menu .menu-item a:hover {
    color: var(--text-primary);
    background: rgba(108,99,255,0.08);
    padding-left: 20px;
  }
  .sub-menu .menu-item a:hover::before { transform: scaleY(1); }
 
  .menu-item-has-children:hover .sub-menu .menu-item,
  .menu-item-has-children:focus-within .sub-menu .menu-item {
    animation: itemSlideIn 0.3s cubic-bezier(0.16,1,0.3,1) both;
  }
  .sub-menu .menu-item:nth-child(1) { animation-delay: 0.04s; }
  .sub-menu .menu-item:nth-child(2) { animation-delay: 0.08s; }
  .sub-menu .menu-item:nth-child(3) { animation-delay: 0.12s; }
  .sub-menu .menu-item:nth-child(4) { animation-delay: 0.16s; }
 
  @keyframes itemSlideIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  /* ══════════════════════════════════════
     MOBILE  (≤ 768px)
  ══════════════════════════════════════ */
  @media (max-width: 768px) {
 
    .hamburger { display: flex; }
 
    /* Slide-down mobile drawer */
    .menu {
      width:100%;
      top: var(--nav-height);
      left: 0; right: 0;
      bottom: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
     
      overflow-y: auto;
      /* hidden by default */
      opacity: 0;
      visibility: hidden;
      transform: translateY(-12px);
      pointer-events: none;
      transition:
        opacity 0.3s cubic-bezier(0.16,1,0.3,1),
        transform 0.35s cubic-bezier(0.16,1,0.3,1),
        visibility 0.3s;
    }
 
    .nav-links.open .menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }
 
    /* Top-level mobile links */
    .menu > .menu-item > a {
      font-size: 17px;
      padding: 14px 12px;
      border-radius: 10px;
      color: var(--text-muted);
      border-bottom: 1px solid var(--border);
    }
 
    .menu > .menu-item:last-child > a { border-bottom: none; }
 
    .menu > .menu-item > a:hover,
    .menu > .menu-item > a:focus {
      background: rgba(255,255,255,0.05);
      color: var(--text-primary);
    }
 
    /* Current item */
    .current-menu-item > a,
    .current_page_item > a {
      color: var(--accent) !important;
      background: rgba(108,99,255,0.08) !important;
    }
    /* remove desktop underline dot on mobile */
    .current-menu-item > a::before,
    .current_page_item > a::before { display: none; }
 
    /* Mobile: chevron on right side */
    .menu-item-has-children > a {
      justify-content: space-between;
    }
    .menu-item-has-children > a::after {
      margin-left: auto;
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    }
    .menu-item-has-children.open > a::after { transform: rotate(180deg); opacity: 1; }
 
    /* Mobile sub-menu: accordion (not absolute) */
    .sub-menu {
      position: static;
      transform: none !important;
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
      box-shadow: none;
      border: none;
      border-radius: 10px;
      background: rgba(255,255,255,0.03);
      padding: 4px 8px;
      margin: 4px 0 8px 12px;
      /* accordion collapsed */
      max-height: 0;
      overflow: hidden;
      opacity: 0 !important;
      transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.25s ease, padding 0.2s;
      padding-top: 0;
      padding-bottom: 0;
    }
 
    .sub-menu::before,
    .sub-menu::after { display: none; }
 
    .menu-item-has-children.open > .sub-menu {
      max-height: 400px;
      opacity: 1 !important;
      padding-top: 4px;
      padding-bottom: 4px;
    }
 
    .sub-menu .menu-item a {
      font-size: 15px;
      padding: 11px 14px;
      color: var(--text-muted);
    }
 
    .sub-menu .menu-item a:hover { padding-left: 18px; }
 
    /* Stagger on mobile open too */
    .menu-item-has-children.open .sub-menu .menu-item {
      animation: itemSlideIn 0.3s cubic-bezier(0.16,1,0.3,1) both;
    }
  }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up   { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-left { opacity: 0; transform: translateX(-26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible, .fade-left.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.single-service form,.page-template-default form{
  background:var(--orange-700);
  padding:10px;
  border-radius:8px;
}
.single-service form label,.page-template-default form label{
  color:#fff
}

.contact-section {
  padding: 80px 20px;
  background: #0f172a;
  color: #fff;
}

.wrapper {
  margin: auto;
  display: flex;
width:100%;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.info-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.icon {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  fill: #fff;
}

.text h4 {
  margin: 0;
  font-size: 16px;
  color: #ccc;
}

.text p {
  margin: 5px 0 0;
  font-size: 18px;
  font-weight: 600;
}

/* RIGHT SIDE */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 12px;
}

.contact-form h3 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.contact-form button {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border: none;
  padding: 12px 20px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .wrapper {
    flex-direction: column;
  }
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-img-wrap img { height: 360px; }
  .why-img-badge { bottom: -16px; right: 16px; }
  .why-img-badge2 { top: -12px; left: 12px; }
  .booking-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .booking-header .section-sub { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { gap: 8px; }
  .step-arrow { display: none; }
}
@media (max-width: 640px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--gray-300);
    padding: 1.25rem 2rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .hero { min-height: auto; }
  .hero-inner { padding: 4rem 1.5rem 2.5rem; }
  .hero-stats { flex-direction: column; padding: 1rem 0; gap: 0.5rem; }
  .stat-divider { display: none; }
  .stat-item { padding: 0.5rem 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .info-bar .info-sep { display: none; }
  .booking-card { padding: 1.5rem; }
  .hero-trust { gap: 0.75rem; }
  .trust-dot { display: none; }
  .ndis-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .nav-inner{
    height: 70px;
    padding-inline:15px
  }
  .nav-logo .logo-img{
    height: 58px;
  }
  .info-bar span:last-child {
	display: none;
}
.info-bar{
  font-size: 11px;
  padding: 10px 1rem;
}
.nav-cta{
  display: none;
}
}
