:root {
      --navy:   #1a3354;
      --teal:   #1b7a6e;
      --teal-lt:#22a090;
      --gold:   #e8a020;
      --cream:  #faf7f2;
      --white:  #ffffff;
      --gray:   #6b7280;
      --light:  #f0ece4;
      --dark:   #111827;
      --radius: 12px;
      --shadow: 0 4px 32px rgba(26,51,84,.13);
    }

    /* ── RESET ──────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Lato', sans-serif;
      background: var(--cream);
      color: var(--dark);
      line-height: 1.65;
    }
    img { max-width: 100%; display: block; }
    a  { color: inherit; text-decoration: none; }

    /* ── UTILITY ─────────────────────────────────── */
    .container { width: 92%; max-width: 1080px; margin: 0 auto; }
    .section    { padding: 72px 0; }
    .btn {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Lato', sans-serif;
      font-weight: 900;
      font-size: 1.05rem;
      letter-spacing: .04em;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 4px 18px rgba(232,160,32,.45);
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,.5); }
    .btn-lg { font-size: 1.2rem; padding: 20px 48px; }

    /* ── TOP BAR ─────────────────────────────────── */
    .topbar {
      background: var(--navy);
      color: var(--white);
      text-align: center;
      padding: 10px 20px;
      font-size: .9rem;
      letter-spacing: .05em;
    }
    .topbar a {
      color: var(--gold);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: .08em;
    }

    /* ── HEADER ──────────────────────────────────── */
    header {
      background: var(--white);
      box-shadow: 0 2px 16px rgba(0,0,0,.08);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      gap: 16px;
    }
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.1;
    }
    .logo span { color: var(--teal); }
    .logo small {
      display: block;
      font-family: 'Lato', sans-serif;
      font-size: .7rem;
      font-weight: 400;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 2px;
    }
    .header-phone {
      text-align: right;
    }
    .header-phone .label {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .header-phone a {
      display: block;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--teal);
      letter-spacing: .02em;
      line-height: 1.1;
    }
    .header-phone a:hover { color: var(--navy); }

    /* ── HERO ─────────────────────────────────────── */
.hero img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #1b7a6e;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.65;
}
.hero .container {
	position: relative;
	z-index: 1;
	text-align: center;
}
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, #1b5c7a 100%);
      color: var(--white);
      padding: 90px 0 70px;
      text-align: center;
      position: relative;
      overflow: hidden;
	  height: 75vh;
	  display: flex;
	  align-items: center;
	  min-height: 700px;
    }
 
    .hero-tag {
      display: inline-block;
      background: rgba(255,255,255);
      border: 1px solid rgba(255,255,255,.25);
      color: var(--gold);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 50px;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.2;
      max-width: 800px;
      margin: 0 auto 20px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }
