  /*-----------------------------------*\
  * #style.css
  \*-----------------------------------*/

  /**
  * copyright 2025 https://github.com/SafwanGanz
  */





  /*-----------------------------------*\
  * #CUSTOM PROPERTY
  \*-----------------------------------*/

  :root {

    /**
    * colors - The Local Path Brand Palette
    */

    /* Primary Colors */
    --forest-green: hsl(142, 30%, 26%);        /* #2d5139 */
    --cream-beige: hsl(45, 50%, 94%);          /* #f5f1e8 */
    
    /* Supporting Colors */
    --deep-pine: hsl(146, 35%, 17%);           /* #1e3a28 */
    --sage-green: hsl(146, 19%, 49%);          /* #6b8e7a */
    --warm-cream: hsl(60, 100%, 99%);          /* #fffef9 */
    --earthy-brown: hsl(30, 25%, 44%);         /* #8b7355 */
    
    /* Functional Colors */
    --success-green: hsl(146, 26%, 39%);       /* #4a7c59 */
    --warning-amber: hsl(30, 54%, 64%);        /* #d4a574 */
    --error-red: hsl(8, 43%, 45%);             /* #a64b3a */
    --info-blue: hsl(196, 24%, 45%);           /* #5a7d8c */
    
    /* Text Colors */
    --primary-text: hsl(146, 15%, 21%);        /* #2d3e32 */
    --secondary-text: hsl(146, 9%, 39%);       /* #5a6b5e */
    --light-text: hsl(146, 8%, 58%);           /* #8a9a8e */
    
    /* Legacy color mappings for compatibility */
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --cultured: var(--cream-beige);
    --gainsboro: hsl(0, 0%, 88%);

    /**
    * typography — Fraunces (display) + Figtree (UI)
    */

    --ff-display: "Fraunces", "Georgia", serif;
    --ff-primary: "Figtree", "Segoe UI", system-ui, sans-serif;
    --ff-headings: var(--ff-display);

    --fs-1: clamp(2.5rem, 6vw, 5.5rem);
    --fs-2: clamp(1.75rem, 3.2vw, 2.75rem);
    --fs-3: clamp(1.25rem, 1.6vw, 1.5rem);
    --fs-4: 1.05rem;
    --fs-5: 0.95rem;
    --fs-6: 0.875rem;
    --fs-7: 0.8125rem;
    --fs-8: 0.75rem;

    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;

    /**
    * transition
    */

    --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);

    /**
    * spacing
    */

    --section-padding: clamp(4.5rem, 10vw, 7.5rem);

    /**
    * border-radius
    */

    --radius-15: 10px;
    --radius-25: 12px;

  }





  /*-----------------------------------*\
  * #RESET
  \*-----------------------------------*/

  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  li { list-style: none; }

  a { text-decoration: none; }

  a,
  img,
  span,
  input,
  label,
  button,
  ion-icon { display: block; }

  input,
  button {
    background: none;
    border: none;
    font: inherit;
  }

  button { cursor: pointer; }

  input { width: 100%; }

  ion-icon { pointer-events: none; }

  html {
    font-family: var(--ff-primary);
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.6;
  }

  body { 
    background: var(--warm-cream);
    color: var(--primary-text);
  }





  /*-----------------------------------*\
  * #REUSED STYLE
  \*-----------------------------------*/

  .container { 
    padding-inline: 15px;
    max-width: 100%;
    width: 100%;
  }

  .container-fluid {
    padding-inline: 15px;
    max-width: 100%;
    width: 100%;
  }

  .btn {
    color: var(--white);
    text-transform: none;
    font-family: var(--ff-primary);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    letter-spacing: 0.02em;
    border-radius: 4px;
    padding: var(--padding, 12px 22px);
    border: var(--border-width, 1px) solid transparent;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .btn-primary {
    background: var(--forest-green);
    border-color: var(--forest-green);
  }

  .btn-primary:is(:hover, :focus) {
    background: var(--deep-pine);
    border-color: var(--deep-pine);
  }

  .btn-secondary { 
    border-color: currentColor;
    background: transparent;
    color: var(--forest-green);
  }

  .btn-secondary:is(:hover, :focus) { 
    background: var(--forest-green);
    border-color: var(--forest-green);
    color: var(--warm-cream);
  }

  .hero .btn-secondary,
  .cta .btn-secondary {
    color: var(--warm-cream);
    border-color: rgba(255, 254, 249, 0.7);
  }

  .hero .btn-secondary:is(:hover, :focus),
  .cta .btn-secondary:is(:hover, :focus) {
    background: var(--warm-cream);
    color: var(--deep-pine);
    border-color: var(--warm-cream);
  }

  .h1,
  .h2,
  .h3 {
    font-weight: var(--fw-500);
    font-family: var(--ff-headings);
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .h1 {
    color: var(--white);
    font-size: var(--fs-1);
    font-weight: var(--fw-500);
  }

  .h2,
  .h3 { color: var(--primary-text); }

  .h2 { 
    font-size: var(--fs-2);
    font-weight: var(--fw-500);
  }

  .h3 {
    font-size: var(--fs-3);
    font-weight: var(--fw-500);
  }

  .section-subtitle {
    color: var(--sage-green);
    font-size: var(--fs-7);
    text-transform: uppercase;
    font-family: var(--ff-primary);
    font-weight: var(--fw-600);
    margin-bottom: 12px;
    letter-spacing: 0.18em;
  }

  .section-title { margin-bottom: 1rem; }

  .section-text {
    color: var(--secondary-text);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 38rem;
    font-size: var(--fs-5);
  }

  .card-text {
    color: var(--secondary-text);
    font-size: var(--fs-5);
    line-height: 1.6;
  }





  /*-----------------------------------*\
  * #HEADER
  \*-----------------------------------*/

  .header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 0;
    z-index: 200;
    background: #fff;
    pointer-events: auto;
  }

  .header-top {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    padding-block: 10px;
    z-index: 11;
  }

  .header.active .header-top {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  }

  .header-top .container,
  .header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .helpline-box .wrapper { display: none; }

  .helpline-box .icon-box {
    background: var(--forest-green);
    padding: 6px;
    border-radius: 50%;
    color: var(--white);
  }

  .helpline-box .icon-box ion-icon { --ionicon-stroke-width: 40px; }

  .header-top .logo { 
    margin: 0;
    justify-self: flex-start;
  }

  /* Logo Styling */
  .logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
  }

  .logo-brand:hover {
    transform: scale(1.02);
  }

  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
  }

  .logo-img:hover {
    filter: brightness(1.2) contrast(1.2);
  }

  .logo-img-mobile {
    height: 35px;
    filter: none;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
  }

  .logo-main {
    font-size: var(--fs-7);
    font-weight: var(--fw-700);
    color: var(--warm-cream);
    text-transform: uppercase;
    letter-spacing: 1px;
    
    line-height: 0.9;
  }

  .logo-brand-mobile {
    gap: 8px;
  }

  .logo-brand-mobile .logo-main {
    color: var(--forest-green);
    font-size: 11px;
    line-height: 0.8;
  }

  .logo-tagline {
    font-size: 9px;
    font-weight: var(--fw-400);
    color: var(--warm-cream);
    text-transform: lowercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
  }

  .logo-dark .logo-main {
    color: var(--forest-green);
  }

  .logo-dark .logo-tagline {
    color: var(--sage-green);
  }

  .header-btn-group {
    justify-self: flex-end;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
  }

  .search-btn,
  .nav-open-btn {
    font-size: 30px;
    color: inherit;
    background: transparent;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-btn { font-size: 20px; }

  .header-bottom { border-bottom: 1px solid transparent; }

  .header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 15px;
  }

  .social-list {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .social-link {
    color: var(--white);
    padding: 8px;
    border: 1px solid hsla(0, 0%, 100%, 0.3);
    border-radius: 50%;
    font-size: 15px;
    transition: var(--transition);
  }

  .social-link:is(:hover, :focus) { 
    background: var(--sage-green);
    border-color: var(--sage-green);
  }

  .header .btn { --padding: 4px 20px; }

  .header .navbar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 100%;
    max-width: 280px;
    height: 100vh;
    background: var(--white);
    visibility: hidden;
    pointer-events: none;
    transition: 0.15s ease-in;
    z-index: 102;
    overflow-y: auto;
  }

  .navbar.active {
    right: 0;
    visibility: visible;
    pointer-events: all;
    transition: 0.25s ease-out;
  }

  .navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 15px;
    background: var(--white);
    border-bottom: 1px solid var(--cream-beige);
  }

  .navbar-top .logo {
    display: block;
  }

  .nav-close-btn {
    font-size: 24px;
    color: var(--forest-green);
    background: transparent;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-close-btn ion-icon { --ionicon-stroke-width: 80px; }

  .navbar-list { 
    border-top: none;
    margin: 0;
    padding: 10px 0;
  }

  .navbar-list li { 
    border-bottom: 1px solid var(--cream-beige);
    margin: 0;
    padding: 0;
  }

  .navbar-link {
    padding: 12px 20px;
    color: var(--forest-green);
    background: transparent;
    font-weight: var(--fw-500);
    font-size: 14px;
    transition: var(--transition);
    text-transform: capitalize;
    display: block;
  }

  .navbar-link:is(:hover, :focus) { 
    color: var(--sage-green);
    background: var(--cream-beige);
  }

  .overlay {
    position: fixed;
    inset: 0;
    background: var(--black);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    transition: var(--transition);
  }

  .overlay.active {
    opacity: 0.7;
    pointer-events: all;
  }





  /*-----------------------------------*\
  * #HERO
  \*-----------------------------------*/

  .hero {
    background-image: url("../images/bac 4.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    min-height: 42vh;
    animation: backgroundImage 1.6s ease-out forwards;
  }

  /* Background-images */

  .content img {
    position: absolute;
    bottom: -12%;
  }

  .title {
    position: absolute;
    top: 40%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 1;
  }

  .title h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 15px;
    color: white;
    text-align: center;
  }

  .title h1 {
    font-size: 15rem;
    font-weight: 800;
    letter-spacing: 50px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    margin: -20px 0;
  }

  .hero p {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    width: 70%;
    text-align: center;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  }

  .info-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 18%;
    z-index: 1;
  }

  .cta {
    position: absolute;
    bottom: 8%;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 1;
  }

  .cta button {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    height: 50px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    cursor: pointer;
  }

  .cta button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color:rgb(53, 53, 53);
  }

  .slider {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .slider ion-icon {
    padding: 0 5%;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.4);
  }

  /* Animations */
  @keyframes bottomIn {
    from {
      transform: translateY(200px);
    }
    to {
      transform: translateY(0);
    }
  }

  .back-1 {
    animation: bottomIn 1s ease-out forwards;
  }

  .back-2 {
    animation: bottomIn 1.3s ease-out forwards;
  }

  .back-3 {
    animation: bottomIn 1.5s ease-out forwards;
  }

  @keyframes bottomInText {
    from {
      transform: translateY(500px);
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .title h3 {
    animation: bottomInText 1s ease-out forwards;
  }

  .title h1 {
    animation: bottomInText 1.2s ease-out forwards;
  }

  .hero p {
    animation: bottomInText 1.2s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
  }

  .cta button {
    animation: bottomInText 1.2s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
  }

  @keyframes backgroundImage {
    from {
      background-position: top;
    }
    to {
      background-position: 50% 14%;
    }
  }

  @keyframes zoomOut{
    from {
      transform: scale(1.5);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .slider {
    animation: zoomOut 1.2s ease-out forwards;
  }





  /*-----------------------------------*\
  * #TOUR SEARCH
  \*-----------------------------------*/

  .tour-search {
    background: var(--forest-green);
    padding-block: var(--section-padding);
  }

  .tour-search-form .input-label {
    color: var(--white);
    font-size: var(--fs-4);
    margin-left: 20px;
    margin-bottom: 10px;
  }

  .tour-search-form .input-field {
    background: var(--white);
    padding: 10px 15px;
    font-size: var(--fs-5);
    border-radius: 50px;
    color: var(--primary-text);
  }

  .tour-search-form .input-field::placeholder { color: var(--light-text); }

  .tour-search-form .input-field::-webkit-datetime-edit {
    color: var(--secondary-text);
    text-transform: uppercase;
  }

  .tour-search-form .input-wrapper { margin-bottom: 15px; }

  .tour-search .btn {
    width: 100%;
    --border-width: 1px;
    font-weight: var(--fw-600);
    margin-top: 35px;
  }





  /*-----------------------------------*\
  * #ABOUT
  \*-----------------------------------*/

  .about { 
    padding-block: var(--section-padding); 
    background: var(--cream-beige);
  }

  .about-content {
    display: grid;
    gap: 30px;
    margin-block: 40px;
    justify-items: center;
  }

  .about-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-15);
    box-shadow: 0 2px 10px hsla(0, 0%, 0%, 0.05);
    transition: var(--transition);
  }

  .about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px hsla(0, 0%, 0%, 0.1);
  }

  .about-card .card-icon {
    background: var(--forest-green);
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
  }

  .about-card .card-title {
    color: var(--forest-green);
    margin-bottom: 15px;
    font-weight: var(--fw-700);
  }

  .about-mission {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-15);
    border-left: 4px solid var(--forest-green);
    margin-top: 30px;
  }

  .about-mission .h3 {
    color: var(--forest-green);
    margin-bottom: 15px;
    font-weight: var(--fw-700);
  }

  .about-mission .section-text {
    margin-bottom: 0;
  }





  /*-----------------------------------*\
  * #POPULAR
  \*-----------------------------------*/

  .popular { padding-block: var(--section-padding); }

  .popular-list,
  .popular-list > li:not(:last-child) { margin-bottom: 30px; }

  .popular-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-25);
    height: 430px;
  }

  .popular-card .card-img { height: 100%; }

  .popular-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .popular-card .card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    border-radius: var(--radius-25);
    padding: 20px;
  }


  .popular-card .card-rating {
    background: var(--forest-green);
    color: var(--white);
    position: absolute;
    top: 0;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 1px;
    transform: translateY(-50%);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 14px;
  }

  .popular-card .card-subtitle {
    color: var(--sage-green);
    font-size: var(--fs-6);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: var(--fw-600);
  }

  .popular-card .card-title { margin-bottom: 5px; }

  .popular-card :is(.card-subtitle, .card-title) > a { color: inherit; }

  .popular .btn { margin-inline: auto; }





  /*-----------------------------------*\
  * #PACKAGE
  \*-----------------------------------*/

  .package { padding-block: var(--section-padding); }

  .package-list { margin-bottom: 40px; }

  .package-list > li:not(:last-child) { margin-bottom: 30px; }

  .package-card {
    background: var(--cultured);
    overflow: hidden;
    border-radius: 15px;
  }

  .package-card .card-banner { height: 250px; }

  .package-card .card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .package-card .card-content { padding: 30px 20px; }

  .package-card .card-title { margin-bottom: 15px; }

  .package-card .card-text {
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .card-meta-list {
    background: var(--white);
    max-width: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 8px;
    box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.15);
    border-radius: 50px;
  }

  .card-meta-item { position: relative; }

  .card-meta-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 4px;
    right: -1px;
    bottom: 4px;
    width: 1px;
    background: hsla(0, 0%, 0%, 0.3);
  }

  .meta-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding-inline: 9px;
    color: var(--secondary-text);
    font-size: var(--fs-8);
  }

  .meta-box > ion-icon {
    color: var(--forest-green);
    font-size: 13px;
  }

  .package-card .card-price {
    background: var(--forest-green);
    color: var(--white);
    padding: 25px 20px;
    text-align: center;
  }

  .package-card .card-price .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px 15px;
    margin-bottom: 10px;
  }

  .package-card .card-price .reviews { font-size: var(--fs-5); }

  .package-card .card-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    font-size: 14px;
    color: var(--warm-cream);
  }

  .package-card .card-rating ion-icon:last-child { color: hsl(0, 0%, 80%); }

  .package-card .price {
    font-size: var(--fs-2);
    font-family: var(--ff-headings);
    font-weight: var(--fw-800);
    margin-bottom: 20px;
  }

  .package-card .price span {
    font-size: var(--fs-7);
    font-weight: initial;
  }

  .package .btn { margin-inline: auto; }





  /*-----------------------------------*\
  * #GALLERY
  \*-----------------------------------*/

  .gallery { padding-block: var(--section-padding); }

  .gallery-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-image {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-15);
    overflow: hidden;
  }

  .gallery-item:nth-child(3) { grid-area: 1 / 2 / 3 / 3; }

  .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Gallery Grid with Parallax Effect */
  .gallery-parallax-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
    perspective: 1000px;
  }

  .gallery-parallax-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(45, 81, 57, 0.1);
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    cursor: pointer;
  }

  .gallery-parallax-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
  }





  /*-----------------------------------*\
  * #CTA
  \*-----------------------------------*/

  .cta {
    background: var(--forest-green);
    padding-block: var(--section-padding);
  }

  .cta :is(.section-subtitle, .section-title, .section-text) { color: var(--white); }

  .cta .section-text { font-size: var(--fs-5); }





  /*-----------------------------------*\
  * #FOOTER
  \*-----------------------------------*/

  .footer {
    background: var(--deep-pine);
    color: var(--warm-cream);
    padding-block: 60px 20px;
  }

  .footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
  }

  .footer-top .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand .logo { margin-bottom: 20px; }

  .footer-logo-brand {
    gap: 15px;
  }

  .footer-logo-img {
    height: 50px;
    filter: brightness(1) contrast(1);
  }

  .footer-logo-main {
    color: var(--warm-cream);
    font-size: var(--fs-7);
    text-shadow: none;
  }

  .footer-logo-tagline {
    color: var(--cream-beige);
    font-size: 11px;
    text-shadow: none;
  }

  .footer-text {
    color: var(--warm-cream);
    font-size: var(--fs-6);
    line-height: 1.7;
    opacity: 0.9;
  }

  .footer-contact { margin-bottom: 30px; }

  .contact-title {
    color: var(--white);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    margin-bottom: 15px;
  }

  .contact-text {
    color: var(--warm-cream);
    font-size: var(--fs-6);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }

  .contact-item ion-icon { 
    color: var(--sage-green);
    font-size: 1.2rem;
  }

  .contact-link {
    color: var(--warm-cream);
    font-size: var(--fs-6);
    transition: var(--transition);
  }

  .contact-link:is(:hover, :focus) { 
    color: var(--sage-green);
  }

  address {
    font-style: normal;
    color: var(--warm-cream);
    font-size: var(--fs-6);
  }

  .footer-form .form-text {
    color: var(--warm-cream);
    font-size: var(--fs-6);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
  }

  .form-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .input-field {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: var(--fs-6);
  }

  .input-field::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  .footer-form .input-field {
    background: rgba(255, 255, 255, 0.1);
    font-size: var(--fs-6);
    padding: 12px 16px;
    border-radius: 25px;
    margin-bottom: 10px;
  }

  .footer-form .btn { width: 100%; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .copyright {
    color: var(--warm-cream);
    font-size: var(--fs-6);
    opacity: 0.8;
  }

  .copyright a {
    color: inherit;
    display: inline-block;
  }

  .copyright a:is(:hover, :focus) { color: var(--sage-green); }

  .footer-bottom-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }

  .footer-bottom-link {
    color: var(--warm-cream);
    font-size: var(--fs-6);
    transition: var(--transition);
    opacity: 0.8;
  }

  .footer-bottom-link:hover {
    color: var(--sage-green);
    opacity: 1;
  }

  .footer-bottom-list > li { position: relative; }

  .footer-bottom-list > li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3px;
    right: -10px;
    bottom: 3px;
    width: 1px;
    background: hsla(0, 0%, 100%, 0.2);
  }

  .footer-bottom-link {
    color: var(--gainsboro);
    font-size: var(--fs-7);
    transition: var(--transition);
  }

  .footer-bottom-link:is(:hover, :focus) { color: var(--white); }





  /*-----------------------------------*\
  * #GO TO TOP
  \*-----------------------------------*/

  .go-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--forest-green);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 18px;
    border-radius: 6px;
    box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: var(--transition);
  }

  .go-top.active {
    opacity: 0.8;
    transform: translateY(0);
    visibility: visible;
  }

  .go-top:is(:hover, :focus) { 
    opacity: 1;
    background: var(--deep-pine);
  }





  /*-----------------------------------*\
  * #MEDIA QUERIES
  \*-----------------------------------*/

  /**
  * responsive for larger than 580px screen
  */

  @media (min-width: 580px) {

    /**
    * REUSED STYLE
    */

    .container {
      max-width: 580px;
      margin-inline: auto;
    }

    .btn {
      --fs-5: 16px;
      --padding: 12px 30px;
    }

    section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
      text-align: center;
    }

    .section-text { margin-bottom: 40px; }

    .card-text { --fs-5: 15px; }



    /**
    * HEADER
    */

    .header { padding-top: 0; }

    .helpline-box .icon-box { padding: 14px; }

    .header-top .logo img { max-width: unset; }

    .search-btn { font-size: 30px; }

    .nav-open-btn { font-size: 40px; }

    .header .btn {
      --fs-5: 14px;
      --padding: 6px 20px;
    }



    /**
    * HERO
    */

    .hero {
      min-height: 800px;
      padding-top: 85px;
    }

    .hero-text { --fs-5: 15px; }

    .btn-group { gap: 20px; }



    /**
    * TOUR SEARCH
    */

    .tour-search-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: flex-end;
      gap: 15px;
    }

    .tour-search-form .input-wrapper { margin-bottom: 0; }

    .tour-search-form .input-field { padding: 16px 20px; }

    .tour-search .btn {
      grid-column: span 2;
      margin-top: 20px;
    }



    /**
    * POPULAR
    */

    .popular-card .card-content { right: auto; }



    /**
    * ABOUT
    */

    .about-content {
      grid-template-columns: 1fr 1fr;
    }



    /**
    * FOOTER
    */

    .footer .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .footer-form { grid-column: span 2; }

    .footer-bottom { text-align: left; }

    .copyright { margin-bottom: 0; }

    .footer-bottom-list { justify-content: flex-end; }

  }





  /**
  * responsive for larger than 768px screen
  */

  @media (min-width: 768px) {

    /**
    * CUSTOM PROPERTY
    */

    :root {

      /**
      * typography
      */

      --fs-5: 15px;

    }



    /**
    * REUSED STYLE
    */

    .container { max-width: 800px; }

    .section-text {
      max-width: 60ch;
      margin-inline: auto;
    }

    .contact-form .form-grid {
      grid-template-columns: 1fr 1fr;
    }

    .gallery-parallax-grid,
    .gallery-list {
      grid-template-columns: 1fr 1fr;
    }



    /**
    * HEADER
    */

    .helpline-box {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 10px;
    }

    .helpline-box .wrapper {
      display: block;
      color: var(--white);
      font-size: var(--fs-6);
    }
    
    .helpline-title {
      font-weight: var(--fw-500);
      opacity: 0.9;
    }
    
    .helpline-number {
      font-weight: var(--fw-600);
    }

    .social-list { gap: 10px; }
    
    .logo-img {
      height: 50px;
    }

    .logo-img-mobile {
      height: 40px;
    }
    
    .logo-main {
      font-size: var(--fs-6);
    }

    .logo-brand-mobile .logo-main {
      font-size: 12px;
    }



    /**
    * POPULAR
    */

    .popular-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 50px;
    }

    .popular-list > li:not(:last-child) { margin-bottom: 0; }

    .popular-card .card-content { right: 20px; }



    /**
    * ABOUT
    */

    .about-content {
      grid-template-columns: repeat(3, 1fr);
    }



    /**
    * PACKAGE
    */

    .package-list { margin-bottom: 50px; }

    .package-list > li:not(:last-child) { margin-bottom: 40px; }

    .package-card {
      display: grid;
      grid-template-columns: 1.3fr 1.5fr 1fr;
    }

    .package-card .card-banner { height: 100%; }

    .package-card .card-content { padding: 40px; }

    .package-card .card-price {
      display: grid;
      place-content: center;
    }

    .package-card .card-price .wrapper { margin-bottom: 15px; }



    /**
    * GALLERY
    */

    .gallery { padding-bottom: calc(var(--section-padding * 2)); }

    .gallery-list {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .gallery-image { border-radius: var(--radius-25); }



    /**
    * CTA
    */

    .cta .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cta-content { width: calc(100% - 225px); }

    .cta .section-text { margin-inline: 0; }



    /**
    * FOOTER
    */

    .form-wrapper {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 20px;
    }

    .footer-form .input-field { margin-bottom: 0; }

    .footer-form .btn { width: max-content; }

  }





  /**
  * responsive for larger than 992px screen
  */

  @media (min-width: 992px) {

    /**
    * REUSED STYLE
    */

    .container { max-width: 1050px; }

    .footer-top .container {
      grid-template-columns: 1.15fr 1fr 1fr;
    }

    .gallery-parallax-grid,
    .contact-modern-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero {
      min-height: 48vh;
    }



    /**
    * HEADER
    */

    .nav-open-btn,
    .navbar-top,
    .overlay {
      display: none;
    }

    .header-top .container,
    .header-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .header-top .logo {
      justify-self: flex-start;
    }

    .header .navbar {
      position: absolute;
      top: 50%;
      left: 50%;
      right: auto;
      transform: translate(-50%, -50%);
      width: auto;
      max-width: none;
      height: auto;
      background: transparent;
      visibility: visible;
      pointer-events: auto;
      overflow: visible;
    }

    .navbar-list {
      border-top: none;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 4px;
    }

    .navbar-list li {
      border-bottom: none;
    }

    .navbar-link {
      color: rgba(255, 254, 249, 0.88);
      background: transparent;
      font-size: 0.9rem;
      font-weight: var(--fw-500);
      text-transform: none;
      letter-spacing: 0.01em;
      padding: 8px 14px;
      border-radius: 0;
      border: none;
      border-bottom: 1px solid transparent;
      transition: var(--transition);
      box-shadow: none;
    }

    .header.active .navbar-link {
      color: rgba(255, 254, 249, 0.9);
    }

    .navbar-link:is(:hover, :focus) {
      background: transparent;
      color: var(--warm-cream);
      border-bottom-color: var(--sage-green);
      transform: none;
    }

    .header-btn-group {
      justify-self: flex-end;
    }

    .logo-img {
      height: 55px;
    }

    .logo-main {
      font-size: var(--fs-5);
    }



    /**
    * HERO
    */

    .hero .container { max-width: 740px; }



    /**
    * TOUR SEARCH
    */

    .tour-search-form { grid-template-columns: repeat(5, 1fr); }

    .tour-search .btn {
      --padding: 15px;
      grid-column: unset;
      margin-top: 0;
    }



    /**
    * POPULAR
    */

    .popular-list { grid-template-columns: repeat(3, 1fr); }



    /**
    * PACKAGE
    */

    .meta-box { --fs-8: 13px; }

    .meta-box > ion-icon { font-size: 15px; }



    /**
    * CTA 
    */

    .cta .section-title { max-width: 25ch; }



    /**
    * FOOTER
    */

    .footer-top .container {
      grid-template-columns: repeat(3, 1fr);
      gap: 50px;
    }

    .footer-form { grid-column: unset; }

    .form-wrapper { flex-direction: column; }

    .footer-form .btn { width: 100%; }

  }





  /**
  * responsive for larger than 1200px screen
  */

  @media (min-width: 1200px) {

    /**
    * CUSTOM PROPERTY
    */

    :root {

      /**
      * spacing
      */

      --section-padding: 100px;

    }



    /**
    * REUSED STYLE
    */

    .container { 
      max-width: 100%;
      padding-inline: 30px;
    }

    .container-fluid {
      max-width: 100%;
      padding-inline: 30px;
    }

  }





  /*-----------------------------------*\
  * #CONTACT INFO SECTION - MODERN & SLEEK
  \*-----------------------------------*/

  .contact-info-section {
    background: #fafafa;
    padding-block: 90px;
    position: relative;
  }

  .contact-info-section .section-subtitle {
    color: var(--sage-green);
    font-size: var(--fs-7);
    font-weight: var(--fw-600);
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .contact-info-section .section-title {
    color: var(--deep-pine);
    font-size: var(--fs-1);
    font-weight: var(--fw-700);
    margin-bottom: 15px;
  }

  .contact-info-section .section-text {
    color: #666;
    font-size: var(--fs-6);
    max-width: 600px;
    line-height: 1.8;
  }

  .contact-modern-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 50px;
  }

  .contact-modern-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
  }

  .contact-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--sage-green), var(--forest-green));
  }

  .contact-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(107, 142, 122, 0.1), rgba(45, 81, 57, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }

  .contact-icon-wrapper ion-icon {
    font-size: 32px;
    color: var(--forest-green);
  }

  .contact-modern-card h3 {
    font-size: var(--fs-4);
    font-weight: var(--fw-700);
    color: var(--deep-pine);
    margin-bottom: 12px;
  }

  .contact-value {
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    color: var(--forest-green);
    margin-bottom: 8px;
    word-break: break-word;
  }

  .contact-value a {
    color: inherit;
    text-decoration: none;
  }

  .contact-detail {
    font-size: var(--fs-7);
    color: #999;
    line-height: 1.6;
  }

  /* Social Section */
  .contact-social-wrapper {
    margin-top: 70px;
    text-align: center;
  }

  .contact-social-wrapper h3 {
    font-size: var(--fs-3);
    font-weight: var(--fw-700);
    color: var(--deep-pine);
    margin-bottom: 10px;
  }

  .contact-social-wrapper p {
    color: #666;
    font-size: var(--fs-6);
    margin-bottom: 30px;
  }

  .social-links-modern {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .social-link-modern {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-green);
    font-size: 22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
  }

  @media (max-width: 992px) {
    .contact-mega-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .contact-mega-item {
      padding: 50px 30px;
    }

    .contact-icon {
      font-size: 3.5rem;
    }
  }

  @media (max-width: 768px) {
    .contact-info-section {
      padding-block: 70px;
    }

    .contact-mega-item {
      padding: 40px 25px;
    }

    .contact-mega-item h3 {
      font-size: var(--fs-3);
    }

    .contact-link-main {
      font-size: var(--fs-4);
    }

    .social-links-bold {
      gap: 12px;
    }

    .social-link-bold {
      width: 60px;
      height: 60px;
      font-size: 28px;
    }
  }




  /*-----------------------------------*\
  * #CONTACT FORM
  \*-----------------------------------*/

  .contact-form-section {
    background: var(--cream-beige);
    padding-block: 80px;
  }

  .contact-form {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-25);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(45, 81, 57, 0.08);
    border: 1px solid rgba(107, 142, 122, 0.1);
  }

  .contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .contact-form .input-wrapper {
    margin-bottom: 0;
  }

  .contact-form .input-wrapper.full-width {
    grid-column: 1 / -1;
  }

  .contact-form .input-label {
    color: var(--forest-green);
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    margin-bottom: 10px;
    display: block;
    margin-left: 5px;
  }

  .contact-form .input-field {
    background: var(--cream-beige);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: var(--fs-6);
    color: var(--primary-text);
    transition: all 0.3s ease;
    width: 100%;
  }

  .contact-form .input-field:focus {
    outline: none;
    border-color: var(--sage-green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(107, 142, 122, 0.1);
  }

  .contact-form .input-field::placeholder {
    color: var(--light-text);
    font-size: var(--fs-6);
  }

  .contact-form textarea.input-field {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
  }

  .contact-form .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: var(--fs-5);
    margin-top: 10px;
    border-radius: 12px;
    font-weight: var(--fw-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 81, 57, 0.4);
  }

  .form-info {
    background: linear-gradient(135deg, rgba(107, 142, 122, 0.08), rgba(45, 81, 57, 0.05));
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid var(--sage-green);
    margin-bottom: 30px;
  }

  .form-info p {
    color: var(--secondary-text);
    font-size: var(--fs-6);
    line-height: 1.7;
    margin: 0;
  }

  .form-info ion-icon {
    color: var(--sage-green);
    font-size: 20px;
    vertical-align: middle;
    margin-right: 8px;
  }

  @media (max-width: 768px) {
    .contact-form {
      padding: 35px 25px;
    }

    .contact-form .form-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .contact-form .input-wrapper.full-width {
      grid-column: 1;
    }
  }




  /*-----------------------------------*\
  * #GO TO TOP BUTTON
  \*-----------------------------------*/

  .go-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--forest-green);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(45, 81, 57, 0.3);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    z-index: 100;
  }

  .go-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .go-top:hover {
    background: var(--deep-pine);
    transform: translateY(-5px);
  }





  /*-----------------------------------*\
  * #HERO PAGE STYLES
  \*-----------------------------------*/

  .hero {
    padding-block: 120px 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    min-height: 50vh;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(45, 81, 57, 0.8), rgba(30, 58, 40, 0.6));
    z-index: 1;
  }

  .hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .hero-title {
    color: var(--white);
    font-size: var(--fs-1);
    font-weight: var(--fw-800);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  }

  .hero-text {
    color: var(--warm-cream);
    font-size: var(--fs-5);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 768px) {
    .footer-top .container {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .footer-logo-brand {
      gap: 10px;
    }

    .footer-logo-img {
      height: 45px;
    }

    .footer-logo-main {
      font-size: var(--fs-8);
    }

    .footer-logo-tagline {
      font-size: 10px;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }

    .footer-bottom-list {
      justify-content: center;
    }
  }





  /*-----------------------------------*\
  * #PAGE-SPECIFIC STYLES
  \*-----------------------------------*/

  /* Destinations Page */
  .hero-destinations {
    background-image: url('../images/popular-2.jpg');
    background-size: cover;
    background-position: center;
    min-height: 55vh;
  }

  .hero-destinations::before {
    background: linear-gradient(135deg, 
      rgba(139, 115, 85, 0.75), 
      rgba(45, 81, 57, 0.65));
  }

  .page-destinations .section-subtitle {
    color: var(--earthy-brown);
  }

  .page-destinations .card-meta-item ion-icon {
    color: var(--earthy-brown);
  }

  .page-destinations .btn-secondary {
    border-color: var(--earthy-brown);
    color: var(--earthy-brown);
  }

  .page-destinations .btn-secondary:is(:hover, :focus) {
    background: var(--earthy-brown);
    border-color: var(--earthy-brown);
    color: var(--white);
  }


  /* Experiences Page */
  .hero-experiences {
    background-image: url('../images/packege-2.jpg');
    background-size: cover;
    background-position: center;
    min-height: 55vh;
  }

  .hero-experiences::before {
    background: linear-gradient(135deg, 
      rgba(107, 142, 122, 0.8), 
      rgba(30, 58, 40, 0.7));
  }

  .page-experiences .section-subtitle {
    color: var(--sage-green);
  }

  .page-experiences .section-title {
    margin-bottom: 20px;
  }

  .page-experiences .section-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
  }

  /* Experience Grid Layout */
  .experiences-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .experience-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--sage-green);
  }

  .experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 122, 0.2);
  }

  .experience-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sage-green), var(--forest-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .experience-icon ion-icon {
    font-size: 30px;
    color: var(--white);
  }

  .experience-item .h3 {
    color: var(--forest-green);
    margin-bottom: 12px;
    font-size: var(--fs-4);
  }

  .experience-item .card-text {
    line-height: 1.7;
    color: var(--secondary-text);
  }

  @media (min-width: 768px) {
    .experiences-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 35px;
    }
  }

  @media (min-width: 992px) {
    .experiences-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }
    
    .experience-item {
      padding: 40px 30px;
    }
  }

  .page-destinations .package-card {
    border-left: 4px solid var(--earthy-brown);
  }





  /*-----------------------------------*\
  * #ABOUT PAGE STYLES
  \*-----------------------------------*/

  /* About Section Specific */
  .about {
    padding-block: 80px;
    background: var(--warm-cream);
  }

  .section-subtitle {
    color: var(--sage-green);
    font-size: var(--fs-7);
    font-weight: var(--fw-600);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 15px;
  }

  .section-title {
    color: var(--forest-green);
    font-size: var(--fs-2);
    font-weight: var(--fw-700);
    line-height: 1.3;
    text-align: center;
    margin-bottom: 30px;
  }

  .section-text {
    color: var(--primary-text);
    font-size: var(--fs-6);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
  }

  /* About Cards */
  .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }

  .about-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(45, 81, 57, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(107, 142, 122, 0.1);
    position: relative;
    overflow: hidden;
  }

  .about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green), var(--forest-green));
    transition: var(--transition);
  }

  .about-card:hover::before {
    left: 0;
  }

  .about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(45, 81, 57, 0.15);
  }

  .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--sage-green), var(--forest-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 81, 57, 0.2);
  }

  .card-title {
    color: var(--forest-green);
    font-size: var(--fs-4);
    font-weight: var(--fw-600);
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .card-text {
    color: var(--secondary-text);
    font-size: var(--fs-6);
    line-height: 1.7;
  }

  /* Package Section */
  .package {
    padding-block: 80px;
    background: var(--warm-cream);
  }

  /* Additional logo tagline styles */
  .logo-tagline {
    font-size: 10px;
    font-weight: var(--fw-400);
    color: var(--cream-beige);
    text-transform: lowercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1;
    margin-top: 2px;
  }

  .logo-brand-mobile .logo-tagline {
    color: var(--sage-green);
    font-size: 8px;
  }

  /* Typography Helpers */
  .h1, .h2, .h3, .h4 {
    line-height: 1.3;
    font-weight: var(--fw-700);
  }

  .h1 { font-size: var(--fs-1); }
  .h2 { font-size: var(--fs-2); }
  .h3 { font-size: var(--fs-3); }
  .h4 { font-size: var(--fs-4); }

  /* Responsive Typography for About Page */
  @media (max-width: 768px) {
    .about-content {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .about-card {
      padding: 30px 25px;
    }

    .hero {
      padding-block: 100px 60px;
    }

    .hero .container {
      text-align: center;
    }

    .about, .package {
      padding-block: 60px;
    }
  }

  @media (max-width: 480px) {
    .container {
      padding-inline: 20px;
    }

    .form-wrapper {
      flex-direction: column;
    }

    .input-field {
      min-width: auto;
    }
  }

  /* Additional responsive styles for logo tagline */
  @media (min-width: 768px) {
    .logo-tagline {
      font-size: 11px;
    }

    .logo-brand-mobile .logo-tagline {
      font-size: 9px;
    }
  }

  @media (min-width: 992px) {
    .logo-tagline {
      font-size: 12px;
    }
  }

  /* =============================================
    INDEX.HTML SPECIFIC STYLES
    ============================================= */

  /* Base styles for index.html slide system */
  .index-page html {
    height: -webkit-fill-available;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .index-page body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    font-family: "Inter", sans-serif;
  }

  .index-page html {
    height: 100%;
    overflow-x: hidden;
  }

  .index-page body::after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(transparent 50%, rgb(0, 0, 0));
    pointer-events: none;
    z-index: 0;
  }

  /* Hero content container */
  .index-page .hero-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    overflow: hidden;
    z-index: 1;
  }

  .index-page .back-1, 
  .index-page .back-2, 
  .index-page .back-3 {
    position: fixed;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    z-index: 0;
  }

  /* Slide system */
  .index-page .slide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
  }

  .index-page .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  .index-page .background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    overflow: hidden;
    z-index: 0;
  }

  .index-page .background-container img {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 130;
    object-fit: cover;
  }

  .index-page .slide.active .back-1 {
    z-index: 4;
    animation: bottomIn 1s ease-out forwards;
    object-position: top 0% !important;
  }

  .index-page .slide.active .back-2 {
    z-index: 3;
    animation: bottomIn 1.3s ease-out forwards;
    object-position: top 0% !important;
  }

  .index-page .slide.active .back-3 {
    z-index: 2;
    animation: bottomIn 1.5s ease-out forwards;
    object-position: top 0% !important;
  }

  .index-page .back-1, 
  .index-page .back-2, 
  .index-page .back-3 {
    z-index: 2;
    object-position: top 0% !important;
  }

  /* Content positioning */
  .index-page .content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    z-index: 5;
    pointer-events: none;
  }

  .index-page .title {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 90;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .index-page .title h3 {
    font-size: clamp(0.7rem, 3vw, 1rem);
    font-weight: 400;
    letter-spacing: clamp(3px, 1.5vw, 8px);
    color: var(--warm-cream);
    text-align: center;
    animation: bottomInText 1s ease-out forwards;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .index-page .title h1 {
    font-size: clamp(2.5rem, 15vw, 8rem);
    font-weight: 800;
    letter-spacing: clamp(5px, 2vw, 40px);
    text-transform: uppercase;
    color: var(--warm-cream);
    text-align: center;
    margin: 0;
    line-height: 0.9;
    word-spacing: clamp(-5px, -0.3vw, -10px);
    max-width: 100%;
    overflow-wrap: break-word;
    animation: bottomInText 1.2s ease-out forwards;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  }

  .index-page .content p {
    font-size: clamp(11px, 2vw, 14px);
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.6;
    color: var(--warm-cream);
    width: 90%;
    max-width: 700px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 25px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .index-page .info-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 28%;
    z-index: 85;
    padding: 0 15px;
    box-sizing: border-box;
  }

  /* CTA Button */
  .index-page .cta {
    position: fixed;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    pointer-events: auto;
  }

  .index-page .cta button {
    font-size: clamp(12px, 2.5vw, 16px);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    height: clamp(40px, 8vw, 50px);
    width: clamp(200px, 50vw, 280px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    pointer-events: auto;
    white-space: nowrap;
  }

  .index-page .cta button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: rgb(53, 53, 53);
  }

  /* Slider navigation */
  .index-page .slider {
    position: fixed;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 100;
    animation: zoomOut 1.2s ease-out forwards;
    pointer-events: none;
  }

  .index-page .slider i {
    padding: 0 5%;
    font-size: clamp(24px, 6vw, 36px);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
  }

  .index-page .slider i:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
  }

  /* Animations for index.html */
  @keyframes bottomIn {
    from { transform: translate(-50%, 200px); }
    to { transform: translate(-50%, 0); }
  }

  @keyframes bottomInText {
    from {
      transform: translateY(500px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes backgroundImage {
    from { 
      background-position: top center;
      background-size: cover;
    }
    to { 
      background-position: center center;
      background-size: cover;
    }
  }

  .index-page body {
    animation: backgroundImage 1.6s ease-out forwards;
  }

  @keyframes topIn {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .index-page .header {
    animation: none;
  }

  @keyframes zoomOut {
    from {
      transform: scale(1.5);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* Index.html header specific styles */
  .index-page .header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 0;
    z-index: 200;
    background: #fff;
    pointer-events: auto;
  }

  .index-page .header-top {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    padding-block: 10px;
    z-index: 11;
  }

  .index-page .header.active .header-top {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  }

  .index-page .header-top .container-fluid,
  .index-page .header-top .container,
  .index-page .header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .index-page .helpline-box { 
    display: none;
  }

  .index-page .helpline-box .wrapper { 
    display: none; 
  }

  .index-page .helpline-box {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: flex-start;
  }

  .index-page .helpline-box .icon-box {
    background: var(--forest-green);
    padding: 6px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
  }

  .index-page .helpline-box .icon-box ion-icon { 
    --ionicon-stroke-width: 40px; 
  }

  .index-page .header-top .logo { 
    margin: 0;
    justify-self: flex-start;
  }

  .index-page .logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
  }

  .index-page .logo-brand:hover {
    transform: scale(1.02);
  }

  .index-page .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .index-page .logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
  }

  .index-page .logo-img:hover {
    filter: brightness(1.2) contrast(1.2);
  }

  .index-page .logo-img-mobile {
    height: 35px;
    filter: none;
  }

  .index-page .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
  }

  .index-page .logo-main {
    font-size: var(--fs-7);
    font-weight: var(--fw-700);
    color: var(--warm-cream);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 0.9;
  }

  .index-page .logo-brand-mobile {
    gap: 8px;
  }

  .index-page .logo-brand-mobile .logo-main {
    color: var(--forest-green);
    font-size: 11px;
    line-height: 0.8;
  }

  /* =============================================
    INDEX.HTML RESPONSIVE STYLES
    ============================================= */

  /* Mobile */
  @media (max-width: 768px) {
    .index-page body {
      background-position: center center !important;
      background-size: cover !important;
      background-attachment: scroll !important;
      animation: none !important;
      min-height: 100vh !important;
      height: auto !important;
    }

    .index-page html, 
    .index-page body {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .index-page body::after {
      background: linear-gradient(transparent 40%, rgb(0, 0, 0));
      position: fixed;
    }

    .index-page .content {
      min-height: 100vh;
      height: 100vh;
      position: relative;
    }
  }

  @media (max-width: 480px) {
    .index-page .hero-content {
      height: 100vh;
      height: -webkit-fill-available;
      width: 100%;
      overflow: hidden;
      position: fixed;
      top: 0;
      left: 0;
    }

    .index-page .back-1, 
    .index-page .back-2, 
    .index-page .back-3 {
      width: 100%;
      height: 130%;
      object-fit: cover;
      position: fixed;
      top: -15%;
      margin: 0;
      padding: 0;
      transform: translateX(-50%);
      left: 50%;
    }
  }

  /* Tablet */
  @media (min-width: 768px) {
    .index-page .helpline-box {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 10px;
    }

    .index-page .helpline-box .wrapper {
      display: block;
      color: var(--white);
      font-size: 13px;
    }
    
    .index-page .helpline-title {
      font-weight: var(--fw-500);
      opacity: 0.9;
    }
    
    .index-page .helpline-number {
      font-weight: var(--fw-600);
    }

    .index-page .social-list { 
      gap: 10px; 
    }
    
    .index-page .logo-img {
      height: 50px;
    }

    .index-page .logo-img-mobile {
      height: 40px;
    }

    .index-page .logo-main {
      font-size: var(--fs-6);
    }

    .index-page .logo-brand-mobile .logo-main {
      font-size: 12px;
    }

    .index-page .title {
      top: 38%;
    }

    .index-page .title h1 {
      margin: -15px 0;
    }

    .index-page .content p {
      width: 70%;
    }

    .index-page .info-wrap {
      bottom: 18%;
    }

    .index-page .cta {
      bottom: 8%;
    }
  }

  /* Desktop */
  @media (min-width: 992px) {
    .index-page .nav-open-btn,
    .index-page .navbar-top,
    .index-page .overlay { 
      display: none; 
    }

    .index-page .header-top .container,
    .index-page .header-top .container-fluid,
    .index-page .header-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .index-page .header-top .logo {
      justify-self: flex-start;
    }

    .index-page .header .navbar { 
      position: absolute;
      top: 50%;
      left: 50%;
      right: auto;
      transform: translate(-50%, -50%);
      width: auto;
      max-width: none;
      height: auto;
      background: transparent;
      visibility: visible;
      pointer-events: auto;
      overflow: visible;
    }

    .index-page .navbar-list {
      border-top: none;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 4px;
    }

    .index-page .navbar-list li { 
      border-bottom: none; 
    }

    .index-page .navbar-link {
      color: rgba(255, 254, 249, 0.88);
      background: transparent;
      font-size: 0.9rem;
      font-weight: var(--fw-500);
      text-transform: none;
      letter-spacing: 0.01em;
      padding: 8px 14px;
      border-radius: 0;
      border: none;
      border-bottom: 1px solid transparent;
      transition: var(--transition);
      box-shadow: none;
    }

    .index-page .header.active .navbar-link { 
      color: rgba(255, 254, 249, 0.9); 
    }

    .index-page .navbar-link:is(:hover, :focus) { 
      background: transparent;
      color: var(--warm-cream);
      border-bottom-color: var(--sage-green);
      transform: none;
    }

    .index-page .header-btn-group {
      justify-self: flex-end;
    }

    .index-page .logo-img {
      height: 55px;
    }

    .index-page .logo-main {
      font-size: var(--fs-5);
    }

    .index-page .title {
      top: 40%;
    }
  }

  /* Mobile landscape */
  @media (max-width: 767px) and (orientation: landscape) {
    .index-page .title {
      top: 30%;
    }

    .index-page .title h1 {
      font-size: clamp(2rem, 12vw, 4rem);
      margin: -8px 0;
    }

    .index-page .title h3 {
      font-size: clamp(0.6rem, 2vw, 0.8rem);
    }

    .index-page .info-wrap {
      bottom: 15%;
    }

    .index-page .content p {
      font-size: 11px;
      width: 85%;
    }

    .index-page .cta {
      bottom: 6%;
    }
  }

  /* Small mobile */
  @media (max-width: 480px) {
    .index-page body {
      overflow-x: hidden;
      max-width: 100vw;
    }

    .index-page .container {
      padding-inline: 10px;
    }

    .index-page .logo-img {
      height: 40px;
    }

    .index-page .logo-main {
      font-size: 10px;
      letter-spacing: 0.5px;
    }

    .index-page .title {
      top: 25%;
      padding: 0 15px;
    }

    .index-page .title h1 {
      font-size: clamp(2.2rem, 13vw, 3.5rem);
      letter-spacing: clamp(3px, 1.5vw, 8px);
      word-spacing: clamp(-3px, -0.5vw, -5px);
    }

    .index-page .title h3 {
      font-size: clamp(0.65rem, 2.8vw, 0.85rem);
      letter-spacing: clamp(2px, 1.2vw, 5px);
      margin-bottom: 8px;
    }

    .index-page .content p {
      font-size: 12px;
      width: 90%;
      line-height: 1.6;
      letter-spacing: 0.3px;
    }

    .index-page .info-wrap {
      bottom: 26%;
    }

    .index-page .cta {
      bottom: 12%;
    }

    .index-page .cta button {
      height: 45px;
      width: clamp(200px, 80vw, 260px);
      font-size: 13px;
      letter-spacing: 1.5px;
    }

    .index-page .slider i {
      font-size: 26px;
      padding: 0 4%;
    }

    .index-page .content img {
      min-width: 100vw;
      object-fit: cover;
    }
  }

  /* Extra small */
  @media (max-width: 360px) {
    .index-page .title {
      top: 25%;
      padding: 0 10px;
      position: fixed;
      transform: translateY(-50%);
    }

    .index-page .title h1 {
      font-size: clamp(2rem, 13vw, 3rem);
      letter-spacing: clamp(2px, 1vw, 5px);
      text-transform: uppercase;
      line-height: 1;
      margin: 0;
      padding: 0;
    }

    .index-page .title h3 {
      font-size: clamp(0.7rem, 2.8vw, 0.9rem);
      letter-spacing: clamp(2px, 1vw, 4px);
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .index-page .content p {
      font-size: 11px;
      width: 92%;
    }

    .index-page .cta button {
      height: 42px;
      width: clamp(180px, 85vw, 220px);
      font-size: 12px;
    }

    .index-page .logo-img {
      height: 38px;
    }

    .index-page .logo-main {
      font-size: 9px;
    }

    .index-page .info-wrap {
      bottom: 28%;
    }

    .index-page .cta {
      bottom: 13%;
    }
  }