  /* Main stylesheet for Crowned Crane Safaris custom site */

  /* Distinct style for auto-generated internal links */
  .internal-link {
    color: #e67e22 !important; /* bright orange */
    text-decoration: underline wavy #e67e22;
    font-weight: 600;
    transition: color 0.2s;
  }
  .internal-link:hover, .internal-link:focus {
    color: #d35400 !important;
    background: #fffbe6;
    text-decoration: underline solid #d35400;
  }


  /*
  * Responsive Utility Classes
  * =========================
  * .container-fluid: Full-width responsive container with horizontal padding
  * .img-fluid: Makes images/videos scale to parent width, maintaining aspect ratio
  */
  .container-fluid {
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto;
    padding-left: 2vw;
    padding-right: 2vw;
    box-sizing: border-box;
  }
  @media (max-width: 700px) {
    .container-fluid {
      padding-left: 1vw;
      padding-right: 1vw;
    }
  }
  .img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
  }


  /* Package Overview Section */
  .packages-overview {
      width: 100%;
      margin: 0;
      padding: 0;
  }

  /* Section Styles */
  section {
      width: 100%;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  .about-home-section,
  .accommodation-section,
  .blog-section,
  .client-testimonial,
  .contact-section,
  .gallery-section,
  .tours-and-travelers,
  .why-choose-us {
      width: 100%;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  /* Container Fluid Update */
  .container-fluid {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      padding-left: 2vw;
      padding-right: 2vw;
      box-sizing: border-box;
  }

  .packages-overview .section-title {
      text-align: center;
      padding: 0.5rem 0;
      font-size: 2.5rem;
      color: var(--primary-color);
  }

  .packages-overview .section-desc {
      text-align: center;
      padding: 0;
      margin: 0;
      font-size: 1.1rem;
      color: #666;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  @media (min-width: 768px) {
      .packages-overview .section-desc {
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
      }
  }

  .packages-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      padding: 0 0.25rem;
      width: 100%;
      margin: 0 auto;
      max-width: 750px;
  }

  .package-card {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      background: #fff;
      transition: transform 0.3s ease;
      min-height: 500px;
  }

  .package-card:hover {
      transform: translateY(-5px);
  }

  .package-card .package-img-banner {
      position: relative;
      overflow: hidden;
      border-radius: 10px 10px 0 0;
  }

  .package-card .package-img-banner img {
      width: 100%;
      height: auto;
      transition: transform 0.3s ease;
  }

  .package-card:hover .package-img-banner img {
      transform: scale(1.05);
  }

  .package-card .card-header {
      margin: 1rem 0;
  }

  .package-card .package-title {
      font-size: 1.5rem;
      color: var(--primary-color);
      margin: 0;
  }

  .package-card .package-subtitle {
      font-size: 1rem;
      color: #666;
      margin: 0.5rem 0 0;
  }

  .package-card .package-price-row {
      margin: 1rem 0;
  }

  .package-card .package-price {
      font-size: 1.8rem;
      color: var(--secondary-color);
      font-weight: bold;
  }

  .package-card .package-features {
      list-style: none;
      padding: 0;
      margin: 1rem 0;
  }

  .package-card .package-features li {
      margin-bottom: 0.5rem;
      padding-left: 2rem;
      position: relative;
  }

  .package-card .feature-icon {
      position: absolute;
      left: 0;
      top: 0;
      font-size: 1.2rem;
      color: var(--primary-color);
  }

  .package-card .book-btn-advanced {
      display: inline-block;
      padding: 1rem 2rem;
      background: var(--primary-color);
      color: white;
      text-decoration: none;
      border-radius: 5px;
      transition: background 0.3s ease;
  }

  .package-card .book-btn-advanced:hover {
      background: #c69b4d;
  }

  .package-card .contact-note {
      font-size: 0.9rem;
      color: #666;
      margin-top: 0.5rem;
  }

  /* Why Choose Us Section */
  .why-choose-us-section {
    background: #fffbe8;
    padding: 3.3rem 0 3.3rem 0;
    width: 100%;
  }
  .tours-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    max-width: 700px;
    padding-top: 1.2rem;
    padding-bottom: 0.7rem;
  }
  .why-choose-us-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3.5rem;
    padding: 0 2vw;
  }
  .why-choose-us-images {
    position: relative;
    min-width: 320px;
    max-width: 370px;
    flex: 0 0 370px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 340px;
  }
  .why-main-img {
    width: 68%;
    border-radius: 16px;
    border: 4px solid #fff;
    box-shadow: 0 6px 32px 0 #d9431e11, 0 2px 10px 0 #e4b36333;
    display: block;
    position: absolute;
    left: 0;
    top: 18px;
    z-index: 2;
    transition: box-shadow 0.22s, transform 0.22s;
  }
  .why-secondary-img {
    position: absolute;
    left: 44%;
    top: 0;
    width: 56%;
    min-width: 110px;
    border-radius: 14px;
    border: 3px solid #fff;
    box-shadow: 0 4px 18px 0 #e4b36344;
    background: #fff;
    z-index: 3;
    transition: box-shadow 0.22s, transform 0.22s;
  }
  .why-tertiary-img {
    position: absolute;
    left: 8%;
    top: 63%;
    width: 38%;
    min-width: 70px;
    border-radius: 10px;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px 0 #d9431e33;
    z-index: 4;
    transition: box-shadow 0.22s, transform 0.22s;
  }
  .why-quaternary-img {
    position: absolute;
    left: 62%;
    top: 58%;
    width: 32%;
    min-width: 54px;
    border-radius: 8px;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px 0 #4e752733;
    z-index: 5;
    transition: box-shadow 0.22s, transform 0.22s;
  }
  .why-choose-us-images img:hover {
    box-shadow: 0 8px 32px 0 #d9431e33, 0 4px 18px 0 #e4b36355;
    transform: translateY(-8px) scale(1.045);
  }

  .why-discover-btn {
    display: inline-block;
    margin: 1.1rem auto 1.1rem auto;
    padding: 0.7em 2.2em;
    font-size: 1.13rem;
    font-weight: 700;
    background: linear-gradient(90deg, #1ca03e 0%, #e4b363 100%);
    color: #fff !important;
    border: none;
    border-radius: 32px;
    box-shadow: 0 2px 8px 0 #1ca03e33;
    text-align: center;
    text-decoration: none !important;
    transition: background 0.18s, box-shadow 0.18s, color 0.18s;
    cursor: pointer;
    text-shadow: 0 1px 8px #2222, 0 1px 0 #fff8;
    letter-spacing: 0.04em;
    outline: none;
    min-width: 220px;
    max-width: 100%;
  }
  .why-discover-btn:hover, .why-discover-btn:focus {
    background: linear-gradient(90deg, #e4b363 0%, #1ca03e 100%);
    color: #fff !important;
    box-shadow: 0 4px 16px 0 #1ca03e44;
    outline: none;
    text-decoration: none;
  }

  .why-discover-btn:hover, .why-discover-btn:focus {
    background: linear-gradient(rgba(217,67,30,0.82), rgba(228,179,99,0.83)), url('/crownedcrane-custom/assets/images/footerbanner.webp') center center/cover no-repeat;
    color: #fff !important;
    box-shadow: 0 4px 16px 0 #e4b36344;
    outline: none;
    text-decoration: none;
  }
  .why-discover-btn .why-arrow {
    font-size: 1.21em;
    margin-left: 0.55em;
    vertical-align: middle;
    background: #fff;
    color: #d9431e;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px #e4b36344;
    font-weight: 900;
    transition: background 0.18s, color 0.18s, transform 0.18s;
  }
  .why-discover-btn:hover .why-arrow, .why-discover-btn:focus .why-arrow {
    background: #d9431e;
    color: #fff;
    transform: scale(1.12) translateX(4px);
  }
  @media (max-width: 600px) {
    .why-discover-btn {
      font-size: 1.01rem;
      padding: 0.6em 1.2em;
      margin: 0.7rem auto 0.7rem auto;
      width: 90vw;
      max-width: 98vw;
      border-radius: 22px;
    }
    .why-discover-btn .why-arrow {
      font-size: 1.02em;
      margin-left: 0.3em;
      width: 1.1em;
      height: 1.1em;
    }
  }

  .why-main-img {
    width: 100%;
    border-radius: 12px;
    border: 4px solid #fff;
    box-shadow: 0 6px 32px 0 #d9431e11, 0 2px 10px 0 #e4b36333;
    display: block;
  }
  .why-secondary-img {
    position: absolute;
    left: 60%;
    bottom: -36px;
    width: 55%;
    min-width: 120px;
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: 0 4px 18px 0 #e4b36344;
    background: #fff;
    z-index: 2;
  }
  .why-choose-us-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 300px;
    max-width: 540px;
    padding: 0 0.5rem;
  }
  .why-eyebrow {
    color: #d9431e;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.01rem;
    letter-spacing: 0.13em;
    margin-bottom: 0.7em;
    display: inline-block;
  }
  .why-title {
    font-size: 2.1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    color: #232323;
    margin: 0 0 0.6em 0;
    line-height: 1.18;
    text-align: left;
  }
  .why-desc {
    font-size: 1.09rem;
    color: #555;
    margin-bottom: 1.4em;
    line-height: 1.57;
    text-align: left;
  }
  .why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7em 1.8em;
    margin-bottom: 1.7em;
    width: 100%;
  }
  .why-feature {
    display: flex;
    align-items: center;
    font-size: 1.09rem;
    font-weight: 600;
    color: #222;
    gap: 0.7em;
    padding: 0.2em 0;
    letter-spacing: 0.01em;
  }
  .why-icon {
    font-size: 1.38em;
    margin-right: 0.09em;
    display: inline-flex;
    align-items: center;
  }
  @media (max-width: 900px) {
    .why-choose-us-container {
      flex-direction: column;
      align-items: center;
      gap: 2.2rem;
      padding: 0 2vw;
    }
    .why-choose-us-images {
      min-width: 220px;
      max-width: 320px;
      flex: 0 0 220px;
    }
    .why-main-img {
      border-radius: 10px;
    }
    .why-secondary-img {
      left: 50%;
      bottom: -26px;
      width: 60%;
      min-width: 80px;
      border-radius: 8px;
    }
    .why-choose-us-content {
      max-width: 98vw;
      min-width: 0;
      padding: 0 0.2rem;
    }
    .why-title { font-size: 1.4rem; }
  }
  @media (max-width: 600px) {
    .why-choose-us-section {
      padding: 1.2rem 0 1.2rem 0;
    }
    .why-choose-us-container {
      flex-direction: column;
      gap: 1.2rem;
      padding: 0 1vw;
    }
    .why-choose-us-images {
      min-width: 0;
      max-width: 97vw;
      flex: 0 0 97vw;
    }
    .why-main-img {
      border-radius: 7px;
      border-width: 2px;
    }
    .why-secondary-img {
      left: 54%;
      bottom: -14px;
      width: 52vw;
      min-width: 50px;
      border-radius: 6px;
      border-width: 2px;
    }
    .why-choose-us-content {
      max-width: 99vw;
      min-width: 0;
      padding: 0 0.1rem;
    }
    .why-title { font-size: 1.08rem; }
    .why-features-grid {
      grid-template-columns: 1fr;
      gap: 0.5em 0;
    }
  }


  /* --- About Us Home Section Styles --- */

  /* Animations & Interactivity */
  .animate-fade-in { opacity: 0; transform: translateY(32px); animation: fadeInUp 0.9s cubic-bezier(.4,.2,.2,1) forwards; }
  .animate-slide-up { opacity: 0; transform: translateY(48px) scale(0.98); animation: slideUpIn 1.2s cubic-bezier(.4,.2,.2,1) forwards; }
  .animate-stagger { animation-delay: var(--stagger-delay, 0s); }
  .parallax-bg { will-change: transform; transition: transform 0.5s cubic-bezier(.4,.2,.2,1); }

  @keyframes fadeInUp { 0% { opacity: 0; transform: translateY(32px); } 60% { opacity: 0.7; } 100% { opacity: 1; transform: translateY(0); } }
  @keyframes slideUpIn { 0% { opacity: 0; transform: translateY(48px) scale(0.98); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
  @keyframes shadowPulse { 0% { box-shadow: 0 4px 24px #e4b36333; } 50% { box-shadow: 0 8px 40px #1ca03e44; } 100% { box-shadow: 0 4px 24px #e4b36333; } }
  @keyframes glowPulse { 0%, 100% { filter: drop-shadow(0 0 0 #e4b36377); } 50% { filter: drop-shadow(0 0 12px #e4b363bb); } }
  @keyframes ripple { 0% { box-shadow: 0 0 0 0 #1ca03e44; } 100% { box-shadow: 0 0 0 14px rgba(28,160,62,0); } }
  @keyframes iconWiggle { 0%,100% { transform: rotate(0); } 20% { transform: rotate(-10deg); } 40% { transform: rotate(12deg); } 60% { transform: rotate(-6deg); } 80% { transform: rotate(4deg); } }

  .about-home-section { position: relative; overflow-x: clip; }
  .about-home-header .about-home-title { position: relative; z-index: 2; }
  .about-home-header .about-home-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 16px;
    background: url('/crownedcrane-custom/assets/images/brush-accent.svg') center/contain no-repeat;
    margin: 0.6em auto 0 auto;
    opacity: 0.28;
  }
  .about-home-header .about-home-intro { transition: color 0.25s; }

  .about-home-hero {
    overflow: visible;
    perspective: 1200px;
    min-height: 340px;
  }
  .about-hero-img.parallax-bg { transition: transform 0.5s cubic-bezier(.4,.2,.2,1); }

  .about-mission-vision-overlay {
    z-index: 2;
  }
  .about-mission-card, .about-vision-card {
    transition: box-shadow 0.22s, transform 0.22s, filter 0.22s;
  }
  .about-mission-card:hover, .about-vision-card:hover {
    box-shadow: 0 12px 44px 0 #1ca03e33, 0 2px 16px 0 #e4b36355;
    transform: translateY(-8px) scale(1.035);
    animation: shadowPulse 1.3s infinite;
    filter: drop-shadow(0 0 8px #e4b36377);
  }

  .about-stats-row .about-stat {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 1s cubic-bezier(.4,.2,.2,1) forwards;
    animation-delay: var(--stagger-delay, 0s);
  }
  .about-stat-number.countup {
    animation: glowPulse 1.6s infinite;
  }

  .about-experiences-grid .about-experience {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: slideUpIn 1.1s cubic-bezier(.4,.2,.2,1) forwards;
    animation-delay: var(--stagger-delay, 0s);
    position: relative;
    overflow: visible;
  }
  .about-experience:hover {
    box-shadow: 0 14px 48px 0 #e4b36355, 0 6px 28px 0 #1ca03e33;
    transform: translateY(-8px) scale(1.035);
    border-color: #e4b363;
    z-index: 4;
  }
  .about-exp-img-wrap {
    position: relative;
    z-index: 1;
  }
  .about-exp-img-wrap::before {
    content: '';
    display: block;
    position: absolute;
    left: -18px; top: -18px; width: 110%; height: 110%;
    background: url('/crownedcrane-custom/assets/images/brush-accent.svg') center/contain no-repeat;
    opacity: 0.11;
    pointer-events: none;
    z-index: 0;
    animation: fadeInUp 1.3s cubic-bezier(.4,.2,.2,1) both;
  }
  .about-exp-img {
    transition: transform 0.22s, box-shadow 0.22s, filter 0.22s;
  }
  .about-experience:hover .about-exp-img {
    transform: scale(1.055) rotate(-2deg);
    box-shadow: 0 16px 44px 0 #e4b36355, 0 6px 18px 0 #1ca03e33;
    filter: brightness(1.04) contrast(1.05);
  }
  .about-exp-btn {
    position: relative;
    overflow: hidden;
  }
  .about-exp-btn:active {
    animation: ripple 0.5s;
  }
  .about-exp-btn .about-exp-arrow {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.18s, color 0.18s;
  }
  .about-exp-btn:hover .about-exp-arrow, .about-exp-btn:focus .about-exp-arrow {
    animation: iconWiggle 0.7s;
  }

  /* Utility for JS-triggered animation */
  .js-animated { opacity: 1 !important; transform: none !important; }

  .about-home-section {
    background: url('/crownedcrane-custom/assets/images/about-elephant.jpg') center center/cover no-repeat #fffbe8;
    padding: 1.7rem 0 1.2rem 0;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .about-home-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.82);
    z-index: 2;
    pointer-events: none;
  }
  .about-home-section > * { 
    position: relative; 
    z-index: 3; 
    margin: 0 auto;
  }

  .about-home-header {
    max-width: 700px;
    margin: 0 auto 1.2rem auto;
    text-align: center;
  }
  .about-home-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #1ca03e;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px #e4b36333;
    margin: 0 auto;
  }
  .about-home-intro {
    font-size: 1.02rem;
    color: #222;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 0.2rem;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto;
  }

  .about-home-hero {
    position: relative;
    max-width: 950px;
    margin: 0 auto 0.9rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    flex-direction: column;
  }
  .about-hero-img {
    width: 100%;
    max-width: 700px;
    border-radius: 18px;
    box-shadow: 0 4px 28px 0 #1ca03e22, 0 1px 8px 0 #e4b36333;
    object-fit: cover;
    min-height: 110px;
    max-height: 180px;
    filter: brightness(0.985) contrast(1.01);
    margin: 0 auto;
  }
  .about-mission-vision-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0; top: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    gap: 1.2rem;
    pointer-events: none;
    z-index: 3;
  }
  .about-mission-card, .about-vision-card {
    background: #e4b363;
    color: #fff;
    box-shadow: 0 2px 12px #e4b36344;
    border-radius: 16px;
    padding: 1.5rem 1.3rem 1.2rem 1.3rem;
    min-width: 220px;
    max-width: 330px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    z-index: 4;
    transition: box-shadow 0.16s, transform 0.16s;
  }
  .about-mission-card h3, .about-vision-card h3, .about-mission-card p, .about-vision-card p {
    color: #fff;
  }
  .about-mission-card:hover, .about-vision-card:hover {
    box-shadow: 0 10px 32px 0 #e4b36355, 0 2px 12px 0 #1ca03e33;
    transform: translateY(-6px) scale(1.03);
  }
  .about-mission-card h3, .about-vision-card h3 {
    font-size: 0.89rem;
    margin-bottom: 0.13em;
    line-height: 1.05;
  }
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 0.5em;
    font-weight: 700;
  }
  .about-mission-card p, .about-vision-card p {
    font-size: 0.81rem;
    margin: 0.08em 0 0 0;
    line-height: 1.18;
  }
    font-size: 0.93rem;
    margin: 0.15em 0 0 0;
    line-height: 1.3;
  }
    font-size: 0.97rem;
    margin: 0.2em 0 0 0;

    font-size: 1.07rem;
    color: #222;
    margin: 0;
  }
  .about-mission-card:hover, .about-vision-card:hover {
    box-shadow: 0 10px 40px 0 #e4b36355, 0 2px 12px 0 #1ca03e33;
    transform: translateY(-4px) scale(1.025);
  }

  .about-stats-row {
    width: 100vw;
    max-width: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    background:
      url('/crownedcrane-custom/assets/images/BG1.png') repeat-x top,
      url('/crownedcrane-custom/assets/images/BG1.png') repeat-x bottom,
      #fffbe8; /* Safari premium light background */
    background-size: auto 38px, auto 38px, cover;
    background-position: top, bottom, center;
    min-height: 90px;
    position: relative;
    z-index: 3;
    border: none;
    text-align: center;
  }

  .about-stat {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0.8em 0.5vw 0.5em 0.5vw;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    min-width: 130px;
    margin: 0;
  }
  .about-stat-number {
    font-size: 2.8rem;
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 900;
    color: #111;
    margin-bottom: 0.08em;
    text-shadow: none;
    letter-spacing: 0.01em;
    line-height: 1.1;
  }
  .about-stat-label {
    font-size: 1.22rem;
    color: #fff;
    font-weight: 700;
    background: #1ca03e;
    padding: 0.32em 1.1em;
    border-radius: 20px;
    display: inline-block;
    text-align: center;
    margin-top: 0.4em;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 6px #1ca03e22;
  }

  .about-learnmore-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5em;
    margin-bottom: 0.8em;
  }
  .about-learnmore-btn {
    background: #1ca03e;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 700;
    padding: 0.85em 2.5em;
    border-radius: 26px;
    box-shadow: 0 2px 12px #e4b36344;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.15s, color 0.15s, box-shadow 0.18s;
    margin: 0 auto;
    display: inline-block;
    border: none;
    outline: none;
    cursor: pointer;
    min-width: 180px;
    max-width: 100vw;
    text-align: center;
  }
  .about-learnmore-btn:hover, .about-learnmore-btn:focus {
    background: #e4b363;
    color: #fff;
    box-shadow: 0 6px 24px #1ca03e33;
  }

  @media (max-width: 700px) {
    .about-learnmore-wrap {
      margin-top: 2em;
      margin-bottom: 1.2em;
      width: 100vw;
      padding: 0 2vw;
    }
    .about-learnmore-btn {
      width: 100%;
      min-width: 0;
      font-size: 1.08rem;
      padding: 0.85em 0.5em;
      border-radius: 20px;
      box-shadow: 0 2px 14px #e4b36344;
      margin: 0 auto;
      display: block;
    }
  }

  .about-experiences-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem 2.2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.2rem 0 0 0;
    justify-items: center;
    text-align: center;
  }
  .about-experience {
    display: flex;
    align-items: center;
    gap: 2.3rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 #e4b36322, 0 2px 8px 0 #1ca03e11;
    padding: 1.3em 2em;
    transition: box-shadow 0.18s, transform 0.18s;
  }

  /* --- Client Testimonial Section --- */
  .client-testimonial-section {
    background: #fffbe8;
    padding: 4.5rem 0 4.5rem 0;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .testimonial-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .testimonial-title {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 2rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 0.3em;
    letter-spacing: 0.01em;
  }
  .testimonial-slider {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 0.5em 0 0.5em 0;
    position: relative;
    min-height: 220px;
  }
  .testimonial-card {
    flex: 0 0 31%;
    max-width: 320px;
    min-width: 220px;
    box-sizing: border-box;
    background: #f9f7ef;
    border-radius: 12px;
    box-shadow: 0 2px 16px 0 #e4b36322, 0 1px 4px 0 #1ca03e11;
    padding: 2em 1.7em 1.2em 1.7em;
    margin: 0.8em 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: box-shadow 0.18s, transform 0.18s;
  }
    border: none;
  }
  .testimonial-card:hover {
    box-shadow: 0 10px 32px 0 #e4b36355, 0 2px 12px 0 #1ca03e33;
    transform: translateY(-6px) scale(1.03);
  }
  .testimonial-quote {
    font-size: 1.09rem;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #222;
    margin-bottom: 1.5em;
    font-style: italic;
    line-height: 1.6;
  }
  .testimonial-client-row {
    display: flex;
    align-items: center;
    gap: 0.7em;
    margin-top: 0.2em;
  }
  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px #e4b36333;
    border: 2px solid #fffbe8;
  }
  .testimonial-client-name {
    font-size: 1.02rem;
    font-weight: 700;
    color: #222;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 0.1em;
  }
  .testimonial-client-role {
    font-size: 0.97rem;
    color: #d9b363;
    font-family: 'Montserrat', Arial, sans-serif;
  }
  @media (max-width: 900px) {
    .testimonial-slider {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .testimonial-card {
      max-width: 98vw;
      min-width: 0;
      padding: 1.5em 1em 1.3em 1em;
    }
  }

  }
  .about-experience:nth-child(even) {
    flex-direction: row-reverse;
    background: #fffbe8;
  }
  .about-exp-img-wrap {
    flex: 0 0 160px;
    max-width: 180px;
    position: relative;
    margin: 0 0.5em;
  }
  .about-exp-img {
    width: 100%;
    border-radius: 14px 36px 14px 36px/36px 14px 36px 14px;
    box-shadow: 0 8px 32px 0 #1ca03e22, 0 2px 10px 0 #e4b36333;
    object-fit: cover;
    min-height: 130px;
    background: linear-gradient(120deg, #e4b36322 0%, #fffbe8 100%);
    border: 2.5px solid #fff;
    filter: brightness(0.98) contrast(1.02);
  }
  .about-exp-img-wrap::after {
    content: '';
    display: block;
    position: absolute;
    left: 8px; top: 8px; width: 96%; height: 96%;
    border-radius: 24px 48px 24px 48px/48px 24px 48px 24px;
    background: #e4b36333;
    z-index: 1;
    pointer-events: none;
  }
  .about-exp-content {
    flex: 1 1 0%;
    min-width: 180px;
  }
  .about-exp-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.28rem;
    font-weight: 700;
    color: #1ca03e;
    margin-bottom: 0.4em;
  }
  .about-exp-content p {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 1.1em;
    font-family: 'Montserrat', Arial, sans-serif;
  }
  .about-exp-btn {
    display: inline-block;
    padding: 0.6em 1.5em;
    font-size: 1.09rem;
    font-weight: 700;
    background: linear-gradient(90deg, #1ca03e 0%, #e4b363 100%);
    color: #fff !important;
    border-radius: 32px;
    box-shadow: 0 2px 8px 0 #1ca03e33;
    text-align: center;
    text-decoration: none !important;
    transition: background 0.18s, box-shadow 0.18s, color 0.18s;
    cursor: pointer;
    text-shadow: 0 1px 8px #2222, 0 1px 0 #fff8;
    letter-spacing: 0.04em;
    outline: none;
    min-width: 180px;
  }
  .about-exp-btn:hover, .about-exp-btn:focus {
    background: linear-gradient(90deg, #e4b363 0%, #1ca03e 100%);
    color: #fff !important;
    box-shadow: 0 4px 16px 0 #e4b36344;
    outline: none;
    text-decoration: none;
  }
  .about-exp-arrow {
    font-size: 1.2em;
    margin-left: 0.5em;
    color: #e4b363;
    vertical-align: middle;
    font-weight: 900;
    transition: color 0.18s, transform 0.18s;
  }
  .about-exp-btn:hover .about-exp-arrow, .about-exp-btn:focus .about-exp-arrow {
    color: #d9431e;
    transform: translateX(4px) scale(1.13);
  }

  .testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2em;
    margin: 1.2em 0 0.3em 0;
  }
  .testimonial-nav-btn {
    background: #fffbe8;
    color: #1ca03e;
    border: 2px solid #d9b363;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border 0.15s, box-shadow 0.15s;
    outline: none;
    box-shadow: 0 2px 8px #e4b36333;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .testimonial-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  .testimonial-nav-btn:hover:not(:disabled) {
    background: #1ca03e;
    color: #fff;
    border-color: #1ca03e;
  }

  @media (max-width: 1100px) {
    .about-home-hero { min-height: 220px; }
    .about-mission-vision-overlay { width: 96%; gap: 1.2rem; }
    .about-experiences-grid { grid-template-columns: 1fr; gap: 2.2rem 0; }
    .about-experience { flex-direction: column; align-items: flex-start; gap: 1.3rem; }
    .about-experience:nth-child(even) { flex-direction: column; }
  }
  @media (max-width: 700px) {
    .about-home-section { padding: 2.2rem 0 2.2rem 0; }
    .about-home-title { font-size: 1.45rem; }
    .about-home-header { padding: 0 1vw; }
    .about-home-intro { font-size: 1rem; }
    .about-home-hero { min-height: 120px; padding: 0 0.2em; }
    .about-hero-img { border-radius: 14px; }
    .about-mission-vision-overlay { position: static; transform: none; flex-direction: column; gap: 0.8rem; width: 100%; margin-top: -2.5em; }
    .about-mission-card, .about-vision-card { padding: 1.1rem 1rem 0.8rem 1rem; min-width: 0; max-width: 98vw; font-size: 0.99rem; }
    .about-stats-row {
      flex-direction: column;
      gap: 1.1rem;
      background-size: auto 22px, auto 22px;
      min-height: 0;
      padding: 22px 0 22px 0;
    }
    .about-stat-number { font-size: 1.7rem; }
    .about-stat-label { font-size: 0.93rem; }
    .about-experiences-grid { padding: 1.1rem 0 0 0; }
  }

  /* Modern & Advanced Package Card Styles */

  .gallery-section {
    background: #fffbe8;
    padding: 2.5rem 0 2.1rem 0;
    border-radius: 18px;
    box-shadow: 0 2px 16px #e4b36322;
    margin: 2.8rem auto 2.2rem auto;
    max-width: 1200px;
  }

  .gallery-marquee-outer {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 2.2rem auto 0 auto;
    max-width: 900px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 8px #e4b36322;
  }
  .gallery-marquee-inner {
    display: flex;
    gap: 2.5rem;
    animation: gallery-marquee-scroll 18s linear infinite;
    will-change: transform;
  }
  .gallery-marquee-card {
    min-width: 280px;
    max-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px #e4b36322;
    background: #fff;
    margin: 1.2rem 0;
    transition: transform 0.18s, box-shadow 0.18s;
  }
  .gallery-marquee-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.16s;
  }
  .gallery-marquee-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px #1ca03e22;
  }
  @keyframes gallery-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
  .gallery-marquee-outer:hover .gallery-marquee-inner {
    animation-play-state: paused;
  }
  @media (max-width: 900px) {
    .gallery-marquee-card {
      min-width: 180px;
      max-width: 220px;
    }
    .gallery-marquee-card img {
      height: 110px;
    }
  }

  .gallery-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 1.3rem auto;
    text-align: center;
  }
  .gallery-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 900;
    color: #1ca03e;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
  }
  .gallery-title-accent {
    color: #e4b363;
    border-bottom: 2.5px solid #e4b363;
    padding-bottom: 2px;
  }
  .gallery-section-desc {
    text-align: center;
    font-size: 1.13rem;
    color: #444;
    margin: 0 auto 1.7rem auto;
    max-width: 600px;
    line-height: 1.6;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.7rem;
    max-width: 1000px;
    margin: 0 auto 1.8rem auto;
    padding: 0 1rem;
    justify-items: center;
  }
  .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px #e4b36322;
    background: #fff;
    transition: transform 0.18s, box-shadow 0.18s;
  }
  .gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.16s;
  }
  .gallery-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px #1ca03e22;
  }
  .gallery-viewall-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5em;
    margin-bottom: 0.2em;
    text-align: center;
  }
  .gallery-viewall-btn {
    background: #1ca03e;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    padding: 0.7em 2.2em;
    border-radius: 26px;
    box-shadow: 0 1px 8px #e4b36333;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.15s, color 0.15s, box-shadow 0.18s;
    margin: 0 auto;
    display: inline-block;
    border: none;
    outline: none;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
  }
  .gallery-viewall-btn:hover, .gallery-viewall-btn:focus {
    background: #e4b363;
    color: #fff;
    box-shadow: 0 4px 18px #1ca03e22;
    text-decoration: none;
  }
  @media (max-width: 700px) {
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      gap: 1.1rem;
      padding: 0 0.5rem;
    }
    .gallery-item img {
      height: 120px;
    }
    .gallery-section {
      padding: 1.2rem 0 1rem 0;
      border-radius: 10px;
    }
    .gallery-title {
      font-size: 1.35rem;
    }
  }


  .packages-viewall-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.2em;
    margin-bottom: 1.2em;
    text-align: center;
  }


  .view-all-packages-btn {
    background: linear-gradient(90deg, #1ca03e 0%, #e4b363 100%);
    color: #fff;
    border-radius: 32px;
    font-size: 1.13rem;
    font-weight: 700;
    padding: 0.7em 2.2em;
    box-shadow: 0 2px 8px 0 #1ca03e33;
    text-align: center;
    text-decoration: none;
    transition: background 0.18s, box-shadow 0.18s, color 0.18s;
    cursor: pointer;
    letter-spacing: 0.04em;
    outline: none;
    min-width: 220px;
    max-width: 100%;
  }
  .view-all-packages-btn:hover, .view-all-packages-btn:focus {
    background: linear-gradient(90deg, #e4b363 0%, #1ca03e 100%);
    color: #fff;
    box-shadow: 0 4px 16px 0 #1ca03e44;
    outline: none;
    text-decoration: none;
  }
  @media (max-width: 600px) {
    .view-all-packages-btn {
      font-size: 1.01rem;
      padding: 0.6em 1.2em;
      margin: 0.7rem auto 0.7rem auto;
      width: 90vw;
      max-width: 98vw;
      border-radius: 22px;
    }
  }

  .package-link-img,
  .package-link-title,
  .package-link-price,
  .package-link-feature,
  .package-link-btn {
    text-decoration: none !important;
    color: inherit !important;
    outline: none;
    transition: color 0.16s, box-shadow 0.16s;
  }
  .package-link-img:focus, .package-link-title:focus, .package-link-price:focus, .package-link-feature:focus, .package-link-btn:focus {
    outline: 2px solid #e4b363;
    outline-offset: 2px;
    color: #d9431e !important;
  }
  .package-link-img:hover, .package-link-title:hover, .package-link-price:hover, .package-link-feature:hover, .package-link-btn:hover {
    color: #d9431e !important;
    text-decoration: none !important;
  }
  .package-img-banner {
    width: 100%;
    height: 170px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    position: relative;
    background: #f7ecd1;
    box-shadow: 0 2px 12px rgba(228,179,99,0.07);
  }
  .package-img-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
  }

  /* Animate best-choice ribbon */
  .best-choice-ribbon {
    animation: ribbonPulse 2.2s infinite alternate;
  }
  @keyframes ribbonPulse {
    0% { filter: brightness(1.1) drop-shadow(0 0 0 #e4b363); }
    100% { filter: brightness(1.3) drop-shadow(0 0 8px #e4b36377); }
  }

  /* Blog Section Styles */

  /* --- Unified Section Header Styles --- */
  .blog-header-center, .tours-header-center, .accommodation-header-center, .testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 1.3rem auto;
    text-align: center;
  }
  .blog-title {
    font-size: 2.35rem;
    font-weight: 900;
    color: #1ca03e;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.13;
    display: inline-block;
  }
  .blog-title-accent {
    color: #e4b363;
  }
  .blog-header-underline {
    width: 60px;
    height: 4px;
    background: #e4b363;
    border-radius: 3px;
    margin: 0.5em auto 0.9em auto;
  }
  @media (max-width: 700px) {
    .blog-title {
      font-size: 1.35rem;
    }
    .blog-header-underline {
      width: 36px;
      height: 3px;
      margin: 0.3em auto 0.7em auto;
    }
  }


  .blog-viewall-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.2em;
    margin-bottom: 0.2em;
    text-align: center;
  }
  .blog-viewall-btn {
    background: #1ca03e;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 800;
    padding: 0.7em 2.2em;
    border-radius: 26px;
    box-shadow: 0 1px 8px #e4b36333;
    text-decoration: none !important;
    letter-spacing: 0.02em;
    transition: background 0.15s, color 0.15s, box-shadow 0.18s;
    margin: 0 auto;
    display: inline-block;
    border: none;
    outline: none;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
  }
  .blog-viewall-btn:hover, .blog-viewall-btn:focus {
    background: #e4b363;
    color: #fff;
    box-shadow: 0 4px 18px #1ca03e22;
    text-decoration: none !important;
  }
  a.blog-viewall-btn:visited {
    color: #fff !important;
    text-decoration: none !important;
  }

  .blog-section {
    background: #fff;
    padding: 2.6rem 0 2.3rem 0;
    border-radius: 18px;
    box-shadow: 0 2px 16px #e4b36322;
    margin: 2.8rem auto 2.2rem auto;
    max-width: 1200px;
  }
  .blog-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 1.3rem auto;
    text-align: center;
  }
  .blog-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 900;
    color: #1ca03e;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
  }
  .blog-title-accent {
    color: #e4b363;
    border-bottom: 2.5px solid #e4b363;
    padding-bottom: 2px;
  }
  .blog-section-desc {
    text-align: center;
    font-size: 1.13rem;
    color: #444;
    margin: 0 auto 1.7rem auto;
    max-width: 600px;
    line-height: 1.6;
  }
  .blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1100px;
  }
  .blog-card {
    background: #fffbe8;
    border-radius: 14px;
    box-shadow: 0 2px 12px #e4b36322;
    overflow: hidden;
    max-width: 340px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.18s, transform 0.18s;
  }
  .blog-card:hover {
    box-shadow: 0 8px 32px #1ca03e22;
    transform: translateY(-8px) scale(1.035);
  }
  .blog-card-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f7ecd1;
  }
  .blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
    display: block;
  }
  .blog-card-content {
    padding: 1.3rem 1.1rem 1.2rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
  }
  .blog-card-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: #1ca03e;
    margin-bottom: 0.6em;
    font-family: 'Playfair Display', Georgia, serif;
  }
  .blog-card-excerpt {
    font-size: 1.01rem;
    color: #222;
    margin-bottom: 1.1em;
    flex: 1 1 0;
  }
  .blog-readmore-btn {
    background: #1ca03e;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.55em 1.4em;
    border-radius: 22px;
    box-shadow: 0 2px 8px #e4b36333;
    text-decoration: none !important;
    letter-spacing: 0.01em;
    transition: background 0.15s, color 0.15s, box-shadow 0.18s;
    margin-top: 0.7em;
    display: inline-block;
    border: none;
    outline: none;
    cursor: pointer;
  }
  .blog-readmore-btn:hover, .blog-readmore-btn:focus {
    background: #e4b363;
    color: #fff;
    box-shadow: 0 4px 18px #1ca03e22;
    text-decoration: none !important;
  }
  @media (max-width: 900px) {
    .blog-list {
      flex-direction: column;
      gap: 1.7rem;
      align-items: center;
    }
    .blog-card {
      max-width: 98vw;
      min-width: 0;
    }
    .blog-card-img-wrap {
      height: 120px;
    }
  }
  @media (max-width: 600px) {
    .blog-section {
      padding: 1.2rem 0 1.1rem 0;
      border-radius: 10px;
    }
    .blog-title {
      font-size: 1.3rem;
    }
    .blog-list {
      gap: 1.1rem;
    }
    .blog-card {
      max-width: 99vw;
      min-width: 0;
      border-radius: 7px;
    }
    .blog-card-img-wrap {
      height: 70vw;
      border-radius: 7px 7px 0 0;
    }
    .blog-card-img-wrap img {
      border-radius: 7px 7px 0 0;
    }
    .blog-card-content {
      padding: 0.7rem 0.6rem 0.7rem 0.6rem;
    }
    .blog-card-title {
      font-size: 1.05rem;
    }
    .blog-readmore-btn {
      font-size: 0.98rem;
      padding: 0.45em 1.1em;
      border-radius: 13px;
    }
  }

  /* Gallery Large Preview Floating Image */
  .gallery-large-preview {
    position: fixed;
    z-index: 9999;
    display: none;
    pointer-events: none;
    background: #fff;
    box-shadow: 0 12px 48px #1ca03e44, 0 4px 16px #e4b36355;
    border-radius: 18px;
    padding: 0.7rem;
    max-width: 720px;
    max-height: 520px;
    min-width: 340px;
    min-height: 220px;
    transition: opacity 0.18s, transform 0.18s;
    opacity: 0.99;
  }
  .gallery-large-preview img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    border-radius: 14px;
    display: block;
  }
  @media (max-width: 600px) {
    .gallery-large-preview {
      max-width: 99vw;
      max-height: 70vw;
      min-width: 60vw;
      min-height: 30vw;
      padding: 0.18rem;
    }
    .gallery-large-preview img {
      max-height: 65vw;
    }
  }

  .package-card.advanced {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #fffbe8 60%, #f7ecd1 100%);
    border-radius: 16px;
    box-shadow: 0 6px 28px 0 rgba(78,117,39,0.10), 0 2px 10px 0 rgba(228,179,99,0.12);
    overflow: hidden;
    transition: box-shadow 0.23s, transform 0.18s, background 0.25s;
    width: 270px;
    min-width: 270px;
    max-width: 270px;
    margin: 0.7rem 0.5rem;
    border: 1.5px solid #eee;
    position: relative;
    padding: 0 0 1.3em 0;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    animation: cardStaggerIn 0.7s cubic-bezier(.4,.2,.2,1) forwards;
  }
  .packages-list .package-card.advanced:nth-child(1) { animation-delay: 0.1s; }
  .packages-list .package-card.advanced:nth-child(2) { animation-delay: 0.25s; }
  .packages-list .package-card.advanced:nth-child(3) { animation-delay: 0.4s; }
  .packages-list .package-card.advanced:nth-child(4) { animation-delay: 0.55s; }
  @keyframes cardStaggerIn {
    0% { opacity: 0; transform: translateY(40px) scale(0.97); }
    70% { opacity: 0.7; }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }
  .package-card.advanced:hover {
    box-shadow: 0 0 0 4px #e4b36344, 0 12px 44px 0 #4e752766, 0 6px 18px 0 #e4b36366;
    transform: translateY(-10px) scale(1.06);
    border-color: #e4b363;
    background: linear-gradient(135deg, #fffbe8 10%, #e4b363 90%);
    z-index: 5;
  }

  .package-card.advanced.best-choice {
    background: linear-gradient(120deg, #4e7527 60%, #e4b363 100%);
    color: #fff;
    border: 2.5px solid #4e7527;
  }
  .package-card.advanced.best-choice .package-title,
  .package-card.advanced.best-choice .package-subtitle,
  .package-card.advanced.best-choice .package-features li,
  .package-card.advanced.best-choice .contact-note {
    color: #fff;
  }
  .package-card.advanced:hover {
    box-shadow: 0 16px 44px 0 rgba(78,117,39,0.18), 0 6px 18px 0 rgba(228,179,99,0.16);
    transform: translateY(-8px) scale(1.035);
    border-color: #e4b363;
    z-index: 5;
  }
  .card-header {
    padding: 1.4em 1.2em 0.5em 1.2em;
    text-align: center;
  }
  .package-title {
    font-size: 1.19rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    margin: 0 0 0.3em 0;
    letter-spacing: 0.01em;
  }
  .package-subtitle {
    font-size: 1.01rem;
    color: #888;
    margin: 0 0 0.7em 0;
    font-weight: 500;
  }
  .package-card.advanced.best-choice .package-subtitle { color: #fffbe8; }
  .package-price-row {
    text-align: center;
    margin-bottom: 0.7em;
  }
  .package-price.advanced-price {
    font-size: 2.1rem;
    font-weight: 800;
    color: #d9431e;
    font-family: 'Oswald', 'Montserrat', Arial, sans-serif;
    display: block;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #e4b363 0%, #fffbe8 100%);
    border-radius: 22px;
    padding: 0.45em 1.6em;
    box-shadow: 0 2px 10px 0 #e4b36333;
    text-align: center;
    width: fit-content;
    min-width: 160px;
    max-width: 90%;
    margin: 0.4em auto 0.2em auto;
  }

  .package-card.advanced.best-choice .package-price.advanced-price {
    color: #fffbe8;
    background: #1ca03e;
    border-radius: 10px;
    padding: 0.13em 0.7em;
  }
  .package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2em 0;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    padding-left: 1.2em;
    padding-right: 0;
    max-width: 95%;
  }

  .package-features li {
    font-size: 1.07rem;
    color: #444;
    padding: 0.5em 0;
    border-bottom: 1px solid #eee;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.6em;
    justify-content: flex-start;
    opacity: 0;
    animation: featureFadeIn 0.8s forwards;
  }

  .package-features li:nth-child(1) { animation-delay: 0.1s; }
  .package-features li:nth-child(2) { animation-delay: 0.2s; }
  .package-features li:nth-child(3) { animation-delay: 0.3s; }
  .package-features li:nth-child(4) { animation-delay: 0.4s; }
  .package-features li:nth-child(5) { animation-delay: 0.5s; }
  .package-features li:nth-child(6) { animation-delay: 0.6s; }
  @keyframes featureFadeIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .feature-icon {
    font-size: 1.22em;
    margin-right: 0.18em;
    display: inline-flex;
    align-items: center;
    animation: iconBounce 1.1s;
  }
  @keyframes iconBounce {
    0% { transform: scale(0.7); opacity: 0; }
    60% { transform: scale(1.18); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }

  .package-features li:last-child {
    border-bottom: none;
  }
  .package-card.advanced.best-choice .package-features li {
    color: #fffbe8;
    border-bottom: 1px solid #fffbe8aa;
  }
  .book-btn-advanced {
    display: block;
    margin: 1.2em auto 0 auto;
    background: linear-gradient(90deg, #e4b363 0%, #4e7527 100%);
    color: #222;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.07rem;
    border-radius: 32px;
    padding: 0.75em 2.2em;
    text-decoration: none;
    box-shadow: 0 2px 10px 0 rgba(228,179,99,0.12);
    transition: background 0.21s, color 0.21s, transform 0.16s, box-shadow 0.21s;
    outline: none;
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.03em;
    animation: btnAppear 1.1s;
  }
  .book-btn-advanced:hover, .book-btn-advanced:focus {
    background: linear-gradient(90deg, #d9431e 0%, #e4b363 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 4px 24px 0 #e4b36355, 0 2px 10px 0 #d9431e33;
    filter: drop-shadow(0 0 8px #e4b36377);
    animation: btnPulse 0.5s;
  }
  @keyframes btnAppear {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
  }
  @keyframes btnPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1.08); }
  }

  .book-btn-advanced:hover, .book-btn-advanced:focus {
    background: linear-gradient(90deg, #d9431e 0%, #e4b363 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.065);
    box-shadow: 0 4px 24px 0 #e4b36355, 0 2px 10px 0 #d9431e33;
    filter: drop-shadow(0 0 8px #e4b36377);
  }
  .contact-note {
    font-size: 0.89em;
    color: #888;
    text-align: center;
    margin: 1.1em 0 0 0;
  }
  .package-card.advanced.best-choice .contact-note {
    color: #fffbe8cc;
  }
  .best-choice-ribbon {
    position: absolute;
    top: 16px;
    right: -44px;
    background: #d9431e;
    color: #fff;
    font-weight: bold;
    font-size: 0.97rem;
    padding: 0.6em 2.4em;
    transform: rotate(38deg);
    z-index: 20;
    box-shadow: 0 2px 10px #d9431e44;
    letter-spacing: 0.06em;
  }
  @media (max-width: 900px) {
    .packages-list {
      flex-direction: column;
      align-items: center;
    }
    .package-card.advanced {
      max-width: 97vw;
      width: 97vw;
      min-width: 0;
      padding: 0 0 1.3em 0;
    }
  }
  @media (max-width: 600px) {
    .package-card.advanced {
      max-width: 100vw;
      width: 100vw;
      border-radius: 0;
    }
  }

  .package-card.modern {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 6px 28px 0 rgba(78,117,39,0.08), 0 2px 10px 0 rgba(228,179,99,0.10);
    overflow: hidden;
    transition: box-shadow 0.23s, transform 0.18s;
    max-width: 340px;
    margin: 0.5rem;
    border: 1.5px solid #f6f6f6;
  }
  .package-card.modern:hover {
    box-shadow: 0 16px 44px 0 rgba(78,117,39,0.20), 0 6px 18px 0 rgba(228,179,99,0.16);
    transform: translateY(-8px) scale(1.035);
    border-color: #e4b363;
    z-index: 4;
  }
  .card-img-wrap {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #f7ecd1;
  }
  .card-img-wrap img.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px 22px 0 0;
    display: block;
  }
  .package-badge.modern-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #e4b363;
    color: #4e7527;
    font-weight: bold;
    font-size: 1.01rem;
    padding: 0.45em 1.1em;
    border-radius: 16px;
    box-shadow: 0 2px 8px #e4b36333;
    letter-spacing: 0.04em;
    z-index: 10;
    border: 1.5px solid #fffbe8;
    opacity: 0.95;
  }
  .package-content {
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1.3rem 1.4rem 1.3rem;
    flex: 1 1 auto;
  }
  .package-title {
    font-size: 1.22rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    margin-bottom: 0.7em;
    color: #2b2b2b;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(228,179,99,0.08);
  }
  .package-meta {
    margin-bottom: 1.1em;
  }
  .package-price.modern-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: #4e7527;
    font-family: 'Oswald', 'Montserrat', Arial, sans-serif;
    display: inline-flex;
    align-items: flex-end;
    gap: 0.2em;
    background: #f7ecd1;
    padding: 0.18em 0.8em;
    border-radius: 12px;
    box-shadow: 0 1px 4px #e4b36322;
  }
  .book-btn-modern {
    display: inline-block;
    background: linear-gradient(90deg, #4e7527 0%, #e4b363 100%);
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.08rem;
    border-radius: 32px;
    padding: 0.7em 2.2em;
    margin-top: 0.7em;
    text-decoration: none;
    box-shadow: 0 2px 10px 0 rgba(228,179,99,0.12);
    transition: background 0.21s, color 0.21s, transform 0.16s, box-shadow 0.21s;
    outline: none;
    cursor: pointer;
  }
  .book-btn-modern:hover, .book-btn-modern:focus {
    background: linear-gradient(90deg, #d9431e 0%, #e4b363 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.065);
    box-shadow: 0 4px 24px 0 #e4b36355, 0 2px 10px 0 #d9431e33;
    filter: drop-shadow(0 0 8px #e4b36377);
  }
  @media (max-width: 900px) {
    .packages-list {
      flex-direction: column;
      align-items: center;
    }
    .package-card.modern {
      max-width: 98vw;
      width: 98vw;
      min-width: 0;
      padding: 0;
    }
    .card-img-wrap {
      height: 140px;
    }
    .package-content {
      padding: 1.1rem 0.7rem 1.2rem 0.7rem;
    }
    .package-title { font-size: 1.07rem; }
    .package-price.modern-price { font-size: 1.08rem; }
  }
  @media (max-width: 600px) {
    .package-card.modern {
      max-width: 100vw;
      width: 100vw;
      border-radius: 0;
    }
    .card-img-wrap img.package-img {
      border-radius: 0;
    }
  }

  :root {
    --primary: #4e7527;
    --secondary: #e4b363;
    --accent: #d9431e;
    --text: #222;
    --bg: #fff;
    --footer-bg: #222;
    --footer-text: #fff;
    --btn-radius: 4px;
    --font-main: 'Segoe UI', Arial, sans-serif;
  }

  html, body {
    height: 100%;
    box-sizing: border-box;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    padding-top: 4.2em;
  }


  .navbar {
    background: transparent !important;
    box-shadow: none !important;
    position: fixed;
    top: 2.25em;
    left: 0;
    width: 100vw;
    z-index: 2000;
    min-height: 58px;
    border-bottom: none;
    transition: background 0.25s, box-shadow 0.25s;
  }

  @media (max-width: 900px) {
    .navbar {
      top: 0;
      left: 0;
      width: 100vw;
      z-index: 2500;
    }
    body {
      padding-top: 62px;
    }
  }

  .navbar.navbar-scrolled {
    background: rgba(255,255,255,0.98) !important;
    box-shadow: 0 2px 18px 0 rgba(228,179,99,0.09) !important;
  }

  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 950px;
    margin: 0 auto;
    padding: 0.6rem 0.8rem 0.6rem 0.8rem;
    min-height: 58px;
  }

  .top-bar {
    width: 100%;
    background: linear-gradient(90deg, #fffbe8 0%, #f7ecd1 60%, #fffbe8 100%);
    padding: 0.22em 0 0.22em 0;
    font-size: 0.99em;
    color: #bfa156;
    letter-spacing: 0.02em;
    z-index: 3000;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0;
    box-shadow: 0 3px 22px 0 rgba(228,179,99,0.13);
    display: block;
    backdrop-filter: blur(3px) brightness(1.03);
  }

  @media (max-width: 900px) {
    .top-bar {
      display: none !important;
    }
    .has-dropdown > .dropdown {
      display: none !important;
      position: static !important;
      opacity: 1 !important;
      visibility: visible !important;
      box-shadow: none !important;
      background: #fffbe8;
      min-width: 100%;
      border-radius: 0;
      padding-left: 0.5em;
      padding-right: 0.5em;
      transform: none !important;
    }
    .has-dropdown.dropdown-open > .dropdown {
      display: block !important;
    }
    .nav-menu .dropdown .has-dropdown > .dropdown {
      left: 0;
      top: 100%;
      min-width: 100%;
      border-radius: 0;
      position: static !important;
      box-shadow: none !important;
      background: #f8f8f8;
      padding-left: 1.5em;
      padding-right: 0;
      transform: none !important;
    }
  }

  .top-bar-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1.15em;
    max-width: 1000px;
    margin: 0 auto;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    animation: topBarFadeIn 1.1s cubic-bezier(.4,.2,.2,1);
    min-height: 1.8em;
  }

  .top-bar-content::-webkit-scrollbar {
    display: none;
  }

  @keyframes topBarFadeIn {
    0% { opacity: 0; transform: translateY(-18px) scaleX(0.95); }
    70% { opacity: 0.7; }
    100% { opacity: 1; transform: translateY(0) scaleX(1); }
  }

  .top-bar svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.16em;
    margin-bottom: 1px;
    width: 1.08em;
    height: 1.08em;
    filter: drop-shadow(0 1px 2px #fffbe8);
    transition: filter 0.18s;
  }

  .top-bar-item a {
    color: #bfa156;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.18s, text-shadow 0.18s, text-decoration 0.17s;
    text-shadow: 0 1px 4px #fffbe8;
  }

  .top-bar-item a:hover,
  .top-bar-item a:focus {
    color: #e4b363;
    text-shadow: 0 2px 8px #f7ecd1;
    text-decoration: underline;
  }

  .top-bar-item a:hover svg,
  .top-bar-item a:focus svg {
    filter: drop-shadow(0 2px 6px #e4b363);
  }

  .logo {
    display: flex;
    align-items: flex-start;
    margin-right: 3.2rem;
  }

  .logo-img {
    height: 110px;
    width: auto;
    display: block;
    transition: height 0.2s;
  }

  @media (max-width: 900px) {
    .logo-img {
      height: 72px;
    }
    .nav-menu {
      gap: 1.3rem;
    }
    .nav-menu li a {
      font-size: 1.02rem;
      padding: 0.18em 0.3em;
    }
  }

  @media (max-width: 700px) {
    .navbar .container {
      flex-direction: row;
      align-items: center;
      padding: 0 0.5rem;
    }
    .logo-img {
      height: 52px;
    }
    .nav-toggle {
      display: block;
      margin-left: auto;
      font-size: 2rem;
      background: none;
      border: none;
      color: #e4b363;
      cursor: pointer;
      z-index: 210;
    }
    .nav-menu {
      display: none !important;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100vw;
      background: rgba(255,255,255,0.97);
      flex-direction: column;
      gap: 0;
      box-shadow: 0 8px 24px rgba(0,0,0,0.14);
      padding: 1.2rem 0 1.2rem 0;
      align-items: flex-start;
      transition: all 0.2s;
    }
    .nav-menu.open {
      display: flex !important;
    }
    .nav-menu > li {
      width: 100%;
      text-align: left;
    }
    .nav-menu li a {
      color: #222;
      font-size: 1.08rem;
      padding: 1.1em 2.2em;
      border-radius: 0;
      width: 100%;
      background: none;
      border-bottom: 1px solid #eee;
      transition: background 0.2s, color 0.2s;
    }
    .nav-menu li a:hover,
    .nav-menu li a.active {
      color: #e4b363;
      background: #222;
    }
    .has-dropdown .dropdown {
      position: static;
      min-width: 100%;
      box-shadow: none;
      margin: 0;
      background: #f8f8f8;
    }
    .dropdown li a {
      padding: 0.9em 2.8em;
      font-size: 1rem;
    }
  }

  @media (max-width: 400px) {
    .logo-img {
      height: 38px;
    }
    .nav-menu li a {
      font-size: 0.98rem;
      padding: 0.7em 1.1em;
    }
  }

  .nav-menu {
    list-style: none;
    display: flex;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    position: relative;
    justify-content: center;
    flex: 1;
  }

  .nav-menu > li {
    position: relative;
  }

  .nav-menu li a {
    color: #e4b363;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Inter', 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 0.83rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    line-height: 1;
    transition: color 0.18s;
    padding: 0.19em 0.3em;
    border-radius: 0;
    display: flex;
    align-items: center;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    white-space: nowrap;
    position: relative;
  }

  .nav-menu li a .nav-icon {
    margin-right: 0.37em;
    font-size: 1em;
    vertical-align: middle;
    transition: transform 0.18s;
    width: 1em;
    height: 1em;
    display: inline-block;
    color: #e4b363;
    fill: #e4b363;
  }

  .nav-menu li a .nav-icon {
    margin-right: 0.5em;
    font-size: 1.1em;
    vertical-align: middle;
    transition: transform 0.18s;
  }

  .nav-menu li a:hover .nav-icon,
  .nav-menu li a:focus .nav-icon {
    transform: scale(1.18) translateY(-2px);
  }

  .nav-menu li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #e4b363;
    transition: width 0.22s;
    position: absolute;
    left: 0;
    bottom: -4px;
  }

  .nav-menu li a:hover::after,
  .nav-menu li a:focus::after {
    width: 100%;
  }

  .nav-menu li a .caret {
    margin-left: 0.25em;
    font-size: 0.85em;
    color: #e4b363;
    vertical-align: middle;
    display: inline-block;
  }

  .nav-menu li.has-dropdown:hover > a .caret,
  .nav-menu li.has-dropdown:focus-within > a .caret {
    color: #222;
  }

  .nav-menu li a:hover,
  .nav-menu li a.active {
    color: #222;
    background: none !important;
    text-shadow: none;
  }

  /* Dropdown styles */
  .has-dropdown .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 270px;
    background: linear-gradient(135deg, #fffbe8 70%, #f8f6ef 100%);
    color: #222;
    box-shadow: 0 12px 36px 0 rgba(44, 44, 44, 0.19), 0 2px 8px 0 rgba(228,179,99,0.13);
    padding: 1em 0.3em 1em 0.3em;
    z-index: 1000;
    border-radius: 14px;
    margin-top: 0.5em;
    pointer-events: auto;
    border-top: 3px solid #e4b363;
    transition: opacity 0.28s cubic-bezier(.4,.2,.2,1), transform 0.28s cubic-bezier(.4,.2,.2,1), visibility 0.28s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(22px) scale(0.97);
    list-style: none;
  }

  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown,
  .has-dropdown .dropdown:hover,
  .has-dropdown .dropdown:focus,
  .has-dropdown.dropdown-open .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown,
  .has-dropdown .dropdown:hover,
  .has-dropdown .dropdown:focus {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown,
  .has-dropdown .dropdown:hover,
  .has-dropdown .dropdown:focus {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    display: block;
  }

  .nav-menu .dropdown .has-dropdown > .dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 230px;
    border-radius: 0 12px 12px 0;
    z-index: 2300;
    opacity: 0;
    visibility: hidden;
    display: block;
    transition: opacity 0.22s, visibility 0.22s, transform 0.22s;
    transform: translateX(-16px);
  }
  .nav-menu .dropdown .has-dropdown:hover > .dropdown,
  .nav-menu .dropdown .has-dropdown:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .dropdown li {
    width: 100%;
  }

  .dropdown li a {
    color: #222;
    background: none;
    font-weight: 500;
    font-size: 1em;
    padding: 0.65em 1.2em;
    border-radius: 0;
    text-transform: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    display: block;
    list-style: none;
  }

  .dropdown li a:hover,
  .dropdown li a.active {
    background: #e4b363;
    color: #222;
    text-shadow: none;
  }

  .dropdown li a:focus {
    background: #f7ecd1;
    color: #bfa156;
    outline: 2px solid #e4b363;
    outline-offset: -2px;
  }

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hamburger {
    width: 24px;
    height: 3px;
    background: #111;
    display: block;
    position: relative;
  }

  .hamburger::before, .hamburger::after {
    background: #111;
  }


  .hamburger::before, .hamburger::after {
    content: '';
    width: 24px;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: 0.3s;
  }

  .hamburger::before {
    top: -8px;
  }

  .hamburger::after {
    top: 8px;
  }

  .hero {
    position: relative;
    width: 100%;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #fff;
    overflow: hidden;
  .packages-overview {
    background: linear-gradient(120deg, #f7ecd1 0%, #fffbe8 100%);
    padding: 2.5rem 0 2.5rem 0;
    overflow-x: auto;
  }

  /* The grid layout below is now obsolete since we only have one card, but keeping for future multi-card support. */
  .packages-list.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 0.5rem;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .package-card.advanced {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  @media (max-width: 900px) {
    .packages-list.advanced-grid {
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.2rem;
      padding: 0 0.5rem;
    }
    .package-card.advanced {
      max-width: 98vw;
    }
  }

  @media (max-width: 600px) {
    .packages-list.advanced-grid {
      grid-template-columns: 1fr;
      gap: 0.5rem;
      padding: 0 0.2rem;
    }
    .package-card.advanced {
      width: 92vw;
      min-width: 92vw;
      max-width: 92vw;
      padding: 0.38rem 0.1rem 0.6rem 0.1rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px 0 rgba(78,117,39,0.07), 0 1px 4px 0 rgba(228,179,99,0.08);
    }
    .package-img-banner {
      width: 92vw;
      height: 120px;
      border-radius: 8px 8px 0 0;
    }
    .package-img-banner img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 8px 8px 0 0;
      display: block;
    }
    .card-header {
      padding: 0.16rem 0 0.16rem 0;
    }
    .package-title {
      font-size: 0.97rem;
      margin-bottom: 0.11rem;
    }
    .package-subtitle {
      font-size: 0.80rem;
      margin-bottom: 0.09rem;
    }
    .package-price-row {
      margin: 0.13rem 0 0.18rem 0;
    }
    .package-price.advanced-price {
      font-size: 0.95rem;
      padding: 0.08em 0.32em;
    }
    .package-features {
      padding: 0.13rem 0 0.13rem 0.7rem;
    }
    .package-features li {
      font-size: 0.85rem;
      margin-bottom: 0.08rem;
      gap: 0.13em;
    }
    .feature-icon {
      font-size: 0.98em;
      margin-right: 0.13em;
    }
    .book-btn-advanced {
      font-size: 0.96rem;
      padding: 0.38em 0.8em;
      border-radius: 6px;
      margin-top: 0.18em;
    }
    .contact-note {
      font-size: 0.73rem;
      margin-top: 0.11em;
    }
  }

  @media (max-width: 600px) {
    .packages-list {
      max-width: 98vw;
      padding: 0 2vw;
    }
    .package-card.advanced {
      max-width: 98vw;
      min-width: unset;
      width: 100%;
    }
  }

    @media (max-width: 1200px) {
      .packages-list {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
      }
    }
    @media (max-width: 800px) {
      .packages-list {
        grid-template-columns: 1fr;
      }
    }
  }

  .hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
  }

  .hero-video {
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
    pointer-events: none;
    background: #222;
  }
  .section-desc.center-text {
    max-width: 750px;
    width: 90vw;
    margin: 0 auto 1.6em auto;
    text-align: center;
    font-size: 1.13rem;
    color: #222;
    line-height: 1.6;
  }
  @media (max-width: 700px) {
    .section-desc.center-text {
      max-width: 98vw;
      width: 98vw;
      font-size: 1.01rem;
    }
  }
    background: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url('/crownedcrane-custom/assets/images/footerbanner.webp') center center/cover no-repeat;
    border-radius: 22px;
    box-shadow: 0 2px 10px 0 rgba(228,179,99,0.09);
    padding: 1.3rem 1.2rem;
    margin-bottom: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto 1.3rem auto;
    width: 100%;
    max-width: 700px;
    font-size: 1.15rem;
  }

  .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(20,20,20,0.48);
    z-index: 2;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    margin-left: 7vw;
    padding: 3.5rem 0 3.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-title {
    font-size: 3.2rem;
    font-family: 'Oswald', 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 0.7rem;
    color: #fff;
    text-shadow: 0 4px 32px rgba(0,0,0,0.28), 0 1px 0 #e4b363;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 3;
    text-align: left;
    animation: heroFadeIn 1.1s cubic-bezier(.4,.2,.2,1) 0.1s both;
  }
  .hero-title .brand {
    color: #f7ecd1;
    font-family: 'Montserrat', 'Oswald', Arial, sans-serif;
    letter-spacing: 0.03em;
    font-weight: 900;
    text-shadow: 0 6px 32px rgba(228,179,99,0.16);
  }
  .hero-underline {
    width: 78px;
    height: 5px;
    background: linear-gradient(90deg, #e4b363 0%, #d9431e 100%);
    border-radius: 4px;
    margin: 0.2em 0 1.2em 0;
    box-shadow: 0 2px 10px #e4b36355;
    animation: heroUnderlineIn 1.2s cubic-bezier(.4,.2,.2,1) 0.5s both;
  }
  @keyframes heroUnderlineIn {
    0% { width: 0; opacity: 0; }
    80% { opacity: 1; }
    100% { width: 78px; opacity: 1; }
  }
  @keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.96); }
    70% { opacity: 0.7; }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }
  .hero-sub {
    font-size: 1.25rem;
    margin-bottom: 2.3rem;
    line-height: 1.5;
    color: #fffbe8;
    text-shadow: 0 2px 18px rgba(0,0,0,0.19);
    animation: heroFadeIn 1.2s cubic-bezier(.4,.2,.2,1) 0.25s both;
  }
  @media (max-width: 900px) {
    .hero-title { font-size: 2.1rem; text-align: center; }
    .hero-underline { margin-left: auto; margin-right: auto; }
    .hero-sub { font-size: 1.05rem; text-align: center; }
  }
  @media (max-width: 700px) {
    .hero-title { font-size: 1.2rem; }
    .hero-underline { height: 4px; width: 48px; }
  }

  .hero-content p {
    font-size: 1.18rem;
    margin-bottom: 2.3rem;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0,0,0,0.14);
  }
  .hero-buttons {
    display: flex;
    gap: 1.1rem;
    margin-top: 0.2em;
    animation: heroFadeIn 1.25s cubic-bezier(.4,.2,.2,1) 0.7s both;
  }
  .btn-hero {
    font-size: 1.13rem;
    border-radius: 32px;
    padding: 0.85em 2.2em 0.85em 2.7em;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    box-shadow: 0 4px 18px 0 rgba(228,179,99,0.08), 0 2px 10px 0 rgba(217,67,30,0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.23s, color 0.23s, transform 0.18s, box-shadow 0.23s;
    outline: none;
  }
  .btn-hero .btn-icon {
    position: absolute;
    left: 1.2em;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    transition: transform 0.18s;
  }
  .btn-hero:hover, .btn-hero:focus {
    transform: translateY(-2px) scale(1.035);
    box-shadow: 0 6px 24px 0 rgba(228,179,99,0.18), 0 2px 12px 0 rgba(217,67,30,0.10);
  }
  .btn-hero:hover .btn-icon, .btn-hero:focus .btn-icon {
    transform: translateY(-50%) scale(1.18) rotate(-8deg);
  }
  .btn-primary.btn-hero {
    background: linear-gradient(90deg, #4e7527 0%, #e4b363 100%);
    color: #fff;
  }
  .btn-primary.btn-hero:hover, .btn-primary.btn-hero:focus {
    background: linear-gradient(90deg, #d9431e 0%, #e4b363 100%);
    color: #fff;
  }
  .btn-secondary.btn-hero {
    background: linear-gradient(90deg, #fffbe8 0%, #f7ecd1 100%);
    color: #d9431e;
    border: 2px solid #e4b363;
  }
  .btn-secondary.btn-hero:hover, .btn-secondary.btn-hero:focus {
    background: linear-gradient(90deg, #e4b363 0%, #fffbe8 100%);
    color: #4e7527;
    border-color: #d9431e;
  }
  @media (max-width: 900px) {
    .hero-buttons { flex-direction: column; gap: 0.7rem; width: 100%; align-items: center; }
    .btn-hero { width: 100%; padding-left: 2.7em; font-size: 1.01rem; }
  }

  @media (max-width: 900px) {
    .hero-content {
      margin-left: 3vw;
      padding: 2.2rem 0 2.2rem 0;
      max-width: 96vw;
    }
    .hero-content h1 {
      font-size: 2.1rem;
    }
  }
  @media (max-width: 700px) {
    .hero {
      min-height: 320px;
      align-items: flex-end;
    }
    .hero-content {
      margin-left: 0;
      padding: 1.2rem 1.2rem 2.2rem 1.2rem;
      max-width: 100vw;
      align-items: center;
      text-align: center;
    }
    .hero-content h1 {
      font-size: 1.2rem;
    }
    .hero-content p {
      font-size: 1rem;
    }
    .hero-buttons {
      flex-direction: column;
      gap: 0.7rem;
      width: 100%;
    }
    .hero-video {
      min-height: 320px;
    }
  }
  .hero-image {
    flex: 1 1 300px;
    text-align: center;
  }
  .hero-image img {
    max-width: 350px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  }

  .nav-menu li a .breadcrumbs {
    margin: 1.5em 0 1em 0;
    font-size: 0.94em;
    color: #bfa156;
    text-align: center;
  }
  .breadcrumbs ol {
    display: inline-block;
    padding: 0;
    margin: 0;
    background: none;
    list-style: none;
  }
  .breadcrumbs li {
    display: inline;
    font-weight: 500;
  }
  .breadcrumbs li+li:before {
    content: '›';
    color: #e4b363;
    padding: 0 0.4em;
  }
  .breadcrumbs a {
    color: #e4b363;
    text-decoration: none;
  }
  .breadcrumbs a:hover, .breadcrumbs a:focus {
    text-decoration: underline;
    outline: none;
  }

  .has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(180deg, #f7ecd1 0%, #f7ecd1 100%);
    border-radius: 7px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 0.7em 0;
    border-top: 3px solid #e4b363;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    transform: translateY(-10px);
  }
  .has-dropdown .dropdown li a {
    color: #222;
    padding: 0.55em 1.7em 0.55em 1.3em;
    font-size: 1.01em;
    font-weight: 500;
    text-align: left;
    background: none;
    border-radius: 7px;
    border-left: 3px solid transparent;
    transition: background 0.18s, color 0.18s, outline 0.12s, border-color 0.18s;
    outline: none;
    margin-bottom: 0.15em;
  }
  .has-dropdown .dropdown li a:focus,
  .has-dropdown .dropdown li a:hover {
    background: #f7ecd1;
    color: #bfa156;
    border-left: 3px solid #e4b363;
    outline: none;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .btn {
    display: inline-block;
    padding: 0.7em 1.5em;
    font-size: 1rem;
    border-radius: var(--btn-radius);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    border: none;
    cursor: pointer;
  }
  .btn-primary {
    background: var(--primary);
    color: #fff;
  }
  .btn-primary:hover {
    background: var(--accent);
  }
  .btn-secondary {
    background: var(--secondary);
    color: var(--text);
  }
  .btn-secondary:hover {
    background: var(--primary);
    color: #fff;
  }
  .btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }
  .btn-outline:hover {
    background: var(--primary);
    color: #fff;
  }

  .packages-overview {
    background: #f6f6f6;
    padding: 2rem 1rem;
  }
  .packages-overview h2 {
    text-align: center;
    margin-bottom: 1rem;
  }
  .packages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .package-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(40, 60, 60, 0.13), 0 1.5px 4px 0 rgba(40, 60, 60, 0.06);
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(.44,1.2,.57,1), box-shadow 0.28s cubic-bezier(.44,1.2,.57,1);
    display: flex;
    flex-direction: column;
    min-width: 260px;
    max-width: 340px;
  }
  .package-card:not(:last-child) {
    margin-bottom: 2.2em;
  }

  .card-img-wrap {
    position: absolute;
    top: 1.1em;
    right: 1.1em;
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50%;
    padding: 0.36em 0.4em 0.3em 0.4em;
    cursor: pointer;
    box-shadow: 0 2px 8px #e4b36333;
    transition: background 0.16s, transform 0.16s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .package-card .fav-btn svg {
    display: block;
  }
  .package-card .fav-btn svg path {
    stroke: #d9431e;
    fill: none;
    transition: fill 0.2s, stroke 0.2s;
  }
  .package-card .fav-btn:hover svg path,
  .package-card .fav-btn.active svg path {
    fill: #e4b363;
    stroke: #fff;
  }
  .package-card .package-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 0.9em 0.9em 0 0;
    margin-bottom: 1.3em;
    position: relative;
    box-shadow: 0 4px 18px 0 rgba(228,179,99,0.08);
  }
  .card-img-wrap img.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    display: block;
  }
  .package-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #1ca03e;
    top: 1.1em;
    left: 1.1em;
    background: linear-gradient(90deg,#4e7527 60%,#e4b363 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.3em 0.9em;
    border-radius: 1em;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px #4e752744;
    z-index: 8;
  }
  .hot-choice .hot-ribbon, .package-card .badge-featured {
    animation: badgePulse 2.2s infinite alternate;
  }
  @keyframes badgePulse {
    0% { filter: brightness(1.1) drop-shadow(0 0 0 #e4b363); }
    100% { filter: brightness(1.3) drop-shadow(0 0 8px #e4b36377); }
  }
  .package-card .package-price {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1bbd5a;
    margin-bottom: 0.2em;
    font-family: 'Oswald', 'Montserrat', Arial, sans-serif;
    display: flex;
    align-items: flex-end;
    gap: 0.1em;
    transition: color 0.22s;
  }
  .package-card:hover .package-price {
    color: #4e7527;
  }
  .package-card .package-per {
    font-size: 0.98rem;
    color: #e4b363;
    margin-bottom: 1em;
  }
  .package-card .package-features {
    text-align: left;
    font-size: 1.01rem;
    color: #222;
    margin-bottom: 1.3em;
    padding-left: 1.1em;
    list-style: disc;
  }
  .package-card .package-features li {
    margin-bottom: 0.4em;
    transition: color 0.2s;
  }
  .package-card:hover .package-features li {
    color: #4e7527;
  }
  .package-card .btn-book {
    background: linear-gradient(90deg, #4e7527 0%, #e4b363 100%);
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.07rem;
    border-radius: 32px;
    padding: 0.7em 2em 0.7em 2.7em;
    margin-top: 0.7em;
    margin-bottom: 0.6em;
    box-shadow: 0 2px 10px 0 rgba(228,179,99,0.11);
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.21s, color 0.21s, transform 0.16s, box-shadow 0.21s;
    outline: none;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
  }
  .package-card .btn-book:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(228,179,99,0.18);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0;
    z-index: 0;
  }
  .package-card .btn-book:hover:after,
  .package-card .btn-book:focus:after {
    width: 220%;
    height: 220%;
    opacity: 1;
  }
  .package-card .btn-book:hover, .package-card .btn-book:focus {
    background: linear-gradient(90deg, #d9431e 0%, #e4b363 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.065);
    box-shadow: 0 4px 24px 0 #e4b36355, 0 2px 10px 0 #d9431e33;
    filter: drop-shadow(0 0 8px #e4b36377);
  }
  @media (max-width: 900px) {
    .testimonial-card {
      flex: 0 0 100%;
      max-width: 100%;
      min-width: 0;
    }
    .testimonial-slider {
      justify-content: center;
    }
    .testimonial-card {
      flex: 0 0 calc(33.33% - 1.5rem);
      max-width: calc(33.33% - 1.5rem);
    }
  }
  @media (max-width: 700px) {
    .testimonial-card {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
  @media (max-width: 900px) {
    .package-card {
      max-width: 420px;
      width: 96vw;
      min-width: 0;
      padding: 1.9em 1.1em 1.3em 1.1em;
    }
    .package-card .package-img { height: 110px; }
    .package-card h3 { font-size: 1.18rem; }
    .package-features { font-size: 0.98rem; }
    .package-price { font-size: 1.5rem; }
  }

  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(32px) scale(0.98); }
    60% { opacity: 0.7; }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }
  .package-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 14px 48px 0 rgba(228,179,99,0.23), 0 6px 28px 0 rgba(217,67,30,0.16);
    border-color: #e4b363;
    z-index: 3;
  }
  .package-card .package-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 0.9em 0.9em 0 0;
    margin-bottom: 1.3em;
    position: relative;
    box-shadow: 0 4px 18px 0 rgba(228,179,99,0.08);
  }
  .package-card .package-img::after {
    content: '';
    display: block;
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    border-radius: 0.9em 0.9em 0 0;
    background: linear-gradient(180deg,rgba(255,251,232,0.12) 0%,rgba(228,179,99,0.08) 100%);
    pointer-events: none;
  }
  .package-card h3 {
    font-size: 1.42rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    margin-bottom: 0.8em;
    color: #2b2b2b;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(228,179,99,0.08);
  }
  .package-card p {
    flex: 1;
  }
  .welcome-section {
    padding: 2rem 1rem;
    max-width: 900px;
    margin: 0 auto;
  }
  .welcome-section h2 {
    text-align: center;
  }
  .mission-vision {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .mission, .vision {
    flex: 1 1 300px;
    background: #f6f6f6;
    padding: 1.2rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .highlights-section {
    background: #fffbe7;
    padding: 2rem 1rem;
  }
  .highlights-section h2 {
    text-align: center;
  }
  .highlights-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
  }
  .highlights-list li {
    background: var(--secondary);
    color: var(--text);
    padding: 0.7em 1.4em;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }

  .site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
  }
  .footer-section {
    flex: 1 1 200px;
    min-width: 180px;
  }
  .footer-section h4 {
    color: var(--secondary);
    margin-top: 0;
  }
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-section ul li {
    margin-bottom: 0.6em;
  }
  .footer-section ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-section ul li a:hover {
    color: var(--secondary);
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    color: #bbb;
    font-size: 0.95em;
  }

  @media (max-width: 900px) {
    .packages-list {
      flex-direction: column;
      align-items: center;
    }
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
  }
  @media (max-width: 700px) {
    .navbar .container {
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-menu {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
      display: none;
      background: var(--primary);
      position: absolute;
      left: 0;
      top: 56px;
      z-index: 100;
      padding: 1rem 0;
    }
    .nav-menu.open {
      display: flex;
    }
    .nav-toggle {
      display: block;
      margin-left: auto;
    }
    .hero {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
    .hero-image {
      margin-top: 1.5rem;
      text-align: left;
    }
    .mission-vision {
      flex-direction: column;
      gap: 1rem;
    }
  }
  nav.navbar.navbar-scrolled,
  .navbar.navbar-scrolled {
    background: rgba(255,255,255,0.98) !important;
    box-shadow: 0 2px 18px 0 rgba(228,179,99,0.09) !important;
    transition: background 0.25s, box-shadow 0.25s;
  }

  .hamburger,
  .hamburger::before,
  .hamburger::after {
    background: #111 !important;
  }