.hero h2 {
  margin-bottom: 15px;  
  font-size: 24px;
  font-weight: 500;
  max-width: 750px;
	display: inline-block;
}
.hero h2 span {
  color: #e69e1f;
  font-weight: 700;
  text-decoration: underline;
}
    .hero-sub {
      font-size: 1.05rem;
      opacity: .88;
      max-width: 560px;
      margin: 0 auto 32px;
    }
    .hero-phone {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--gold);
      letter-spacing: .04em;
    }
    .hero-phone span {
      font-size: .85rem;
      font-weight: 400;
      color: rgba(255,255,255);
      letter-spacing: .06em;
      display: block;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    /* ── VIDEO SECTION ───────────────────────────── */
    .video-section {
      background: var(--white);
      padding: 72px 0 56px;
      text-align: center;
    }
    .section-eyebrow {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 10px;
    }
    .video-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3.5vw, 2.5rem);
      font-weight: 800;
      color: var(--navy);
      max-width: 760px;
      margin: 0 auto 12px;
      line-height: 1.25;
    }
    .video-section h2 em {
      font-style: normal;
      color: var(--teal);
    }
    .video-section .sub {
      color: var(--gray);
      margin-bottom: 40px;
      font-size: 1.05rem;
      max-width: 560px;
      margin-left: auto; margin-right: auto;
    }
    .video-wrapper {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow), 0 0 0 6px rgba(27,122,110,.12);
      background: #0f1c2d;
       
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .video-placeholder {
      width: 100%;
      height: 100%;
      position: static;
      inset: 0;
      background: linear-gradient(160deg, #0f2540 0%, #1a3354 60%, #1b5c7a 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
		padding: 40px 40px;
    }

    .video-placeholder iframe {
		  aspect-ratio: 16/9;
		  height: auto;
		  width: 100%;
		}
    .play-btn {
      width: 82px; height: 82px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 0 12px rgba(232,160,32,.2), 0 8px 32px rgba(0,0,0,.35);
      transition: transform .2s;
      cursor: pointer;
    }
    .play-btn:hover { transform: scale(1.08); }
    .play-btn svg { margin-left: 6px; }
    .video-label {
      color: rgb(27, 77, 108);
      font-size: .85rem;
      letter-spacing: .08em;
      text-transform: uppercase;
		margin-top: 20px;
  font-weight: 600;
    }
    .video-note {
      margin-top: 20px;
      font-size: .88rem;
      color: var(--gray);
      font-style: italic;
    }

    /* ── PRICE CALLOUT ───────────────────────────── */
    .price-banner {
      background: var(--teal);
      color: var(--white);
      text-align: center;
      padding: 40px 20px;
    }
    .price-banner .price-tag {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
    }
    .price-banner .compare {
      font-size: .95rem;
      opacity: .85;
      margin-top: 8px;
    }
    .price-banner .compare s { opacity: .65; }

    /* ── BENEFITS ────────────────────────────────── */
    .benefits { background: var(--cream); }
    .benefits h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      color: var(--navy);
      margin-bottom: 48px;
      text-align: center;
    }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }
    .benefit-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      box-shadow: 0 2px 18px rgba(0,0,0,.06);
      border-left: 4px solid var(--teal);
      transition: transform .2s;
    }
    .benefit-card:hover { transform: translateY(-4px); }
    .benefit-icon {
      font-size: 2rem;
      margin-bottom: 12px;
    }
    .benefit-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .benefit-card p { font-size: .95rem; color: #555; }

    /* ── PHOTO + TEXT ────────────────────────────── */
    .features { background: var(--white); }
    .feature-row {
      display: flex;
      align-items: center;
      gap: 60px;
      margin-bottom: 72px;
    }
    .feature-row:last-child { margin-bottom: 0; }
    .feature-row.reverse { flex-direction: row-reverse; }
    .feature-img {
      flex: 0 0 45%;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .feature-img img { width: 100%; height: 340px; object-fit: cover; }
    .feature-img .img-placeholder {
      width: 100%; height: 340px;
      background: linear-gradient(135deg, #e8f0ee 0%, #d0e4e0 100%);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      color: var(--teal);
      font-size: .85rem;
      letter-spacing: .06em;
      gap: 10px;
    }
    .feature-copy { flex: 1; }
    .feature-copy h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      color: var(--navy);
      margin-bottom: 16px;
      line-height: 1.25;
    }
    .feature-copy p { color: #555; margin-bottom: 16px; }
    .feature-copy ul {
      list-style: none;
      padding: 0;
    }
    .feature-copy ul li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
      color: #444;
      font-size: .97rem;
    }
    .feature-copy ul li::before {
      content: '✓';
      background: var(--teal);
      color: white;
      font-size: .7rem;
      font-weight: 900;
      width: 20px; height: 20px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ── PROCESS ─────────────────────────────────── */
    .process { background: var(--light); }
    .process h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      color: var(--navy);
      text-align: center;
      margin-bottom: 48px;
    }
    .steps {
      display: flex;
      gap: 0;
      position: relative;
      flex-wrap: wrap;
      justify-content: center;
    }
    .step {
      flex: 1 1 160px;
      max-width: 200px;
      text-align: center;
      padding: 0 16px;
      position: relative;
    }
    .step-num {
      width: 52px; height: 52px;
      background: var(--navy);
      color: var(--gold);
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 800;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
    }
    .step h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .step p { font-size: .85rem; color: var(--gray); }
    .step::after {
      content: '→';
      position: absolute;
      right: -10px; top: 14px;
      color: var(--teal-lt);
      font-size: 1.5rem;
    }
    .step:last-child::after { display: none; }

    /* ── BOOKING ─────────────────────────────────── */
    .booking { background: var(--white); text-align: center; }
    .booking h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: var(--navy);
      margin-bottom: 12px;
    }
    .booking .sub {
      color: var(--gray);
      margin-bottom: 40px;
      max-width: 520px;
      margin-left: auto; margin-right: auto;
    }
    .calendly-placeholder {
      max-width: 820px;
      margin: 0 auto;
     
      overflow: hidden;       
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      color: var(--teal);
    }
    .calendly-placeholder svg { opacity: .5; }
    .calendly-placeholder .cal-label {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
    }
    .calendly-placeholder .cal-sub {
      font-size: .9rem;
      color: var(--gray);
    }
    .or-call {
      margin: 36px auto 0;
      font-size: 1rem;
      color: var(--gray);
    }
    .or-call a {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--navy);
      color: var(--white);
      font-weight: 900;
      font-size: 1.5rem;
      padding: 16px 36px;
      border-radius: 50px;
      margin-top: 12px;
      transition: background .2s;
      letter-spacing: .02em;
    }
    .or-call a:hover { background: var(--teal); }

    /* ── FINANCING ───────────────────────────────── */
    .financing {
      background: var(--navy);
      color: var(--white);
      text-align: center;
    }
    .financing h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 2.8vw, 2.2rem);
      margin-bottom: 14px;
    }
    .financing p {
      max-width: 600px;
      margin: 0 auto 28px;
      opacity: .85;
      font-size: 1rem;
    }

    /* ── CTA BAND ─────────────────────────────────── */
    .cta-band {
      background: var(--gold);
      text-align: center;
      padding: 52px 20px;
    }
    .cta-band h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      color: var(--navy);
      margin-bottom: 8px;
    }
    .cta-band p { color: var(--navy); opacity: .8; margin-bottom: 24px; font-size: 1rem; }
    .cta-band .phone-big {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 900;
      color: var(--navy);
      letter-spacing: .02em;
    }
    .cta-band .phone-big a { color: inherit; }
    .cta-band .phone-big a:hover { color: var(--teal); }

    /* ── FOOTER ──────────────────────────────────── */
    footer {
      background: #0d1e33;
      color: rgba(255,255,255,.65);
      padding: 44px 0 28px;
      text-align: center;
      font-size: .9rem;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 16px;
    }
    .footer-logo span { color: var(--teal-lt); }
    .footer-contact { margin-bottom: 20px; line-height: 2; }
    .footer-contact a { color: var(--gold); }
    .footer-contact a:hover { color: var(--white); }
    .footer-copy { font-size: .78rem; opacity: .5; margin-top: 20px; }
    .footer-service {
      margin: 12px auto 0;
      max-width: 460px;
      font-size: .82rem;
      opacity: .55;
    }
