    :root {
      --teal: #0d6e6e;
      --teal-light: #1a9a8a;
      --teal-dark: #084848;
      --orange: #f07c1e;
      --orange-light: #f5a63d;
      --orange-dark: #c45e0a;
      --cream: #fdf8f0;
      --dark: #0a2a2a;
      --white: #ffffff;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--cream);
      color: var(--dark);
    }

    /* NAV */
    .navbar-custom {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1030;
      background: rgba(8, 72, 72, 0.97);
      backdrop-filter: blur(10px);
      padding: 0.6rem 0;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
      transition: background 0.4s, box-shadow 0.4s;
    }

    .navbar-custom.nav-light {
      background: rgba(255, 255, 255, 0.97);
      box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
    }

    .navbar-custom.nav-transparent {
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
    }

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

    .nav-logo img {
      height: 48px;
      width: 48px;
      object-fit: contain;
      border-radius: 8px;
    }

    .nav-brand {
      color: var(--white);
      transition: color 0.4s;
    }

    .navbar-custom.nav-light .nav-brand {
      color: var(--dark);
    }

    .nav-brand span {
      display: block;
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      line-height: 1.1;
    }

    .nav-brand small {
      font-size: 0.7rem;
      color: var(--orange-light);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.4s;
    }

    .navbar-custom.nav-light .nav-brand small {
      color: var(--orange-dark);
    }

    .navbar-custom .navbar-toggler {
      border-color: rgba(255, 255, 255, 0.3);
      padding: 0.3rem 0.6rem;
    }

    .navbar-custom .nav-menu-icon {
      width: 28px;
      height: 28px;
      stroke: var(--white);
      stroke-width: 2;
      transition: stroke 0.3s;
    }

    .navbar-custom.nav-light .navbar-toggler {
      border-color: rgba(0, 0, 0, 0.2);
    }

    .navbar-custom.nav-light .nav-menu-icon {
      stroke: var(--dark);
    }

    .navbar-custom .navbar-nav .nav-link {
      color: rgba(255, 255, 255, 0.85);
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.03em;
      transition: color 0.3s;
      padding: 0.5rem 1rem;
    }

    .navbar-custom.nav-light .navbar-nav .nav-link {
      color: var(--dark);
    }

    .navbar-custom .navbar-nav .nav-link:hover {
      color: var(--orange-light);
    }

    .navbar-custom.nav-light .navbar-nav .nav-link:hover {
      color: var(--orange);
    }

    .nav-cta {
      background: var(--orange);
      color: var(--white) !important;
      border: none;
      padding: 0.55rem 1.3rem;
      border-radius: 30px;
      font-weight: 700;
      font-family: 'Nunito', sans-serif;
      font-size: 0.88rem;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
      color: var(--white) !important;
    }

    /* Mobile nav collapse background */
    @media (max-width: 991.98px) {
      .navbar-custom .navbar-collapse {
        background: rgba(8, 72, 72, 0.97);
        border-radius: 0 0 16px 16px;
        padding: 0.5rem 1rem 1rem;
        margin-top: 0.5rem;
      }

      .navbar-custom.nav-light .navbar-collapse {
        background: rgba(255, 255, 255, 0.97);
      }

      .navbar-custom .nav-cta {
        margin-top: 0.5rem;
      }
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 7rem 0 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero-carousel {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-carousel .carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
      height: 100%;
      width: 100%;
    }

    .hero-carousel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(8, 72, 72, 0.6) 0%, rgba(10, 42, 42, 0.85) 100%);
      z-index: 0;
    }

    .hero-waves {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .hero-logo {
      width: 200px;
      height: 200px;
      object-fit: contain;
      margin: 0 auto 1.5rem;
      display: block;
      filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
      animation: floatLogo 4s ease-in-out infinite;
    }

    @media (min-width: 992px) {
      .hero-logo {
        margin: 0 0 1.5rem 0;
      }
    }

    @keyframes floatLogo {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    .hero-tag {
      display: inline-block;
      background: rgba(240, 124, 30, 0.25);
      border: 1px solid rgba(240, 124, 30, 0.5);
      color: var(--orange-light);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.35rem 1rem;
      border-radius: 20px;
      margin-bottom: 1.2rem;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1.2rem;
    }

    .hero h1 em {
      color: var(--orange-light);
      font-style: normal;
    }

    .hero p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.1rem;
      line-height: 1.7;
      max-width: 580px;
      margin: 0 auto 2rem;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary-custom {
      background: var(--orange);
      color: var(--white);
      padding: 0.85rem 2.2rem;
      border-radius: 50px;
      font-weight: 800;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 4px 20px rgba(240, 124, 30, 0.5);
      display: inline-flex;
      align-items: center;
    }

    .btn-primary-custom:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(240, 124, 30, 0.5);
      color: var(--white);
    }

    .btn-outline-custom {
      border: 2px solid rgba(255, 255, 255, 0.6);
      color: var(--white);
      padding: 0.85rem 2.2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
    }

    .btn-outline-custom:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--white);
      color: var(--white);
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      justify-content: center;
      margin-top: 3rem;
      flex-wrap: wrap;
    }

    .hero-stat {
      text-align: center;
    }

    .hero-stat strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--orange-light);
    }

    .hero-stat .stat-label {
      display: block;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* SECTION COMMONS */
    section {
      padding: 5rem 0;
    }

    .section-label {
      display: inline-block;
      color: var(--teal-light);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900;
      color: var(--dark);
      line-height: 1.15;
    }

    .section-title em {
      color: var(--teal);
      font-style: normal;
    }

    .section-sub {
      color: #555;
      font-size: 1rem;
      line-height: 1.7;
      margin-top: 0.8rem;
      max-width: 560px;
    }

    /* PACKAGES */
    .packages {
      background: var(--white);
    }

    .pkg-card {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
      transition: transform 0.25s, box-shadow 0.25s;
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .pkg-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
    }

    .pkg-img {
      height: 200px;
      position: relative;
      overflow: hidden;
    }

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

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

    .pkg-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--orange);
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.3rem 0.75rem;
      border-radius: 20px;
      letter-spacing: 0.05em;
    }

    .pkg-body {
      padding: 1.4rem 1.5rem 1.6rem;
      background: var(--white);
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .pkg-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .pkg-desc {
      font-size: 0.88rem;
      color: #666;
      line-height: 1.6;
      margin-bottom: 1rem;
      flex: 1;
    }

    .pkg-meta {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.2rem;
      flex-wrap: wrap;
    }

    .pkg-meta span {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 0.82rem;
      color: var(--teal);
      font-weight: 600;
    }

    .pkg-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .pkg-price {
      font-family: 'Playfair Display', serif;
    }

    .pkg-price .from {
      font-size: 0.75rem;
      color: #999;
    }

    .pkg-price .amount {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--teal);
    }

    .pkg-price small {
      font-size: 0.75rem;
      color: #999;
    }

    .pkg-btn {
      background: var(--teal);
      color: var(--white);
      border: none;
      padding: 0.55rem 1.2rem;
      border-radius: 25px;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      font-family: 'Nunito', sans-serif;
      text-decoration: none;
      transition: background 0.2s;
    }

    .pkg-btn:hover {
      background: var(--teal-dark);
      color: var(--white);
    }

    .pkg-fi {
      width: 64px;
      height: 64px;
      stroke: rgba(255, 255, 255, 0.85);
      stroke-width: 1.2;
    }

    /* DESTINATIONS GALLERY */
    .destinations {
      background: var(--cream);
    }

    .dest-gallery-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      min-height: 420px;
      display: flex;
      align-items: flex-end;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .dest-gallery-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .dest-gallery-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .dest-gallery-card:hover img {
      transform: scale(1.05);
    }

    .dest-gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 65%);
      z-index: 1;
    }

    .dest-gallery-body {
      position: relative;
      z-index: 2;
      padding: 2rem 2rem 1.8rem;
      width: 100%;
    }

    .dest-gallery-location {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      margin-bottom: 0.8rem;
    }

    .dest-gallery-name {
      font-family: 'Playfair Display', serif;
      color: var(--white);
      font-size: 1.6rem;
      font-weight: 900;
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    .dest-gallery-desc {
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.88rem;
      line-height: 1.65;
      margin-bottom: 1rem;
      max-width: 500px;
    }

    .dest-gallery-tags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .dest-gallery-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: var(--white);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.3rem 0.7rem;
      border-radius: 20px;
    }

    .dest-gallery-tag svg {
      width: 12px;
      height: 12px;
      stroke: var(--orange-light);
      stroke-width: 2.5;
    }

    /* Featured (full-width) destination */
    .dest-featured-card {
      min-height: 500px;
    }

    .dest-featured-card .dest-gallery-name {
      font-size: 2.2rem;
    }

    @media (max-width: 767.98px) {
      .dest-gallery-card {
        min-height: 340px;
      }

      .dest-featured-card {
        min-height: 380px;
      }

      .dest-featured-card .dest-gallery-name {
        font-size: 1.6rem;
      }

      .dest-gallery-body {
        padding: 1.5rem;
      }
    }

    /* WHY US & CONTACT BACKGROUND DECORATIONS */
    .bg-deco {
      position: absolute;
      z-index: 0;
      opacity: 0.12;
      color: #ffffff;
      pointer-events: none;
    }

    .whyus {
      background-image: linear-gradient(to right, rgba(8, 72, 72, 0.99) 0%, rgba(8, 72, 72, 0.8) 35%, rgba(8, 72, 72, 0) 65%), url('../images/why_trust_us_bg.png');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
      padding: 8rem 0;
    }

    @media (max-width: 991.98px) {
      .whyus {
        background-image: linear-gradient(to bottom, rgba(8, 72, 72, 0.99) 0%, rgba(8, 72, 72, 0.7) 45%, rgba(8, 72, 72, 0) 90%), url('../images/why_trust_us_bg.png');
        background-position: center center;
        padding: 5rem 0;
      }
    }

    .whyus .container {
      position: relative;
      z-index: 1;
    }

    .whyus-content-card {
      background: rgba(255, 255, 255, 0.94);
      /* white glassmorphism background */
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 3rem;
      border-radius: 24px;
      box-shadow: 0 20px 50px rgba(10, 42, 42, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.8);
    }

    @media (max-width: 575.98px) {
      .whyus-content-card {
        padding: 2rem 1.5rem;
      }
    }

    .whyus .section-label {
      color: var(--teal);
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

    .whyus .section-title {
      color: var(--dark);
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      line-height: 1.15;
    }

    .whyus .section-title em {
      color: var(--orange);
      font-style: normal;
    }

    .whyus-lead-text {
      color: var(--dark);
      font-size: 1.125rem;
      font-weight: 600;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .whyus-sub-text {
      color: #555;
      font-size: 1.02rem;
      line-height: 1.75;
    }

    /* Highlights styles matching image concept */
    .whyus-highlights {
      border-top: 1px solid rgba(13, 110, 110, 0.15);
      padding-top: 2rem;
    }

    .whyus-highlight-item {
      transition: transform 0.2s;
    }

    .whyus-highlight-item:hover {
      transform: translateX(4px);
    }

    .highlight-icon-box {
      width: 48px;
      height: 48px;
      background: rgba(13, 110, 110, 0.08);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--teal);
      transition: background 0.3s, color 0.3s;
    }

    .whyus-highlight-item:hover .highlight-icon-box {
      background: var(--teal);
      color: var(--white);
    }

    .highlight-icon-box svg {
      width: 20px;
      height: 20px;
      stroke-width: 2.2;
    }

    .highlight-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--dark);
    }

    .highlight-desc {
      font-size: 0.88rem;
      color: #666;
      line-height: 1.5;
    }


    /* TRANSPORTATION */
    .transportation {
      background: var(--white);
      padding: 6rem 0;
      position: relative;
    }

    .fleet-card {
      background: var(--cream);
      border-radius: 20px;
      padding: 2.5rem 1.8rem;
      box-shadow: 0 4px 25px rgba(10, 42, 42, 0.02);
      transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      border: 1px solid rgba(13, 110, 110, 0.05);
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
    }

    .fleet-card:hover {
      background: var(--white);
      transform: translateY(-6px);
      box-shadow: 0 15px 35px rgba(10, 42, 42, 0.08);
      border-color: rgba(13, 110, 110, 0.15);
    }

    .fleet-icon-wrapper {
      width: 140px;
      height: 140px;
      background: linear-gradient(135deg, rgba(13, 110, 110, 0.04), rgba(13, 110, 110, 0.08));
      border-radius: 50%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2.8rem;
      border: 1px solid rgba(13, 110, 110, 0.08);
      transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.6), 0 4px 10px rgba(10, 42, 42, 0.02);
    }

    .fleet-card:hover .fleet-icon-wrapper {
      background: linear-gradient(135deg, rgba(13, 110, 110, 0.08), rgba(13, 110, 110, 0.14));
      border-color: rgba(13, 110, 110, 0.18);
      box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.8), 0 8px 20px rgba(13, 110, 110, 0.08);
    }

    .fleet-icon-img {
      width: 180px; /* Larger than wrapper to overlap */
      height: auto;
      object-fit: contain;
      position: absolute;
      bottom: -15px; /* Spill over bottom edge */
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      filter: drop-shadow(0 6px 12px rgba(10, 42, 42, 0.12));
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    }

    .fleet-card:hover .fleet-icon-img {
      transform: scale(1.15) translateY(-12px) translateX(-50%); /* Dynamic pop-out and lift-up animation */
      filter: drop-shadow(0 15px 25px rgba(10, 42, 42, 0.22));
    }

    .fleet-badge {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--orange);
      background: rgba(240, 124, 30, 0.08);
      padding: 0.35rem 0.85rem;
      border-radius: 20px;
      margin-bottom: 1rem;
    }

    .fleet-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.75rem;
    }

    .fleet-desc {
      font-size: 0.88rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 0;
    }

    /* SAFETY & ASSURANCE */
    .assurance {
      background: var(--cream);
      padding: 6rem 0;
      position: relative;
    }

    .assurance-card {
      background: var(--white);
      border-radius: 24px;
      padding: 2.8rem 2.2rem;
      box-shadow: 0 10px 30px rgba(10, 42, 42, 0.03);
      border: 1px solid rgba(13, 110, 110, 0.05);
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .assurance-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 45px rgba(10, 42, 42, 0.08);
    }

    .assurance-card.card-teal {
      border-top: 5px solid var(--teal);
    }

    .assurance-card.card-orange {
      border-top: 5px solid var(--orange);
    }

    .assurance-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .assurance-card-title .title-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-teal .title-icon {
      background: rgba(13, 110, 110, 0.08);
      color: var(--teal);
    }

    .card-orange .title-icon {
      background: rgba(240, 124, 30, 0.08);
      color: var(--orange);
    }

    .assurance-list {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .assurance-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .assurance-item-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .card-teal .assurance-item-icon {
      background: rgba(13, 110, 110, 0.05);
      color: var(--teal);
    }

    .card-orange .assurance-item-icon {
      background: rgba(240, 124, 30, 0.05);
      color: var(--orange);
    }

    .assurance-item-icon svg {
      width: 15px;
      height: 15px;
      stroke-width: 2.5;
    }

    .assurance-item-text {
      font-size: 0.9rem;
      color: #444;
      line-height: 1.55;
      font-weight: 600;
    }

    .assurance-promise {
      margin-top: 4rem;
      text-align: center;
    }

    .promise-title {
      font-size: 0.75rem;
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 0.15em;
      color: var(--teal);
      margin-bottom: 0.8rem;
    }

    .promise-text {
      font-family: 'Dancing Script', cursive;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--orange);
      line-height: 1.4;
      margin: 0;
    }

    @media (max-width: 767.98px) {
      .promise-text {
        font-size: 1.7rem;
      }
    }

    /* TESTIMONIALS */
    .testimonials {
      background: var(--white);
    }

    .testi-card {
      background: var(--cream);
      border-radius: 16px;
      padding: 1.8rem;
      border-left: 4px solid var(--orange);
      height: 100%;
    }

    .stars {
      color: var(--orange);
      font-size: 1rem;
      margin-bottom: 0.8rem;
      display: flex;
      gap: 2px;
    }

    svg.feather {
      display: inline-block !important;
      vertical-align: -0.125em;
    }

    .testi-text {
      font-size: 0.92rem;
      line-height: 1.7;
      color: #444;
      margin-bottom: 1.2rem;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .testi-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .testi-name {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--dark);
    }

    .testi-loc {
      font-size: 0.78rem;
      color: #888;
    }

    /* CONTACT */
    .contact {
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #1a8070 100%);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }

    .contact .bg-deco-3 {
      bottom: 20px;
      left: -80px;
      width: 400px;
      height: 400px;
      transform: rotate(45deg);
      opacity: 0.15;
    }

    .contact .bg-deco-4 {
      top: 20px;
      right: -40px;
      width: 200px;
      height: 200px;
      transform: rotate(-10deg);
      opacity: 0.15;
    }

    .contact .container {
      position: relative;
      z-index: 1;
    }

    .contact h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 0.8rem;
      line-height: 1.15;
    }

    .contact h2 em {
      color: var(--orange-light);
      font-style: normal;
    }

    .contact p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 400px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      margin-top: 0.5rem;
    }

    .contact-detail-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .contact-detail-icon {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-detail-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--orange-light);
      stroke-width: 2;
    }

    .contact-detail-label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    .contact-detail-value {
      font-size: 0.92rem;
      color: var(--white);
      font-weight: 600;
    }

    .contact-detail-link {
      color: var(--orange-light);
      text-decoration: none;
    }

    .contact-detail-link:hover {
      color: var(--orange-light);
      text-decoration: underline;
    }

    /* FORM */
    .form-card {
      background: var(--white);
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 16px 60px rgba(0, 0, 0, 0.2);
    }

    .form-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 1.4rem;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-label-custom {
      display: block;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.35rem;
      letter-spacing: 0.02em;
    }

    .form-input {
      width: 100%;
      padding: 0.7rem 0.9rem;
      border: 1.5px solid #e0ddd5;
      border-radius: 10px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.9rem;
      color: var(--dark);
      background: var(--cream);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }

    .form-input:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(13, 110, 110, 0.1);
      background: var(--white);
    }

    .form-select-custom {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      cursor: pointer;
    }

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

    .form-btn {
      width: 100%;
      background: var(--teal);
      color: var(--white);
      border: none;
      padding: 0.9rem;
      border-radius: 12px;
      font-weight: 800;
      font-size: 1rem;
      cursor: pointer;
      font-family: 'Nunito', sans-serif;
      transition: background 0.2s, transform 0.1s;
      margin-top: 0.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .form-btn:hover {
      background: var(--teal-dark);
      transform: translateY(-1px);
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      color: rgba(255, 255, 255, 0.65);
      text-align: center;
      padding: 2rem;
      font-size: 0.88rem;
    }

    footer a {
      color: var(--orange-light);
      text-decoration: none;
    }

    /* SCROLL TO TOP */
    .scroll-top-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--orange);
      color: var(--white);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(240, 124, 30, 0.4);
      cursor: pointer;
      z-index: 1040;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.3s ease;
    }

    .scroll-top-btn.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .scroll-top-btn:hover {
      background: var(--orange-dark);
      transform: translateY(-3px);
    }

    /* SCROLL ANIMATION */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* CARD HOVER EFFECT */
    .hover-card-lift {
      transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }

    .hover-card-lift:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
    }