.page-title {
  text-align: center;
  padding: 60px 0;
}
.content-block p {
  margin-bottom: 20px;
}
.content-block ul {
  margin-bottom: 20px;
}

    /* ── RESPONSIVE ──────────────────────────────── */
    @media (max-width: 768px) {
      .header-inner { flex-direction: column; text-align: center; }
      .header-phone { text-align: center; }
      .feature-row, .feature-row.reverse { flex-direction: column; }
      .feature-img { flex: none; width: 100%; }
      .steps { flex-direction: column; align-items: center; }
      .step::after { display: none; }
    }
    
    
    
.testimonials-section {
            background: #2C5869;
            padding: 60px 0;
        }

        .testimonials-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

       .testimonials-section .section-title {
		  color: #FDB04C;
		  margin: 0 0 16px;
		  font-family: 'Playfair Display', serif;
		  font-size: clamp(1.6rem, 3vw, 2.3rem);
		  text-align: center;
		}

        .testimonials-section .section-subtitle {
            text-align: center;
            color: #E8E4D8;
            font-size: 1.05rem;
            margin: 0 0 48px;
            line-height: 1.6;
        }

        .testimonials-section .testimonials-carousel {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .testimonials-section .testimonial-item {
            padding: 24px 15px;
        }

        .testimonials-section .testimonial-card {
            position: relative;
            background: white;
            border-radius: 16px;
            padding: 28px 24px 24px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .testimonials-section .speech-bubble-arrow {
            position: absolute;
            top: -12px;
            left: 32px;
            width: 0;
            height: 0;
            border-left: 16px solid transparent;
            border-right: 16px solid transparent;
            border-bottom: 16px solid white;
        }

        .testimonials-section .quote-mark {
        color: #FDB04C;
  font-size: 82px;
  line-height: 60px;
  margin-bottom: 0;
        }

        .testimonials-section .testimonial-text {
            color: #2C5869;
            font-size: 18px;
            line-height: 1.6;
            margin: 0 0 20px;
            min-height: 80px;
        }

        .testimonials-section .testimonial-divider {
            border-top: 2px solid #F0EDE3;
            padding-top: 16px;
        }

        .testimonials-section .testimonial-name {
            color: #2C5869;
            font-weight: 600;
            font-size: 18px;
            margin: 0;
        }

        .testimonials-section .testimonial-location {
            color: #6B8893;
            font-size: 13px;
            margin: 4px 0 0;
        }

        /* Owl Carousel Custom Styling */
        .testimonials-section .owl-theme .owl-nav {
            margin-top: 0;
        }

        .testimonials-section .owl-theme .owl-nav [class*='owl-'] {
            background: white;
            color: #2C5869;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 40px;
            margin: 0;
            padding: 0;
            font-size: 24px;
            transition: all 0.3s ease;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
			display: flex;
			align-items: center;
			justify-content: center;
        }

        .testimonials-section .owl-theme .owl-nav .owl-prev {
            left: -40px;
			padding-left: 3px !important;
        }

        .testimonials-section .owl-theme .owl-nav .owl-next {
            right: -40px;
			padding-right: 3px !important;
        }
		.testimonials-section .owl-theme .owl-nav .owl-next span,
		.testimonials-section .owl-theme .owl-nav .owl-prev span {
			display: none;
		}

.testimonials-section .owl-theme .owl-nav .owl-next::after {
  content: "";
  height: 12px;
  width: 12px;
  display: block;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}

.testimonials-section .owl-theme .owl-nav .owl-prev::after {
  content: "";
  height: 12px;
  width: 12px;
  display: block;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg) scale(-1);
}
        .testimonials-section .owl-theme .owl-nav [class*='owl-']:hover {
            background: #FDB04C;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        /* Custom Dots */
        .testimonials-section .owl-theme .owl-dots {
            margin-top: 0px;
        }

        .testimonials-section .owl-theme .owl-dots .owl-dot span {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
        }

        .testimonials-section .owl-theme .owl-dots .owl-dot.active span {
            background: #FDB04C;
            width: 30px;
            border-radius: 5px;
        }

       .testimonials-section .owl-theme .owl-dots .owl-dot:hover span {
            background: rgba(253, 176, 76, 0.7);
        }
.gallery {
  background: #2C5869;
  padding: 60px 0;
	margin: 0;
}
.gallery .section-title {
  color: #FDB04C;
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  text-align: center;
}
.gallery .section-subtitle {
  text-align: center;
  color: #E8E4D8;
  font-size: 1.05rem;
  margin: 0 0 48px;
  line-height: 1.6;
}

.gallery-item img {
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}
.gallery .owl-dots {
  text-align: center;
  margin-top: 15px;
}
.gallery .owl-dots button {
  height: 12px;
  width: 12px;
  background: #e8a020;
  border-radius: 50%;
  margin: 0 2px;
  transition: all ease-in-out 0.3s;
}
.gallery .owl-dots button.active {
  width: 40px;
  border-radius: 15px;
  transition: all ease-in-out 0.3s;
}
        /* Responsive Design */
        @media (max-width: 768px) {
			.hero {
				height: 70vh;
				min-height: 600px;
			}
			.video-placeholder {
				padding: 20px;
			}
			.video-placeholder iframe {
				aspect-ratio: 16/9;
				height: auto;
			}
			.testimonials-section .testimonials-section {
                padding: 40px 0;
            }

            .testimonials-section .section-title {
                font-size: 28px;
                margin-bottom: 12px;
            }

            .testimonials-section .section-subtitle {
                font-size: 14px;
                margin-bottom: 32px;
            }

            .testimonials-section .testimonial-item {
                padding: 20px 10px;
            }

            .testimonials-section .testimonial-card {
                padding: 24px 20px 20px;
            }

            .testimonials-section .testimonial-text {
                min-height: auto;
                font-size: 14px;
            }

            .testimonials-section .owl-theme .owl-nav [class*='owl-'] {
                width: 36px;
                height: 36px;
                line-height: 36px;
                font-size: 20px;
            }
 
        }

        @media (max-width: 480px) {
            .testimonials-section .container {
                padding: 0 15px;
            }

            .testimonials-section .section-title {
                font-size: 24px;
            }

            .testimonials-section .owl-theme .owl-nav [class*='owl-'] {
                width: 32px;
                height: 32px;
                line-height: 32px;
                font-size: 18px;
            }
			 .testimonials-section .owl-theme .owl-nav .owl-next {
				right: -26px;
			  }
            .testimonials-section .owl-theme .owl-nav .owl-prev {
                left: -26px;
            }
 
        }