    :root {
      --primary-color: #1E40AF;
      --primary-dark: #1E3A8A;
      --secondary-color: #374151;
      --accent-color: #F59E0B;
      --accent-light: #FCD34D;
      --success-color: #059669;
      --warning-color: #DC2626;
      --dark-color: #111827;
      --light-color: #F9FAFB;
      --text-color: #1F2937;
      --text-secondary: #6B7280;
      --border-color: #D1D5DB;
      --gradient-primary: linear-gradient(135deg, #1E40AF 0%, #3730A3 100%);
      --gradient-secondary: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
      --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

      /* Design system variables - keeping everything consistent */
      --font-size-xs: 0.75rem;
      --font-size-sm: 0.875rem;
      --font-size-base: 0.95rem;
      --font-size-lg: 1.125rem;
      --font-size-xl: 1.25rem;
      --font-size-2xl: 1.5rem;
      --font-size-3xl: 1.875rem;
      --font-size-4xl: 2.25rem;

      --line-height-tight: 1.25;
      --line-height-snug: 1.375;
      --line-height-normal: 1.5;
      --line-height-relaxed: 1.625;

      --spacing-xs: 0.5rem;
      --spacing-sm: 0.75rem;
      --spacing-md: 1rem;
      --spacing-lg: 1.5rem;
      --spacing-xl: 2rem;
      --spacing-2xl: 3rem;
      --spacing-3xl: 4rem;
    }

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

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: var(--font-size-base);
      line-height: var(--line-height-normal);
      color: var(--text-color);
      overflow-x: hidden;
      background-color: #FFFFFF;
      font-weight: 400;
      letter-spacing: -0.01em;
    }

    /* Main navigation - clean and accessible design */
    .navbar {
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      padding: 0.75rem 0;
      border-bottom: 1px solid #e5e7eb;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .navbar-brand {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 1.25rem;
      color: #111827 !important;
      text-decoration: none;
      letter-spacing: -0.02em;
      display: flex;
      align-items: center;
      margin: 0;
      flex-shrink: 0;
    }

    .navbar-brand i {
      color: #F59E0B;
      margin-right: 0.5rem;
    }

    .navbar-collapse {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex: 1;
    }

    .navbar-nav {
      display: flex;
      align-items: center;
      margin: 0;
      padding: 0;
      list-style: none;
      gap: 0.5rem;
    }

    .nav-item {
      display: flex;
      align-items: center;
    }

    .nav-link {
      font-weight: 500;
      color: #374151 !important;
      transition: all 0.2s ease;
      position: relative;
      padding: 0.5rem 0.75rem !important;
      font-size: var(--font-size-sm);
      letter-spacing: -0.01em;
      display: flex;
      align-items: center;
      height: 100%;
      white-space: nowrap;
    }

    .nav-link:hover {
      color: #F59E0B !important;
      background: transparent;
    }

    .nav-link.active {
      color: #F59E0B !important;
      font-weight: 600;
    }

    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -0.75rem;
      left: 50%;
      transform: translateX(-50%);
      width: 16px;
      height: 2px;
      background: #F59E0B;
      border-radius: 1px;
    }

    .contact-info {
      margin-left: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      align-items: flex-start;
    }

    /* Hide mobile contact info on larger screens to avoid duplication */
    .mobile-contact {
      display: none;
    }

    .nav-contact {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      color: #6B7280;
      padding: 0.25rem 0;
      white-space: nowrap;
    }

    .nav-contact i {
      font-size: 0.7rem;
      color: #F59E0B;
      flex-shrink: 0;
    }

    .nav-contact a {
      color: #6B7280;
      text-decoration: none;
      transition: color 0.2s ease;
      display: flex;
      align-items: center;
    }

    .nav-contact a:hover {
      color: #F59E0B;
    }

    .navbar-toggler {
      border: none;
      padding: 0.25rem 0.5rem;
      display: none;
    }

    /* Mobile navigation - touch-friendly and easy to use */
    @media (max-width: 768px) {
      .navbar {
        padding: 0.75rem 0;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(229, 231, 235, 0.8);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      }

      .navbar .container {
        padding: 0 1rem;
      }

      .navbar-brand {
        font-size: 1.125rem;
        font-weight: 700;
        color: #111827 !important;
      }

      .navbar-brand i {
        font-size: 1.25rem;
        margin-right: 0.375rem;
      }

      .navbar-toggler {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        padding: 0;
        position: relative;
        z-index: 1001;
      }

      .navbar-toggler:hover {
        border-color: #F59E0B;
        background: rgba(245, 158, 11, 0.1);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
      }

      .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
        outline: none;
      }

      .navbar-toggler[aria-expanded="true"] {
        background: #F59E0B;
        border-color: #F59E0B;
      }

      .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M24 6L6 24'/%3e%3c/svg%3e");
      }

      .navbar-toggler-icon {
        width: 20px;
        height: 20px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2831, 41, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: all 0.3s ease;
      }

      .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(229, 231, 235, 0.8);
        border-bottom: 1px solid rgba(229, 231, 235, 0.8);
        margin-top: 0.5rem;
        padding: 1rem 0;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        z-index: 1000;
        animation: slideDown 0.3s ease-out;
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
        padding: 0 1rem;
      }

      .nav-item {
        width: 100%;
        margin: 0;
      }

      .nav-link {
        padding: 1rem 1.25rem !important;
        font-size: 1rem;
        font-weight: 500;
        width: 100%;
        border-radius: 8px;
        margin: 0.25rem 0;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #374151 !important;
        border: none;
        background: transparent;
      }

      .nav-link::after {
        content: '›';
        font-size: 1.25rem;
        color: #9ca3af;
        transition: all 0.3s ease;
      }

      .nav-link:hover {
        background: rgba(245, 158, 11, 0.08);
        color: #F59E0B !important;
        transform: translateX(4px);
      }

      .nav-link:hover::after {
        color: #F59E0B;
        transform: translateX(4px);
      }

      .nav-link.active {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
        color: #F59E0B !important;
        font-weight: 600;
        border-left: 3px solid #F59E0B;
        border-radius: 0;
      }

      .nav-link.active::after {
        color: #F59E0B;
      }

      .contact-info {
        display: none;
      }

      /* Mobile contact info - styled differently for better mobile UX */
      .mobile-contact {
        display: block;
        padding: 1rem 1.25rem;
        margin: 0.5rem 1rem;
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(30, 64, 175, 0.02) 100%);
        border-radius: 8px;
        border: 1px solid rgba(30, 64, 175, 0.1);
      }

      .mobile-contact .nav-contact {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.875rem;
        color: #1E40AF;
        text-decoration: none;
        font-weight: 500;
      }

      .mobile-contact .nav-contact i {
        color: #1E40AF;
        font-size: 1rem;
      }

      .mobile-contact .nav-contact a {
        color: #1E40AF;
        text-decoration: none;
        font-weight: 500;
      }
    }

    /* Extra small mobile devices - squeezing every pixel */
    @media (max-width: 480px) {
      .navbar {
        padding: 0.5rem 0;
      }

      .navbar-brand {
        font-size: 1rem;
      }

      .navbar-brand i {
        font-size: 1.125rem;
        margin-right: 0.25rem;
      }

      .navbar-toggler {
        width: 40px;
        height: 40px;
      }

      .navbar-toggler-icon {
        width: 18px;
        height: 18px;
      }

      .nav-link {
        padding: 0.875rem 1rem !important;
        font-size: 0.9375rem;
      }

      .mobile-contact {
        padding: 0.875rem 1rem;
        margin: 0.25rem 1rem;
      }

      .mobile-contact .nav-contact {
        font-size: 0.8125rem;
      }
    }

    /* Hero carousel - showcasing our best destinations */
    .hero-section {
      height: 100vh;
      width: 100vw;
      position: relative;
      overflow: hidden;
      margin-top: 80px;
      /* Account for fixed navigation bar */
    }

    .carousel {
      height: 100%;
      width: 100%;
    }

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

    .carousel-item {
      height: 100vh;
      width: 100vw;
    }

    .hero-slide {
      height: 100vh;
      width: 100vw;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      color: white;
      position: relative;
      padding: 0 5%;
      min-height: 100vh;
      min-width: 100vw;
      box-sizing: border-box;
    }

    /* Make sure carousel images load smoothly */
    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* Mobile hero adjustments - making it work on small screens */
    @media (max-width: 768px) {

      .hero-section,
      .carousel,
      .carousel-inner,
      .carousel-item,
      .hero-slide {
        height: 100vh;
        width: 100vw;
        min-height: 500px;
        min-width: 100vw;
        touch-action: pan-y pinch-zoom;
        cursor: pointer;
      }

      /* Touch navigation areas */
      .hero-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        z-index: 5;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }

      .hero-slide::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        z-index: 5;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }

      /* Visual feedback for touch areas */
      .hero-slide.touching::before {
        background-color: rgba(255, 255, 255, 0.1);
      }

      .hero-slide.touching::after {
        background-color: rgba(255, 255, 255, 0.1);
      }

      /* Swipe indicator */
      .swipe-indicator {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.8);
        font-size: 12px;
        text-align: center;
        z-index: 10;
        pointer-events: none;
        animation: fadeInOut 3s ease-in-out infinite;
        display: block;
      }

      @keyframes fadeInOut {

        0%,
        100% {
          opacity: 0.3;
        }

        50% {
          opacity: 1;
        }
      }

      .hero-content {
        padding: 0 var(--spacing-md);
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 10;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        text-align: center;
      }

      .hero-content p {
        font-size: var(--font-size-xs);
        line-height: 1.4;
        margin-bottom: var(--spacing-md);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .btn-hero {
        padding: 0.75rem 1.25rem;
        font-size: var(--font-size-xs);
        width: auto;
        min-width: 140px;
        margin: 0 auto;
        display: block;
      }

      /* Mobile carousel controls - hidden on mobile for touch navigation */
      .carousel-control-prev,
      .carousel-control-next {
        display: none !important;
      }

      .carousel-control-prev {
        left: 15px;
      }

      .carousel-control-next {
        right: 15px;
      }

      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        width: 20px;
        height: 20px;
        background-size: 100% 100%;
        filter: brightness(0) invert(1);
      }

      .carousel-control-prev:hover,
      .carousel-control-next:hover {
        background: rgba(0, 0, 0, 0.8);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-50%) scale(1.1);
      }

      /* Mobile progress bar - hidden on mobile for touch navigation */
      .carousel-progress {
        display: none !important;
      }

      /* Mobile carousel indicators - hidden on mobile for touch navigation */
      .carousel-indicators {
        display: none !important;
      }
    }

    /* Hide swipe indicator on larger screens */
    @media (min-width: 769px) {
      .swipe-indicator {
        display: none !important;
      }
    }

    /* Tablet hero adjustments - medium screen optimizations */
    @media (min-width: 769px) and (max-width: 1024px) {
      .hero-content h1 {
        font-size: 2.25rem;
      }

      .hero-content p {
        font-size: var(--font-size-base);
      }

      .btn-hero {
        padding: 1rem 2rem;
        font-size: var(--font-size-base);
      }

      /* Tablet carousel controls - better positioning */
      .carousel-control-prev,
      .carousel-control-next {
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid rgba(255, 255, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
      }

      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        width: 24px;
        height: 24px;
        background-size: 100% 100%;
        filter: brightness(0) invert(1);
      }

      .carousel-control-prev:hover,
      .carousel-control-next:hover {
        background: rgba(0, 0, 0, 0.8);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-50%) scale(1.1);
      }
    }

    /* Small mobile optimizations - every pixel counts */
    @media (max-width: 480px) {

      /* Small mobile hero - compact but effective */
      .hero-section {
        min-height: 450px;
      }

      .hero-content {
        padding: 0 var(--spacing-sm);
        margin: 0 auto;
        max-width: 100%;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      .hero-content h1 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-xs);
        line-height: 1.1;
        width: 100%;
      }

      .hero-content p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-sm);
        line-height: 1.3;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        width: 100%;
      }

      .btn-hero {
        padding: 0.625rem 1rem;
        font-size: var(--font-size-xs);
        min-width: 120px;
        margin: 0 auto;
      }

      .carousel-control-prev,
      .carousel-control-next {
        width: 35px;
        height: 35px;
        left: 8px;
        right: 8px;
      }

      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        width: 16px;
        height: 16px;
      }

      .carousel-progress {
        bottom: 10px;
        width: 85%;
        max-width: 200px;
      }

      .carousel-indicators {
        bottom: 10px;
        gap: 3px;
      }

      .carousel-indicators button {
        width: 20px;
        height: 2px;
      }

      /* Navigation adjustments for small mobile - keeping it usable */
      .navbar-brand {
        font-size: 1.1rem;
      }

      .nav-link {
        padding: 0.625rem 0.75rem !important;
        font-size: 0.8rem;
      }

      /* Small mobile grid improvements - better layout */
      .tour-categories {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 160px);
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-xs);
      }

      .about-three-column {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-xs);
      }

      .tour-packages-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
      }

      .tour-package-card {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        min-height: 180px;
      }

      .view-all-tours-card {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        margin-top: var(--spacing-sm);
      }

      .news-feed-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
      }

      .featured-article,
      .news-article {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        min-height: 180px;
      }

      .features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-xs);
      }



      /* Small mobile container improvements - better spacing */
      .container-fluid {
        padding-left: var(--spacing-xs);
        padding-right: var(--spacing-xs);
      }

      .section {
        padding: var(--spacing-lg) 0;
      }
    }

    /* Landscape mobile optimizations - horizontal screen adjustments */
    @media (max-width: 768px) and (orientation: landscape) {
      .hero-section {
        height: 100vh;
        min-height: 350px;
      }

      /* Show images in news section for mobile landscape - better visual appeal */
      .news-feed-section .featured-image {
        display: block !important;
        width: 100%;
        height: 160px;
        overflow: hidden;
      }

      .news-feed-section .featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .news-feed-section .article-background {
        display: block !important;
        width: 100%;
        height: 140px;
        overflow: hidden;
      }

      .news-feed-section .article-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .news-feed-section .featured-article {
        position: relative;
      }

      .news-feed-section .news-article {
        position: relative;
      }

      .news-feed-section .featured-content {
        position: relative;
        padding: var(--spacing-sm);
        background: white;
        color: var(--text-color);
      }

      .news-feed-section .article-content {
        position: relative;
        padding: var(--spacing-sm);
        background: white;
        color: var(--text-color);
      }

      .news-feed-section .month-label {
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.2rem 0.4rem;
        font-size: var(--font-size-xs);
        border-radius: 4px;
        z-index: 3;
      }

      .hero-content {
        padding: 0 var(--spacing-sm);
        margin: 0 auto;
        max-width: 100%;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      .hero-content h1 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-xs);
        line-height: 1.1;
        width: 100%;
      }

      .hero-content p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
        line-height: 1.2;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        width: 100%;
      }

      .btn-hero {
        padding: 0.5rem 1rem;
        font-size: var(--font-size-xs);
        min-width: 100px;
      }

      /* Landscape carousel controls - adjusted positioning */
      .carousel-control-prev,
      .carousel-control-next {
        width: 40px;
        height: 40px;
      }

      .carousel-control-prev {
        left: 10px;
      }

      .carousel-control-next {
        right: 10px;
      }

      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        width: 16px;
        height: 16px;
      }

      /* Landscape progress bar - keeping it visible */
      .carousel-progress {
        bottom: 10px;
        width: 80%;
        max-width: 200px;
      }

      .carousel-indicators {
        bottom: 10px;
        gap: 3px;
      }

      .carousel-indicators button {
        width: 20px;
        height: 2px;
      }
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.35) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
      text-align: center;
      animation: slideInLeft 1s ease-out;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .hero-badge {
      display: inline-block;
      background: var(--gradient-accent);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 50%;
      border: none;
      top: 50%;
      transform: translateY(-50%);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: all 0.2s ease;
      opacity: 0.9;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Carousel controls responsive - adapting to different screen sizes */
    @media (max-width: 768px) {

      .carousel-control-prev,
      .carousel-control-next {
        width: 40px;
        height: 40px;
      }

      .carousel-control-prev {
        left: 10px;
      }

      .carousel-control-next {
        right: 10px;
      }

      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        width: 16px;
        height: 16px;
      }
    }

    @media (max-width: 480px) {

      .carousel-control-prev,
      .carousel-control-next {
        width: 35px;
        height: 35px;
      }

      .carousel-control-prev {
        left: 8px;
      }

      .carousel-control-next {
        right: 8px;
      }

      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        width: 14px;
        height: 14px;
      }
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background: white;
      transform: translateY(-50%) scale(1.05);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      opacity: 1;
    }

    .carousel-control-prev {
      left: 24px;
    }

    .carousel-control-next {
      right: 24px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width: 16px;
      height: 16px;
      filter: invert(1);
      opacity: 0.7;
    }

    .carousel-control-prev:hover .carousel-control-prev-icon,
    .carousel-control-next:hover .carousel-control-next-icon {
      opacity: 1;
    }

    .carousel-indicators {
      bottom: 32px;
      gap: 6px;
    }

    .carousel-indicators button {
      width: 32px;
      height: 3px;
      border-radius: 2px;
      background: rgba(255, 255, 255, 0.4);
      border: none;
      margin: 0;
      transition: all 0.2s ease;
      position: relative;
      overflow: hidden;
    }

    /* Carousel indicators responsive - mobile-friendly navigation */
    @media (max-width: 768px) {
      .carousel-indicators {
        bottom: 20px;
        gap: 4px;
      }

      .carousel-indicators button {
        width: 24px;
        height: 2px;
      }
    }

    @media (max-width: 480px) {
      .carousel-indicators {
        bottom: 15px;
        gap: 3px;
      }

      .carousel-indicators button {
        width: 20px;
        height: 2px;
      }
    }

    .carousel-indicators button::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: #F59E0B;
      transition: width 0.3s ease;
    }

    .carousel-indicators button.active {
      background: rgba(255, 255, 255, 0.7);
    }

    .carousel-indicators button.active::before {
      width: 100%;
    }

    .carousel-indicators button:hover {
      background: rgba(255, 255, 255, 0.6);
      transform: scaleY(1.2);
    }

    /* Carousel progress bar - showing slide progress */
    .carousel-progress {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: rgba(255, 255, 255, 0.15);
      z-index: 10;
    }

    .carousel-progress .progress-bar {
      height: 100%;
      background: linear-gradient(90deg, #1E40AF 0%, #F59E0B 100%);
      width: 0%;
      transition: width 0.1s linear;
      box-shadow: 0 0 10px rgba(30, 64, 175, 0.5);
    }

    /* Touch-friendly enhancements - better mobile interaction */
    .carousel-control-prev,
    .carousel-control-next {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      user-select: none;
    }

    /* Comprehensive responsive design - covering all screen sizes */

    /* Large tablets and small desktops - medium-large screen optimizations */
    @media (max-width: 1200px) {

      /* Large tablet bento grid - centered and responsive layout */
      .tour-categories {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(6, 180px);
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-lg);
      }

      .tour-category-card:nth-child(1) {
        grid-column: 1 / 5;
        grid-row: 1 / 3;
      }

      .tour-category-card:nth-child(2) {
        grid-column: 5 / 9;
        grid-row: 1 / 2;
      }

      .tour-category-card:nth-child(3) {
        grid-column: 5 / 9;
        grid-row: 2 / 4;
      }

      .tour-category-card:nth-child(4) {
        grid-column: 1 / 5;
        grid-row: 3 / 5;
      }

      .tour-category-card:nth-child(5) {
        grid-column: 5 / 9;
        grid-row: 4 / 6;
      }

      .tour-category-card:nth-child(6) {
        grid-column: 1 / 5;
        grid-row: 5 / 6;
      }

      .tour-category-card:nth-child(7) {
        grid-column: 1 / 5;
        grid-row: 6 / 7;
      }

      .tour-category-card:nth-child(8) {
        grid-column: 5 / 9;
        grid-row: 6 / 7;
      }

      /* Large tablet grid improvements - better spacing and layout */
      .about-three-column {
        display: grid;
        grid-template-columns: 1.2fr 1fr 0.8fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-lg);
      }

      .tour-packages-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 0.75rem;
      }

      .tour-package-card:nth-child(1) {
        grid-column: 1 / 5;
        grid-row: 1 / 3;
      }

      .tour-package-card:nth-child(2) {
        grid-column: 5 / 9;
        grid-row: 1 / 2;
      }

      .tour-package-card:nth-child(3) {
        grid-column: 5 / 9;
        grid-row: 2 / 4;
      }

      .tour-package-card:nth-child(4) {
        grid-column: 1 / 5;
        grid-row: 3 / 5;
      }

      .tour-package-card:nth-child(5) {
        grid-column: 5 / 9;
        grid-row: 4 / 6;
      }

      .tour-package-card:nth-child(6) {
        grid-column: 1 / 5;
        grid-row: 5 / 6;
      }

      .view-all-tours-card {
        grid-column: 1 / 9;
        grid-row: 6 / 7;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-lg);
      }

      .news-feed-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 0.75rem;
      }

      .featured-article {
        grid-column: 1 / 5;
        grid-row: 1 / 3;
      }

      .news-article:nth-child(2) {
        grid-column: 5 / 9;
        grid-row: 1 / 2;
      }

      .news-article:nth-child(3) {
        grid-column: 5 / 9;
        grid-row: 2 / 4;
      }

      .news-article:nth-child(4) {
        grid-column: 1 / 5;
        grid-row: 3 / 5;
      }
    }

    /* Tablets - medium screen optimizations */
    @media (max-width: 991px) {
      .hero-content h1 {
        font-size: 2rem;
      }

      .hero-content p {
        font-size: var(--font-size-base);
      }



      /* Tablet bento grid - improved responsive layout */
      .tour-categories {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(8, 160px);
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-md);
      }

      .tour-category-card:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
      }

      .tour-category-card:nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1 / 2;
      }

      .tour-category-card:nth-child(3) {
        grid-column: 1 / 4;
        grid-row: 3 / 5;
      }

      .tour-category-card:nth-child(4) {
        grid-column: 4 / 7;
        grid-row: 2 / 4;
      }

      .tour-category-card:nth-child(5) {
        grid-column: 1 / 4;
        grid-row: 5 / 6;
      }

      .tour-category-card:nth-child(6) {
        grid-column: 4 / 7;
        grid-row: 4 / 6;
      }

      .tour-category-card:nth-child(7) {
        grid-column: 1 / 4;
        grid-row: 6 / 8;
      }

      .tour-category-card:nth-child(8) {
        grid-column: 4 / 7;
        grid-row: 6 / 8;
      }

      /* Tablet grid improvements - better mobile layout */
      .about-three-column {
        display: grid;
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-md);
      }

      .about-left-column,
      .about-right-column {
        padding: var(--spacing-xl);
      }

      .about-center-column {
        min-height: 400px;
      }

      .tour-packages-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.75rem;
      }

      .tour-package-card:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
      }

      .tour-package-card:nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1 / 2;
      }

      .tour-package-card:nth-child(3) {
        grid-column: 1 / 4;
        grid-row: 3 / 5;
      }

      .tour-package-card:nth-child(4) {
        grid-column: 4 / 7;
        grid-row: 2 / 4;
      }

      .tour-package-card:nth-child(5) {
        grid-column: 1 / 4;
        grid-row: 5 / 6;
      }

      .tour-package-card:nth-child(6) {
        grid-column: 4 / 7;
        grid-row: 4 / 6;
      }

      .view-all-tours-card {
        grid-column: 1 / 7;
        grid-row: 6 / 7;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px;
      }

      .news-feed-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.75rem;
      }

      .featured-article {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
      }

      .news-article:nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1 / 2;
      }

      .news-article:nth-child(3) {
        grid-column: 1 / 4;
        grid-row: 3 / 5;
      }

      .news-article:nth-child(4) {
        grid-column: 4 / 7;
        grid-row: 2 / 4;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-md);
      }

      .news-feed-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-md);
      }

      .news-articles {
        grid-template-columns: repeat(2, 1fr);
      }

      /* Testimonials responsive - adapting to different screen sizes */
      .testimonials-three-column {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .testimonials-left-column,
      .testimonials-right-column {
        padding: var(--spacing-xl);
      }

      .testimonials-right-column {
        min-height: 400px;
      }

      .testimonial-content h2 {
        font-size: var(--font-size-xl);
      }

      .testimonial-content .brand-highlight {
        font-size: var(--font-size-2xl);
      }

      .testimonial-content p {
        font-size: var(--font-size-sm);
      }

      .testimonial-card {
        padding: var(--spacing-md);
      }

      .testimonial-headline {
        font-size: var(--font-size-lg);
      }

      .testimonial-text {
        font-size: var(--font-size-sm);
      }

      .testimonial-author {
        font-size: var(--font-size-sm);
      }

      .testimonial-date {
        font-size: var(--font-size-xs);
      }
    }

    /* Mobile devices - small screen optimizations */
    @media (max-width: 768px) {
      .carousel {
        touch-action: pan-y pinch-zoom;
      }

      .carousel-control-prev,
      .carousel-control-next {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
      }

      /* Improve touch targets - making buttons easier to tap */
      .btn-hero,
      .btn-cta,
      .btn-view-all-tours,
      .package-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /* Optimize images for mobile - faster loading */
      img {
        max-width: 100%;
        height: auto;
      }

      /* Improve text readability - better contrast and spacing */
      .hero-content h1,
      .section-title h2,
      .package-overlay h3,
      .featured-content h3 {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      }

      /* Better spacing for mobile - more breathing room */
      .section {
        padding: var(--spacing-xl) 0;
      }

      .container-fluid {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
      }

      .hero-content h1 {
        font-size: 1.75rem;
        text-align: center;
      }

      .hero-content p {
        font-size: var(--font-size-sm);
        text-align: center;
      }

      .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
      }

      .btn-hero {
        width: 100%;
        max-width: 250px;
        text-align: center;
      }



      /* Mobile bento grid - centered and responsive layout */
      .tour-categories {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 180px);
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-sm);
      }

      .tour-category-card:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
      }

      .tour-category-card:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
      }

      .tour-category-card:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
      }

      .tour-category-card:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
      }

      .tour-category-card:nth-child(5) {
        grid-column: 1 / 2;
        grid-row: 5 / 6;
      }

      .tour-category-card:nth-child(6) {
        grid-column: 1 / 2;
        grid-row: 6 / 7;
      }

      .tour-category-card:nth-child(7) {
        grid-column: 1 / 2;
        grid-row: 7 / 8;
      }

      .tour-category-card:nth-child(8) {
        grid-column: 1 / 2;
        grid-row: 8 / 9;
      }

      .about-left-column,
      .about-right-column {
        padding: var(--spacing-lg);
      }

      .about-center-column {
        min-height: 300px;
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .news-articles {
        grid-template-columns: 1fr;
        gap: 1rem;
      }



      /* Testimonials Mobile Responsive */
      .testimonials-left-column,
      .testimonials-right-column {
        padding: var(--spacing-lg);
      }

      .testimonials-right-column {
        min-height: 300px;
      }

      .testimonial-content h2 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-md);
      }

      .testimonial-content .brand-highlight {
        font-size: var(--font-size-xl);
      }

      .testimonial-content p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-lg);
      }

      .testimonial-card {
        padding: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
      }

      .testimonial-headline {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
      }

      .testimonial-text {
        font-size: var(--font-size-xs);
        line-height: 1.4;
        margin-bottom: var(--spacing-sm);
      }

      .testimonial-author {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
      }

      .testimonial-date {
        font-size: var(--font-size-xs);
      }

      .carousel-controls {
        margin: var(--spacing-md) 0;
      }

      .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: var(--font-size-xs);
      }

      .view-more-btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-xs);
      }

      .form-container {
        padding: var(--spacing-lg);
      }

      .tour-form .row {
        flex-direction: column;
      }

      .tour-form .col-md-3,
      .tour-form .col-md-4 {
        width: 100%;
        margin-bottom: 1rem;
      }
    }

    /* Small Mobile Devices */
    @media (max-width: 576px) {
      .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
      }

      .hero-content p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-md);
      }

      .btn-hero {
        padding: 0.625rem 1rem;
        font-size: var(--font-size-xs);
      }

      /* Small Mobile Testimonials */
      .testimonials-left-column {
        padding: var(--spacing-md);
      }

      .testimonial-content h2 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
      }

      .testimonial-content .brand-highlight {
        font-size: var(--font-size-lg);
      }

      .testimonial-content p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-md);
      }

      .testimonial-card {
        padding: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
      }

      .testimonial-headline {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-xs);
      }

      .testimonial-text {
        font-size: var(--font-size-xs);
        line-height: 1.4;
        margin-bottom: var(--spacing-sm);
      }

      .testimonial-author {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
      }

      .testimonial-date {
        font-size: var(--font-size-xs);
      }

      .carousel-controls {
        margin: var(--spacing-sm) 0;
      }

      .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: var(--font-size-xs);
      }

      .view-more-btn {
        padding: 0.5rem 1rem;
        font-size: var(--font-size-xs);
        margin-top: var(--spacing-sm);
      }
    }



    .tour-categories {
      grid-template-rows: repeat(8, 180px);
      gap: 0.75rem;
    }

    .category-content h3 {
      font-size: var(--font-size-base);
    }

    .btn-view-more {
      font-size: var(--font-size-xs);
      padding: 0.375rem 0.5rem;
    }

    .about-content h2 {
      font-size: var(--font-size-xl);
    }

    .about-content p {
      font-size: var(--font-size-sm);
    }

    .about-btn {
      padding: 0.75rem 1.5rem;
      font-size: var(--font-size-xs);
    }

    .features-grid {
      gap: 0.75rem;
    }

    .feature-card {
      padding: var(--spacing-lg);
    }

    .feature-card h4 {
      font-size: var(--font-size-lg);
    }

    .feature-card p {
      font-size: var(--font-size-sm);
    }

    .news-feed-grid {
      gap: 1rem;
    }

    .featured-content h3 {
      font-size: var(--font-size-lg);
    }

    .featured-content p {
      font-size: var(--font-size-sm);
    }

    .article-content h4 {
      font-size: var(--font-size-base);
    }

    .article-content p {
      font-size: var(--font-size-xs);
    }

    .cta-content h2 {
      font-size: var(--font-size-xl);
    }

    .cta-content p {
      font-size: var(--font-size-sm);
    }

    .btn-cta {
      padding: 0.75rem 1.5rem;
      font-size: var(--font-size-sm);
    }

    /* News Feed Small Mobile */
    .featured-article {
      min-height: auto;
    }

    .featured-image {
      display: none;
    }

    .featured-content {
      padding: var(--spacing-sm);
    }

    .featured-content h3 {
      font-size: var(--font-size-sm);
      margin-bottom: var(--spacing-xs);
      line-height: 1.2;
    }

    .featured-content p {
      font-size: var(--font-size-xs);
      line-height: 1.3;
      -webkit-line-clamp: 2;
      line-clamp: 2;
    }

    .news-article {
      min-height: auto;
      margin-bottom: 0.75rem;
    }

    .article-background {
      display: none;
    }

    .month-label {
      padding: 0.2rem 0.4rem;
      font-size: var(--font-size-xs);
    }

    .article-content {
      padding: var(--spacing-sm);
    }

    .article-content h4 {
      font-size: var(--font-size-xs);
      margin-bottom: var(--spacing-xs);
      line-height: 1.2;
    }

    .article-content p {
      font-size: var(--font-size-xs);
      line-height: 1.3;
      -webkit-line-clamp: 2;
      line-clamp: 2;
    }

    .article-meta {
      gap: var(--spacing-xs);
      margin-bottom: var(--spacing-xs);
    }

    .article-meta span {
      min-width: 80px;
    }

    /* Testimonials Small Mobile */
    .testimonials-left-column,
    .testimonials-right-column {
      padding: var(--spacing-md);
    }

    .testimonials-right-column {
      min-height: 250px;
    }

    .testimonial-content h2 {
      font-size: var(--font-size-base);
      margin-bottom: var(--spacing-sm);
    }

    .testimonial-content .brand-highlight {
      font-size: var(--font-size-lg);
    }

    .testimonial-content p {
      font-size: var(--font-size-xs);
      margin-bottom: var(--spacing-md);
    }

    .testimonial-card {
      padding: var(--spacing-xs);
      margin-bottom: var(--spacing-xs);
    }

    .testimonial-headline {
      font-size: var(--font-size-sm);
      margin-bottom: var(--spacing-xs);
    }

    .testimonial-text {
      font-size: var(--font-size-xs);
      line-height: 1.3;
      margin-bottom: var(--spacing-xs);
    }

    .testimonial-author {
      font-size: var(--font-size-xs);
      margin-bottom: var(--spacing-xs);
    }

    .testimonial-date {
      font-size: var(--font-size-xs);
    }

    .carousel-controls {
      margin: var(--spacing-sm) 0;
    }

    .carousel-btn {
      width: 32px;
      height: 32px;
      font-size: var(--font-size-xs);
    }

    .view-more-btn {
      padding: 0.625rem 1.25rem;
      font-size: var(--font-size-xs);
    }

    /* Extra Small Mobile Devices */
    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 1.25rem;
      }

      .hero-content p {
        font-size: var(--font-size-xs);
        -webkit-line-clamp: 2;
        line-clamp: 2;
      }

      .btn-hero {
        padding: 0.5rem 0.875rem;
        font-size: var(--font-size-xs);
        min-width: 120px;
      }



      /* Extra Small Mobile Grid Improvements */
      .tour-categories {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 140px);
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-xs);
      }

      .about-three-column {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-xs);
      }

      .tour-packages-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-xs);
      }

      .features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-xs);
      }



      /* Extra Small Mobile Carousel Controls */
      .carousel-control-prev,
      .carousel-control-next {
        width: 32px;
        height: 32px;
        left: 5px;
        right: 5px;
      }

      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        width: 14px;
        height: 14px;
      }

      .category-content {
        padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-xs);
      }

      .category-content h3 {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-xs);
      }

      .btn-view-more {
        font-size: var(--font-size-xs);
        padding: 0.25rem 0.5rem;
      }

      .section {
        padding: var(--spacing-lg) 0;
      }

      .container-fluid {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
      }

      .about-left-column,
      .about-right-column {
        padding: var(--spacing-md);
      }

      .about-center-column {
        min-height: 250px;
      }

      .features-grid {
        gap: 0.5rem;
      }

      .feature-card {
        padding: var(--spacing-md);
      }

      .news-feed-grid {
        gap: 0.75rem;
      }

      .cta-section {
        padding: var(--spacing-lg) 0;
      }

      .cta-content {
        text-align: center;
      }



      /* Testimonials Extra Small Mobile */
      .testimonials-left-column,
      .testimonials-right-column {
        padding: var(--spacing-sm);
      }

      .testimonials-right-column {
        min-height: 200px;
      }

      .testimonial-content h2 {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-xs);
      }

      .testimonial-content .brand-highlight {
        font-size: var(--font-size-base);
      }

      .testimonial-content p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-sm);
        line-height: 1.2;
      }

      .testimonial-card {
        padding: var(--spacing-xs);
        margin-bottom: var(--spacing-xs);
      }

      .testimonial-headline {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
        line-height: 1.1;
      }

      .testimonial-text {
        font-size: var(--font-size-xs);
        line-height: 1.2;
        margin-bottom: var(--spacing-xs);
        -webkit-line-clamp: 4;
        line-clamp: 4;
      }

      .testimonial-author {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
      }

      .testimonial-date {
        font-size: var(--font-size-xs);
      }

      .carousel-controls {
        margin: var(--spacing-xs) 0;
      }

      .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: var(--font-size-xs);
      }

      .view-more-btn {
        padding: 0.5rem 1rem;
        font-size: var(--font-size-xs);
      }
    }

    /* Landscape Mobile Devices */
    @media (max-width: 768px) and (orientation: landscape) {
      .hero-section {
        height: 100vh;
        min-height: 350px;
      }

      .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-xs);
      }

      .hero-content p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-sm);
        -webkit-line-clamp: 2;
        line-clamp: 2;
      }

      .btn-hero {
        padding: 0.5rem 1rem;
        font-size: var(--font-size-xs);
      }

      .tour-categories {
        grid-template-rows: repeat(8, 140px);
      }

      .about-center-column {
        min-height: 250px;
      }

      .section {
        padding: var(--spacing-lg) 0;
      }



      /* Testimonials Landscape Mobile */
      .testimonials-right-column {
        min-height: 180px;
      }

      .testimonial-content h2 {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-xs);
      }

      .testimonial-content .brand-highlight {
        font-size: var(--font-size-base);
      }

      .testimonial-content p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-sm);
        line-height: 1.1;
      }

      .testimonial-card {
        padding: var(--spacing-xs);
        margin-bottom: var(--spacing-xs);
      }

      .testimonial-headline {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
      }

      .testimonial-text {
        font-size: var(--font-size-xs);
        line-height: 1.2;
        margin-bottom: var(--spacing-xs);
        -webkit-line-clamp: 3;
        line-clamp: 3;
      }

      .testimonial-author {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
      }

      .testimonial-date {
        font-size: var(--font-size-xs);
      }

      .carousel-btn {
        width: 25px;
        height: 25px;
        font-size: var(--font-size-xs);
      }

      .view-more-btn {
        padding: 0.5rem 1rem;
        font-size: var(--font-size-xs);
      }
    }

    .hero-content h1 {
      font-family: 'Inter', sans-serif;
      font-size: 2.25rem;
      font-weight: 600;
      margin-bottom: var(--spacing-md);
      letter-spacing: -0.02em;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      color: white;
      line-height: var(--line-height-tight);
    }

    .hero-content p {
      font-size: var(--font-size-lg);
      margin-bottom: var(--spacing-lg);
      font-weight: 400;
      line-height: var(--line-height-relaxed);
      color: rgba(255, 255, 255, 0.9);
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-hero {
      background: #F59E0B;
      color: white;
      padding: 0.75rem 1.25rem;
      border: none;
      border-radius: 6px;
      font-weight: 500;
      font-size: var(--font-size-sm);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      letter-spacing: -0.01em;
    }

    .btn-hero:hover {
      background: #D97706;
      color: white;
      transform: translateY(-2px);
    }

    /* Tour Planning Section */
    .tour-planning-section {
      background: #f8f9fa;
      padding: var(--spacing-2xl) 0;
    }

    .planning-content h2 {
      font-size: var(--font-size-xl);
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: var(--spacing-lg);
      letter-spacing: -0.01em;
    }

    .form-container {
      background: white;
      padding: var(--spacing-xl);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .tour-form .form-control {
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 0.75rem;
      font-size: 0.9rem;
    }

    .btn-inquire {
      background: #F59E0B;
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 6px;
      font-weight: 500;
      font-size: var(--font-size-sm);
      letter-spacing: -0.01em;
      transition: all 0.3s ease;
      width: 100%;
    }

    .btn-inquire:hover {
      background: #D97706;
      transform: translateY(-2px);
    }

    /* Tour Categories - Bento Grid */
    .travel-section {
      background: #f8f9fa;
    }

    .tour-categories {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(4, 200px);
      gap: 1rem;
      margin-top: 3rem;
    }

    .tour-category-card {
      background: white;
      border-radius: 0;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      position: relative;
      cursor: pointer;
    }

    .tour-category-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    /* Bento Grid Layout for Tour Categories */
    .tour-category-card:nth-child(1) {
      grid-column: 1 / 5;
      grid-row: 1 / 3;
    }

    .tour-category-card:nth-child(2) {
      grid-column: 5 / 9;
      grid-row: 1 / 2;
    }

    .tour-category-card:nth-child(3) {
      grid-column: 9 / 13;
      grid-row: 1 / 3;
    }

    .tour-category-card:nth-child(4) {
      grid-column: 5 / 9;
      grid-row: 2 / 4;
    }

    .tour-category-card:nth-child(5) {
      grid-column: 1 / 5;
      grid-row: 3 / 4;
    }

    .tour-category-card:nth-child(6) {
      grid-column: 9 / 13;
      grid-row: 3 / 4;
    }

    .tour-category-card:nth-child(7) {
      grid-column: 1 / 7;
      grid-row: 4 / 5;
    }

    .tour-category-card:nth-child(8) {
      grid-column: 7 / 13;
      grid-row: 4 / 5;
    }

    .category-image {
      width: 100%;
      height: 100%;
      overflow: hidden;
      position: relative;
    }

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

    .tour-category-card:hover .category-image img {
      transform: scale(1.1);
    }

    .category-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
      color: white;
      padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md);
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }

    .tour-category-card:hover .category-content {
      transform: translateY(0);
    }

    .category-content h3 {
      font-size: var(--font-size-lg);
      font-weight: 600;
      margin-bottom: var(--spacing-xs);
      color: white;
    }

    .btn-view-more {
      background: #F59E0B;
      color: white;
      padding: 0.5rem 0.75rem;
      border-radius: 6px;
      font-size: var(--font-size-xs);
      font-weight: 500;
      text-decoration: none;
      letter-spacing: -0.01em;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-view-more:hover {
      background: #D97706;
      color: white;
      transform: translateY(-2px);
    }

    .btn-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .btn-hero:hover {
      color: white;
      transform: translateY(-3px);
      box-shadow: var(--shadow-xl);
    }

    .btn-hero:hover::before {
      left: 100%;
    }

    .btn-hero-secondary {
      background: transparent;
      color: white;
      padding: 1rem 2rem;
      border: 2px solid white;
      border-radius: 4px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .btn-hero-secondary:hover {
      background: white;
      color: var(--primary-color);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* Section Styling */
    .section {
      padding: var(--spacing-3xl) 0;
    }

    /* Standardized Section Title Styles */
    .section-title {
      text-align: center;
      margin-bottom: 3rem;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .section-title h2 {
      font-size: var(--font-size-3xl);
      font-weight: 700;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: var(--spacing-md);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      position: relative;
      text-align: center;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -0.75rem;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }

    .section-title p {
      font-size: var(--font-size-lg);
      color: var(--text-secondary);
      max-width: 700px;
      margin: 0 auto;
      font-weight: 400;
      line-height: var(--line-height-relaxed);
      margin-top: var(--spacing-lg);
    }

    /* About Section - Three Column Layout */
    .about-section {
      background: #f8f9fa;
      position: relative;
      overflow: hidden;
      padding: 0;
    }

    .about-three-column {
      display: grid;
      grid-template-columns: 1.5fr 1fr 0.7fr;
      min-height: 600px;
      align-items: stretch;
    }

    /* Left Column - Content */
    .about-left-column {
      background: #f8f9fa;
      display: flex;
      align-items: center;
      padding: var(--spacing-3xl);
      position: relative;
    }

    .about-content {
      background: transparent;
      padding: 0;
      border-radius: 0;
      box-shadow: none;
      height: auto;
      border: none;
      position: relative;
      backdrop-filter: none;
    }

    .about-content h2 {
      font-size: var(--font-size-2xl);
      font-weight: 600;
      color: #1f2937;
      margin-bottom: var(--spacing-lg);
      letter-spacing: -0.02em;
      line-height: var(--line-height-tight);
    }

    .brand-highlight {
      font-size: var(--font-size-3xl);
      font-weight: 700;
      color: #1E40AF;
      display: block;
      margin-top: 0.5rem;
    }

    .about-content p {
      font-size: var(--font-size-base);
      line-height: var(--line-height-relaxed);
      color: #6b7280;
      margin-bottom: var(--spacing-xl);
      font-weight: 400;
    }

    .about-btn {
      background: transparent;
      color: #1f2937;
      padding: 0.875rem 2rem;
      border: 2px solid #1f2937;
      text-decoration: none;
      font-weight: 600;
      font-size: var(--font-size-sm);
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      display: inline-block;
      text-transform: uppercase;
    }

    .about-btn:hover {
      background: #1f2937;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(31, 41, 55, 0.2);
    }

    /* Center Column - Hero Image */
    .about-center-column {
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .about-hero-image {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .about-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.4s ease;
    }

    .about-hero-image:hover img {
      transform: scale(1.05);
    }

    /* Right Column - Benefits */
    .about-right-column {
      background: #f8f9fa;
      display: flex;
      align-items: center;
      padding: var(--spacing-3xl);
      position: relative;
    }

    .about-benefits {
      width: 100%;
    }

    .about-benefits h3 {
      font-size: var(--font-size-xl);
      font-weight: 600;
      color: #1f2937;
      margin-bottom: var(--spacing-xl);
      letter-spacing: -0.01em;
      text-transform: uppercase;
    }

    .benefits-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .benefits-list li {
      display: flex;
      align-items: center;
      margin-bottom: var(--spacing-md);
      font-size: var(--font-size-base);
      color: #6b7280;
      font-weight: 500;
    }

    .benefits-list li i {
      color: #1E40AF;
      margin-right: var(--spacing-sm);
      font-size: var(--font-size-sm);
      font-weight: 600;
    }

    /* Features Section */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .feature-card {
      background: white;
      padding: var(--spacing-2xl);
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      border: 1px solid var(--border-color);
      position: relative;
      overflow: hidden;
      border-radius: 0;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-primary);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    .feature-card h3 {
      transition: color 0.3s ease;
    }

    .feature-card:hover h3 {
      color: var(--primary-color);
    }

    .feature-icon {
      width: 100%;
      height: 200px;
      border-radius: 4px;
      margin: 0 auto 1.5rem;
      overflow: hidden;
      position: relative;
      transition: all 0.3s ease;
      border: 1px solid var(--border-color);
    }

    .feature-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s ease;
    }

    .feature-card:hover .feature-icon {
      transform: scale(1.05);
      border-color: var(--primary-color);
      box-shadow: var(--shadow-lg);
    }

    .feature-card:hover .feature-icon img {
      transform: scale(1.1);
    }

    .feature-card h3 {
      font-size: var(--font-size-xl);
      font-weight: 600;
      margin-bottom: var(--spacing-md);
      color: var(--text-color);
    }

    .feature-card p {
      color: var(--text-secondary);
      line-height: 1.6;
      transition: color 0.3s ease;
    }

    .feature-card:hover p {
      color: var(--text-color);
    }

    /* Micro-interactions for feature cards */
    .feature-card {
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .feature-card:hover::before {
      left: 100%;
    }

    /* Gallery Section - Bento Grid */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(6, 200px);
      gap: 1rem;
      margin-top: 3rem;
    }

    .gallery-item {
      position: relative;
      border-radius: 0;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .gallery-item:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    /* Bento Grid Layout for Gallery */
    .gallery-item:nth-child(1) {
      grid-column: 1 / 7;
      grid-row: 1 / 4;
    }

    .gallery-item:nth-child(2) {
      grid-column: 7 / 13;
      grid-row: 1 / 3;
    }

    .gallery-item:nth-child(3) {
      grid-column: 1 / 5;
      grid-row: 4 / 7;
    }

    .gallery-item:nth-child(4) {
      grid-column: 5 / 13;
      grid-row: 3 / 5;
    }

    .gallery-item:nth-child(5) {
      grid-column: 7 / 13;
      grid-row: 5 / 7;
    }

    .gallery-item:nth-child(6) {
      grid-column: 5 / 7;
      grid-row: 5 / 7;
    }

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

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
      color: white;
      padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md);
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }

    .gallery-item:hover .gallery-overlay {
      transform: translateY(0);
    }

    .gallery-overlay h4 {
      font-size: var(--font-size-lg);
      font-weight: 600;
      margin-bottom: var(--spacing-xs);
      color: white;
    }

    .gallery-overlay p {
      font-size: var(--font-size-sm);
      opacity: 0.9;
      margin: 0;
    }

    /* Testimonials Section */
    .testimonials-section {
      background: var(--light-color);
      /* Temporary debugging - ensure section is visible */
      min-height: 200px;
      position: relative;
      z-index: 1;
    }

    /* Testimonials Section - Consistent with other sections */
    .testimonials-section {
      background: #e2e8f0;
      position: relative;
      overflow: hidden;
    }

    .testimonials-section .container-fluid {
      padding: 0 var(--spacing-xl);
    }

    .testimonials-content-wrapper {
      width: 75%;
      margin: 0 auto;
    }

    .testimonials-container {
      position: relative;
      z-index: 1;
      max-width: 100%;
      margin: 0 auto;
      padding: 2rem 0;
    }

    /* Testimonials Three Column Layout */
    .testimonials-three-column {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      min-height: 600px;
      align-items: stretch;
    }

    /* Left Column - Testimonial Content */
    .testimonials-left-column {
      background: #e2e8f0;
      display: flex;
      align-items: center;
      padding: var(--spacing-3xl);
      position: relative;
    }

    .testimonial-content {
      background: transparent;
      padding: 0;
      border-radius: 0;
      box-shadow: none;
      height: auto;
      border: none;
      position: relative;
      backdrop-filter: none;
      text-align: left;
    }

    .testimonial-content h2 {
      font-size: var(--font-size-2xl);
      font-weight: 600;
      color: #1f2937;
      margin-bottom: var(--spacing-lg);
      letter-spacing: -0.02em;
      line-height: var(--line-height-tight);
    }

    .testimonial-content .brand-highlight {
      font-size: var(--font-size-3xl);
      font-weight: 700;
      color: #1E40AF;
      display: block;
      margin-top: 0.5rem;
    }

    .testimonial-content p {
      font-size: var(--font-size-base);
      line-height: var(--line-height-relaxed);
      color: #6b7280;
      margin-bottom: var(--spacing-xl);
      font-weight: 400;
    }

    /* Right Column - Hero Image */
    .testimonials-right-column {
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .testimonial-hero-image {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .testimonial-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.4s ease;
    }

    .testimonial-hero-image:hover img {
      transform: scale(1.05);
    }

    .testimonial-card {
      display: none;
      animation: fadeIn 0.5s ease-in-out;
      position: relative;
      z-index: 1;
      background: rgba(255, 255, 255, 0.9);
      padding: var(--spacing-lg);
      border-radius: 0;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      margin-bottom: var(--spacing-md);
      border-left: 4px solid #1E40AF;
    }

    .testimonial-card.active {
      display: block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .testimonial-headline {
      font-size: var(--font-size-lg);
      font-weight: 600;
      color: #1E40AF;
      margin-bottom: var(--spacing-sm);
      letter-spacing: -0.01em;
      position: relative;
      z-index: 1;
    }

    .testimonial-headline::after {
      content: '';
      position: absolute;
      bottom: -0.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, #1E40AF 0%, #F59E0B 100%);
      border-radius: 1px;
    }

    .testimonial-text {
      font-size: var(--font-size-base);
      line-height: var(--line-height-relaxed);
      color: #374151;
      margin-bottom: var(--spacing-lg);
      font-style: italic;
      position: relative;
      z-index: 1;
      padding: 0;
    }

    .testimonial-content::before {
      content: '"';
      position: absolute;
      top: -1rem;
      left: -0.5rem;
      font-size: 4rem;
      color: rgba(30, 64, 175, 0.1);
      font-family: serif;
      line-height: 1;
    }

    .testimonial-content::after {
      content: '"';
      position: absolute;
      bottom: -2rem;
      right: -0.5rem;
      font-size: 4rem;
      color: rgba(30, 64, 175, 0.1);
      font-family: serif;
      line-height: 1;
    }

    .testimonial-author {
      font-weight: 600;
      color: #1E40AF;
      margin-bottom: var(--spacing-xs);
      font-size: var(--font-size-sm);
      letter-spacing: -0.01em;
    }

    .testimonial-date {
      font-size: var(--font-size-xs);
      color: #6B7280;
      font-weight: 500;
    }

    .carousel-controls {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: var(--spacing-lg);
      margin-top: var(--spacing-xl);
      position: relative;
      z-index: 2;
    }

    .carousel-controls::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, #E5E7EB 50%, transparent 100%);
      z-index: 0;
    }

    .carousel-btn {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
      border: 2px solid #E5E7EB;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      color: #6B7280;
      font-size: 1.3rem;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .carousel-btn:hover {
      background: linear-gradient(135deg, #1E40AF 0%, #3730A3 100%);
      border-color: #1E40AF;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    }

    .carousel-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .carousel-btn:disabled:hover {
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
      border-color: #E5E7EB;
      color: #6B7280;
      transform: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .view-more-btn {
      background: transparent;
      color: #1f2937;
      border: 2px solid #1f2937;
      padding: 1rem 2rem;
      font-weight: 600;
      font-size: var(--font-size-sm);
      letter-spacing: 0.5px;
      text-decoration: none;
      transition: all 0.3s ease;
      text-transform: uppercase;
      display: inline-block;
      margin-top: var(--spacing-xl);
      position: relative;
      z-index: 2;
    }

    .view-more-btn:hover {
      background: #1f2937;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(31, 41, 55, 0.2);
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 1rem;
      left: 1.5rem;
      font-size: 4rem;
      font-family: serif;
      opacity: 0.1;
      color: var(--primary-color);
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .testimonial-card:hover::before {
      opacity: 0.2;
      transform: scale(1.1);
    }

    .maintxt {
      font-size: 1.1rem;
      line-height: 1.6;
      color: var(--text-color);
      font-style: italic;
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 2;
      transition: color 0.3s ease;
    }

    .testimonial-card:hover .maintxt {
      color: var(--primary-color);
    }

    .name {
      font-weight: 600;
      color: var(--text-color);
      font-size: 1rem;
      transition: color 0.3s ease;
    }

    .testimonial-card:hover .name {
      color: var(--primary-color);
    }

    .para {
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    .testimonial-rating {
      position: absolute;
      top: 1rem;
      right: 1rem;
      color: var(--accent-color);
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .testimonial-card:hover .testimonial-rating {
      transform: scale(1.1);
    }

    /* Responsive Bento Grid Adjustments */
    @media (max-width: 1200px) {

      .tour-categories,
      .gallery-grid,
      .testimonials-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 0.75rem;
      }

      .tour-category-card:nth-child(1) {
        grid-column: 1 / 5;
        grid-row: 1 / 3;
      }

      .tour-category-card:nth-child(2) {
        grid-column: 5 / 9;
        grid-row: 1 / 2;
      }

      .tour-category-card:nth-child(3) {
        grid-column: 1 / 5;
        grid-row: 3 / 5;
      }

      .tour-category-card:nth-child(4) {
        grid-column: 5 / 9;
        grid-row: 2 / 4;
      }

      .tour-category-card:nth-child(5) {
        grid-column: 1 / 5;
        grid-row: 5 / 6;
      }

      .tour-category-card:nth-child(6) {
        grid-column: 5 / 9;
        grid-row: 4 / 6;
      }

      .tour-category-card:nth-child(7) {
        grid-column: 1 / 9;
        grid-row: 6 / 7;
      }

      .gallery-item:nth-child(1) {
        grid-column: 1 / 5;
        grid-row: 1 / 4;
      }

      .gallery-item:nth-child(2) {
        grid-column: 5 / 9;
        grid-row: 1 / 3;
      }

      .gallery-item:nth-child(3) {
        grid-column: 1 / 5;
        grid-row: 4 / 7;
      }

      .gallery-item:nth-child(4) {
        grid-column: 5 / 9;
        grid-row: 3 / 5;
      }

      .gallery-item:nth-child(5) {
        grid-column: 1 / 5;
        grid-row: 7 / 9;
      }

      .gallery-item:nth-child(6) {
        grid-column: 5 / 9;
        grid-row: 5 / 7;
      }

      .testimonial-card:nth-child(1) {
        grid-column: 1 / 5;
        grid-row: 1 / 5;
      }

      .testimonial-card:nth-child(2) {
        grid-column: 5 / 9;
        grid-row: 1 / 3;
      }

      .testimonial-card:nth-child(3) {
        grid-column: 1 / 5;
        grid-row: 5 / 9;
      }

      .testimonial-card:nth-child(4) {
        grid-column: 5 / 9;
        grid-row: 3 / 6;
      }

      .testimonial-card:nth-child(5) {
        grid-column: 1 / 5;
        grid-row: 9 / 11;
      }

      .testimonial-card:nth-child(6) {
        grid-column: 5 / 9;
        grid-row: 6 / 9;
      }

      .testimonial-card:nth-child(7) {
        grid-column: 1 / 9;
        grid-row: 11 / 13;
      }

      .testimonial-card:nth-child(8) {
        grid-column: 1 / 9;
        grid-row: 13 / 15;
      }
    }

    @media (max-width: 768px) {

      .tour-categories,
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
      }

      .tour-category-card,
      .gallery-item {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        min-height: 200px;
        border-radius: 8px;
        overflow: hidden;
      }

      .category-content,
      .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        padding: var(--spacing-md);
      }

      .category-content h3,
      .gallery-overlay h4 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
        line-height: 1.2;
      }

      .gallery-overlay p {
        font-size: var(--font-size-xs);
        line-height: 1.3;
      }

      .testimonials-section .container-fluid {
        padding: 0 var(--spacing-md);
      }

      .testimonials-content-wrapper {
        width: 95%;
      }

      .testimonials-three-column {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
        gap: 0;
      }

      .testimonials-left-column {
        padding: var(--spacing-xl) var(--spacing-lg);
        order: 1;
      }

      .testimonials-right-column {
        min-height: 350px;
        order: 2;
      }

      .testimonial-content {
        text-align: center;
      }

      .testimonial-content h2 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
        text-align: center;
      }

      .testimonial-content .brand-highlight {
        font-size: var(--font-size-xl);
        margin-top: 0.25rem;
        text-align: center;
      }

      .testimonial-content p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
        text-align: center;
      }

      .testimonial-card {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-md);
      }

      .carousel-controls {
        justify-content: center;
        margin-top: var(--spacing-lg);
      }

      .view-more-btn {
        margin-top: var(--spacing-lg);
      }

      .testimonials-container {
        padding: 1rem;
      }

      .testimonial-carousel {
        padding: 2rem 1rem;
        margin: 1rem 0;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      }

      .testimonial-headline {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.3;
      }

      .testimonial-content {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 0.25rem;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .testimonial-content::before,
      .testimonial-content::after {
        font-size: 2.5rem;
      }

      .testimonial-author {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
      }

      .testimonial-date {
        font-size: var(--font-size-xs);
      }

      .carousel-controls {
        margin-top: 1.5rem;
        gap: 0.75rem;
      }

      .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
      }

      .view-more-btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-sm);
        margin-top: 1.5rem;
        width: auto;
        min-width: 160px;
      }
    }

    /* CTA Section */
    .cta-section {
      background: white;
      color: var(--text-color);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      opacity: 0.3;
    }

    .cta-content {
      position: relative;
      z-index: 2;
    }

    .cta-content h2 {
      font-size: var(--font-size-4xl);
      font-weight: 600;
      margin-bottom: var(--spacing-lg);
      letter-spacing: -0.02em;
      color: var(--text-color);
    }

    .cta-content p {
      font-size: var(--font-size-lg);
      margin-bottom: var(--spacing-2xl);
      color: var(--text-color);
    }

    .btn-cta {
      background: white;
      color: var(--text-color);
      border: 2px solid var(--text-color);
      padding: 1rem 2rem;
      font-weight: 600;
      font-size: var(--font-size-sm);
      letter-spacing: 0.5px;
      text-decoration: none;
      transition: all 0.3s ease;
      text-transform: uppercase;
      display: inline-block;
    }

    .btn-cta:hover {
      background: var(--text-color);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(31, 41, 55, 0.2);
    }

    /* Footer */
    .footer {
      background: var(--dark-color);
      color: white;
      padding: 3rem 0 2rem;
      border-top: 1px solid var(--border-color);
    }

    /* Footer Responsive */
    @media (max-width: 768px) {
      .footer {
        padding: 2rem 0 1rem;
      }

      .footer h5 {
        font-size: var(--font-size-lg);
        margin-bottom: 1rem;
      }

      .footer p,
      .footer a {
        font-size: var(--font-size-sm);
      }

      .social-links {
        justify-content: center;
        margin-top: 1.5rem;
      }

      .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
      }
    }

    @media (max-width: 576px) {
      .footer {
        padding: 1.5rem 0 1rem;
      }

      .footer h5 {
        font-size: var(--font-size-base);
        margin-bottom: 0.75rem;
      }

      .footer p,
      .footer a {
        font-size: var(--font-size-xs);
      }

      .social-links {
        gap: 0.75rem;
      }

      .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
      }
    }

    .footer h5 {
      font-weight: 600;
      margin-bottom: var(--spacing-lg);
      color: white;
      font-size: var(--font-size-lg);
    }

    .footer p,
    .footer a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer a:hover {
      color: white;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      background: var(--accent-color);
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: all 0.2s ease;
    }

    .social-links a:hover {
      background: #D97706;
      transform: translateY(-1px);
    }

    /* Newsletter styling */
    .footer .input-group {
      margin-top: 1rem;
    }

    .footer .form-control {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      border-radius: 0;
    }

    .footer .form-control::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .footer .form-control:focus {
      background: rgba(255, 255, 255, 0.15);
      border-color: var(--accent-color);
      box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
      color: white;
    }

    .footer .btn-primary {
      background: var(--accent-color);
      border: 1px solid var(--accent-color);
      border-radius: 0;
      padding: 0.75rem 1.5rem;
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .footer .btn-primary:hover {
      background: #D97706;
      border-color: #D97706;
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }

    /* Responsive Design */
    /* Tablet Responsive */
    @media (max-width: 1024px) {
      .tours-content-wrapper {
        width: 85%;
      }

      .news-content-wrapper {
        width: 85%;
      }

      .news-feed-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer {
        padding: 2rem 0 1rem;
      }

      .footer h5 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-md);
      }

      .footer p,
      .footer a {
        font-size: var(--font-size-sm);
        line-height: 1.4;
      }

      .social-links {
        gap: 0.75rem;
        margin-top: 0.75rem;
      }

      .social-links a {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
      }

      .about-three-column {
        grid-template-columns: 1.2fr 1fr 0.7fr;
        min-height: 500px;
      }

      .about-left-column,
      .about-right-column {
        padding: var(--spacing-lg);
      }

      .about-content h2 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-md);
      }

      .brand-highlight {
        font-size: var(--font-size-2xl);
        margin-top: 0.25rem;
      }

      .about-content p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
      }

      .about-benefits h3 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-md);
      }

      .benefits-list li {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
      }

      .about-btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-xs);
      }
    }

    @media (max-width: 768px) {
      .tour-packages-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
      }

      .tour-package-card {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        min-height: 200px;
        border-radius: 8px;
        overflow: hidden;
      }

      .view-all-tours-card {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px;
        margin-top: var(--spacing-md);
      }

      .package-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        padding: var(--spacing-md);
      }

      .package-overlay h3 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
        line-height: 1.2;
      }

      .package-duration {
        font-size: var(--font-size-xs);
        line-height: 1.3;
      }



      .news-feed-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
      }

      .featured-article,
      .news-article {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        min-height: 200px;
        border-radius: 8px;
        overflow: hidden;
      }

      .featured-image {
        height: 200px;
      }

      .featured-content {
        padding: var(--spacing-md);
      }

      .featured-content h3 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
        line-height: 1.3;
      }

      .featured-content p {
        font-size: var(--font-size-xs);
        line-height: 1.4;
      }

      .news-article {
        flex-direction: column;
        border-radius: 8px;
        overflow: hidden;
      }

      .month-label {
        width: 100%;
        height: 50px;
        font-size: var(--font-size-xs);
      }

      .article-content {
        padding: var(--spacing-md);
      }

      .article-content h4 {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-xs);
        line-height: 1.2;
      }

      .article-content p {
        font-size: var(--font-size-xs);
        line-height: 1.3;
      }

      .article-meta {
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-xs);
        font-size: var(--font-size-xs);
      }

      .tour-packages-grid {
        gap: 1rem;
      }

      .hero-content h1 {
        font-size: 1.875rem;
      }

      .hero-content p {
        font-size: var(--font-size-base);
      }

      .section-title h2 {
        font-size: var(--font-size-2xl);
        letter-spacing: 0.3px;
        text-align: center;
      }

      .section-title h2::after {
        width: 60px;
        height: 2px;
        bottom: -0.5rem;
      }

      .section-title p {
        font-size: var(--font-size-base);
        margin-top: var(--spacing-md);
        text-align: center;
        max-width: 100%;
      }



      .tour-packages-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
        margin: var(--spacing-lg) auto;
        max-width: 100%;
        width: 100%;
        padding: 0 var(--spacing-sm);
      }



      .view-all-tours-card {
        height: 60px;
        margin-top: var(--spacing-md);
      }

      .btn-view-all-tours {
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-sm);
      }



      .view-all-tours-card {
        width: 100%;
        max-width: 400px;
        height: 60px;
        margin: var(--spacing-md) auto 0;
      }

      .package-overlay h3 {
        font-size: var(--font-size-base);
      }

      .package-duration {
        font-size: var(--font-size-xs);
      }

      .about-three-column {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
        gap: 0;
      }

      .about-left-column {
        padding: var(--spacing-lg) var(--spacing-md);
        order: 1;
      }

      .about-center-column {
        min-height: 300px;
        order: 2;
      }

      .about-right-column {
        padding: var(--spacing-md);
        order: 3;
        background: #ffffff;
        border-top: 1px solid #e5e7eb;
      }

      .about-content h2 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
        text-align: center;
        line-height: 1.3;
      }

      .brand-highlight {
        font-size: var(--font-size-lg);
        margin-top: 0.25rem;
        text-align: center;
      }

      .about-content p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-sm);
        text-align: center;
        line-height: 1.4;
      }

      .about-content {
        text-align: center;
      }

      .about-benefits h3 {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-sm);
        text-align: center;
        color: #1E40AF;
      }

      .benefits-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
      }

      .benefits-list li {
        font-size: var(--font-size-xs);
        margin-bottom: 0;
        padding: var(--spacing-xs);
        background: #f8f9fa;
        text-align: left;
        border-radius: 4px;
        border-left: 3px solid #1E40AF;
      }

      .benefits-list li i {
        margin-right: var(--spacing-xs);
        color: #1E40AF;
      }

      .about-btn {
        padding: 0.625rem 1.5rem;
        font-size: var(--font-size-xs);
        margin: 0 auto;
        display: block;
        width: fit-content;
      }

      .feature-card {
        padding: var(--spacing-lg);
      }

      .testimonial-card {
        padding: var(--spacing-lg);
      }

      .cta-content h2 {
        font-size: var(--font-size-xl);
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
      }

      .cta-content p {
        font-size: var(--font-size-sm);
        line-height: 1.4;
        margin-bottom: var(--spacing-lg);
      }

      .btn-cta {
        padding: 0.875rem 1.5rem;
        font-size: var(--font-size-sm);
      }
    }

    /* Small Mobile */
    @media (max-width: 480px) {
      .tour-package-card {
        min-height: 160px;
      }

      .package-overlay {
        padding: var(--spacing-sm);
      }

      .package-overlay h3 {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-xs);
        line-height: 1.1;
      }

      .package-duration {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
      }

      .package-link {
        font-size: var(--font-size-xs);
        padding: 0.25rem 0.5rem;
        margin-top: var(--spacing-xs);
      }

      .package-overlay {
        padding: var(--spacing-sm);
      }

      .package-overlay h3 {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-xs);
        line-height: 1.1;
      }

      .package-duration {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
      }

      .package-link {
        font-size: var(--font-size-xs);
        padding: 0.25rem 0.5rem;
        margin-top: var(--spacing-xs);
      }

      .featured-tag {
        top: 0.375rem;
        left: 0.375rem;
        padding: 0.125rem 0.375rem;
        font-size: var(--font-size-xs);
      }

      .view-all-tours-card {
        width: 100%;
        height: 50px;
        margin: var(--spacing-sm) auto 0;
      }

      .btn-view-all-tours {
        padding: 0.5rem 1rem;
        font-size: var(--font-size-xs);
      }

      .about-left-column {
        padding: var(--spacing-lg) var(--spacing-md);
      }

      .about-right-column {
        padding: var(--spacing-md);
      }

      .about-center-column {
        min-height: 300px;
      }

      .about-content h2 {
        font-size: var(--font-size-base);
      }

      .brand-highlight {
        font-size: var(--font-size-lg);
      }

      .about-content p {
        font-size: var(--font-size-xs);
      }

      .benefits-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
      }

      .benefits-list li {
        font-size: var(--font-size-xs);
        padding: var(--spacing-xs);
      }

      .about-btn {
        padding: 0.625rem 1.5rem;
        font-size: var(--font-size-xs);
      }
    }

    @media (max-width: 576px) {
      .hero-content h1 {
        font-size: 2rem;
      }

      .section {
        padding: 4rem 0;
      }

      .gallery-item {
        height: 250px;
      }
    }

    /* Tours Section Styles */
    .tours-section {
      background: #ffffff;
      padding: var(--spacing-3xl) 0;
    }

    .tours-section.section {
      padding-bottom: var(--spacing-3xl);
    }



    .tour-packages-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(4, 250px);
      gap: 1rem;
      margin-top: 3rem;
    }

    .tour-package-card {
      position: relative;
      border-radius: 0;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .tour-package-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    /* Asymmetrical Grid Layout */
    .tour-package-card:nth-child(1) {
      grid-column: 1 / 7;
      grid-row: 1 / 3;
    }

    .tour-package-card:nth-child(2) {
      grid-column: 7 / 13;
      grid-row: 1 / 2;
    }

    .tour-package-card:nth-child(3) {
      grid-column: 7 / 13;
      grid-row: 2 / 3;
    }

    .tour-package-card:nth-child(4) {
      grid-column: 1 / 5;
      grid-row: 3 / 4;
    }

    .tour-package-card:nth-child(5) {
      grid-column: 5 / 9;
      grid-row: 3 / 4;
    }

    .tour-package-card:nth-child(6) {
      grid-column: 9 / 13;
      grid-row: 3 / 4;
    }

    .view-all-tours-card {
      grid-column: 1 / 13;
      grid-row: 4 / 5;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px;
    }

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

    .package-image {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .package-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .tour-package-card:hover .package-image img {
      transform: scale(1.1);
    }

    .featured-tag {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: #F59E0B;
      color: white;
      padding: 0.5rem 1rem;
      font-size: var(--font-size-xs);
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .package-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
      color: white;
      padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md);
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }

    .tour-package-card:hover .package-overlay {
      transform: translateY(0);
    }

    .package-overlay h3 {
      font-size: var(--font-size-lg);
      font-weight: 600;
      margin-bottom: var(--spacing-xs);
      letter-spacing: 0.5px;
    }

    .package-duration {
      font-size: var(--font-size-sm);
      margin-bottom: var(--spacing-sm);
      opacity: 0.9;
    }

    .package-link {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      padding: 0.5rem 1rem;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 4px;
      text-decoration: none;
      font-size: var(--font-size-xs);
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      display: inline-block;
      backdrop-filter: blur(5px);
    }

    .package-link:hover {
      background: rgba(255, 255, 255, 0.3);
      color: white;
      transform: translateY(-1px);
    }



    .btn-view-all-tours {
      background: transparent;
      color: #1f2937;
      border: 2px solid #1f2937;
      padding: 1rem 2rem;
      font-weight: 600;
      font-size: var(--font-size-sm);
      letter-spacing: 0.5px;
      text-decoration: none;
      transition: all 0.3s ease;
      text-transform: uppercase;
      display: inline-block;
    }

    .btn-view-all-tours:hover {
      background: #1f2937;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(31, 41, 55, 0.2);
    }

    /* News Feed Section Styles */
    .news-feed-section {
      background: #f8fafc;
      padding: var(--spacing-3xl) 0;
    }

    .news-subtitle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--spacing-xs);
      color: #1E40AF;
      font-size: var(--font-size-sm);
      font-weight: 600;
      margin-bottom: var(--spacing-sm);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .news-subtitle i {
      color: #F59E0B;
    }

    /* Desktop News Feed Grid - Improved Layout */
    .news-feed-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto auto;
      gap: 2rem;
      margin-top: 3rem;
      width: 100%;
      max-width: 100%;
    }

    /* Desktop-specific styles for news articles */
    .news-feed-grid .news-article {
      background: white;
      overflow: hidden;
      transition: all 0.4s ease;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      position: relative;
      cursor: pointer;
      display: flex;
      margin-bottom: 1rem;
      width: 100%;
      max-width: 100%;
    }

    .news-feed-grid .news-article:last-child {
      margin-bottom: 0;
    }

    /* Ensure news articles stay within grid */
    .news-feed-grid .news-article:nth-child(2) {
      grid-column: 2;
      grid-row: 1;
    }

    .news-feed-grid .news-article:nth-child(3) {
      grid-column: 2;
      grid-row: 2;
    }

    .news-feed-grid .news-article:nth-child(4) {
      grid-column: 2;
      grid-row: 3;
    }

    .news-feed-grid .news-article:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .news-feed-grid .article-background {
      width: 150px;
      height: 150px;
      overflow: hidden;
      flex-shrink: 0;
      display: block;
    }

    .news-feed-grid .article-background img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      display: block;
      background: #f3f4f6;
      min-width: 100%;
      min-height: 100%;
    }

    .news-feed-grid .news-article:hover .article-background img {
      transform: scale(1.05);
    }

    /* Article Details Styles */
    .article-details {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .article-details h4 {
      color: white;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      margin-top: 1.5rem;
    }

    .article-details h4:first-child {
      margin-top: 0;
    }

    .article-details p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .article-details ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .article-details li {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 0.5rem;
      padding-left: 1rem;
      position: relative;
    }

    .article-details li:before {
      content: '•';
      color: var(--accent-color);
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    /* Responsive styles for article details */
    @media (max-width: 768px) {
      .article-details {
        margin-top: 1rem;
        padding-top: 1rem;
      }

      .article-details h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        margin-top: 1rem;
      }

      .article-details p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
      }

      .article-details li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
      }
    }

    .featured-article {
      grid-column: 1;
      grid-row: 1 / 4;
      background: white;
      overflow: hidden;
      transition: all 0.3s ease;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      position: relative;
      width: 100%;
      max-width: 100%;
    }

    /* Desktop-specific featured article styles */
    .news-feed-grid .featured-image {
      width: 100%;
      height: 250px;
      overflow: hidden;
      display: block !important;
      position: relative;
      background: #f3f4f6;
    }

    /* Ensure featured image is always visible on desktop/tablet */
    @media (min-width: 769px) {
      .news-feed-grid .featured-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
      }

      .news-feed-grid .featured-image img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
      }
    }

    .news-feed-grid .featured-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      display: block !important;
      background: #f3f4f6;
      min-width: 100%;
      min-height: 100%;
      border-radius: 8px 8px 0 0;
      position: relative;
      z-index: 1;
      opacity: 1 !important;
      visibility: visible !important;
    }

    .news-feed-grid .featured-article:hover .featured-image img {
      transform: scale(1.05);
    }

    .featured-article:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }



    .news-feed-grid .featured-content {
      padding: var(--spacing-xl);
      flex: 1;
      display: flex;
      flex-direction: column;
      background: white;
    }

    .article-meta {
      display: flex;
      gap: var(--spacing-lg);
      margin-bottom: var(--spacing-md);
      font-size: var(--font-size-xs);
      color: #6b7280;
    }

    .article-meta span {
      display: flex;
      align-items: center;
      gap: var(--spacing-xs);
    }

    .article-meta i {
      color: #1E40AF;
    }

    .featured-content h3 {
      font-size: var(--font-size-xl);
      font-weight: 600;
      color: #1f2937;
      margin-bottom: var(--spacing-md);
      line-height: var(--line-height-tight);
    }

    .featured-content p {
      font-size: var(--font-size-base);
      line-height: var(--line-height-relaxed);
      color: #6b7280;
      margin-bottom: 0;
      flex: 1;
    }



    .month-label {
      position: absolute;
      top: 0.5rem;
      left: 0.5rem;
      padding: 0.25rem 0.5rem;
      font-size: var(--font-size-xs);
      border-radius: 4px;
      z-index: 3;
      color: white;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(4px);
    }

    /* Featured article month label positioning */
    .featured-article .month-label {
      position: absolute;
      top: 0.5rem;
      left: 0.5rem;
      z-index: 3;
    }

    .month-label.july {
      background: #F59E0B;
    }

    .month-label.august {
      background: #1E40AF;
    }

    .month-label.june {
      background: #DC2626;
    }

    .news-feed-grid .article-content {
      padding: var(--spacing-lg);
      background: white;
      flex: 1;
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .article-content h4 {
      font-size: var(--font-size-lg);
      font-weight: 600;
      color: #1f2937;
      margin-bottom: var(--spacing-sm);
      line-height: var(--line-height-tight);
    }

    .article-content p {
      font-size: var(--font-size-sm);
      line-height: var(--line-height-relaxed);
      color: #6b7280;
      margin-bottom: var(--spacing-md);
      flex: 1;
    }

    .article-content .article-meta {
      display: flex;
      gap: var(--spacing-sm);
      font-size: var(--font-size-xs);
      color: #6b7280;
      margin-bottom: var(--spacing-sm);
    }

    .article-content .article-meta span {
      display: flex;
      align-items: center;
      gap: var(--spacing-xs);
    }

    .article-content .article-meta i {
      color: #1E40AF;
    }

    /* Medium Tablet Styles (768px - 991px) */
    @media (min-width: 768px) and (max-width: 991px) {
      .news-feed-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .featured-article {
        grid-column: 1;
        grid-row: auto;
        margin-bottom: 0;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        min-height: auto;
      }

      .news-feed-grid .featured-image {
        display: block;
        width: 100%;
        height: 160px;
        overflow: hidden;
      }

      .news-feed-grid .featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: 160px;
      }

      .news-feed-grid .featured-content {
        position: relative;
        padding: var(--spacing-md);
        background: white;
        color: var(--text-color);
        flex: 1;
        display: flex;
        flex-direction: column;
      }

      .news-feed-grid .featured-content h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
        line-height: 1.3;
        color: var(--text-color);
        font-weight: 600;
      }

      .news-feed-grid .featured-content p {
        font-size: var(--font-size-base);
        line-height: 1.4;
        color: var(--text-secondary);
        margin-bottom: var(--spacing-sm);
        -webkit-line-clamp: 4;
        line-clamp: 4;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .news-article {
        width: 100%;
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        grid-column: 1;
        grid-row: auto;
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
        min-height: auto;
      }

      /* Ensure news articles have same layout as featured article in mobile */
      .news-feed-grid .news-article {
        display: flex;
        flex-direction: column;
      }

      .news-feed-grid .article-background {
        display: block;
        width: 100%;
        height: 160px;
        overflow: hidden;
      }

      .news-feed-grid .article-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: 160px;
      }

      .month-label {
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.25rem 0.5rem;
        font-size: var(--font-size-xs);
        border-radius: 4px;
        z-index: 3;
        color: white;
        font-weight: 600;
      }

      .news-feed-grid .article-content {
        position: relative;
        padding: var(--spacing-md);
        background: white;
        color: var(--text-color);
        display: flex;
        flex-direction: column;
        flex: 1;
      }

      .news-feed-grid .article-content h4 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-md);
        line-height: 1.3;
        color: var(--text-color);
        font-weight: 600;
      }

      .news-feed-grid .article-content p {
        font-size: var(--font-size-base);
        line-height: 1.4;
        color: var(--text-secondary);
        margin-bottom: var(--spacing-sm);
        -webkit-line-clamp: 4;
        line-clamp: 4;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .article-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--spacing-sm);
        font-size: var(--font-size-xs);
        color: var(--text-secondary);
        margin-bottom: var(--spacing-sm);
      }

      .article-meta span {
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
      }

      .article-meta i {
        color: var(--accent-color);
      }

      /* Medium tablet optimizations */
      .news-feed-section .container {
        padding: 0 var(--spacing-md);
      }

      .section-title h2 {
        font-size: var(--font-size-xl);
      }

      .section-title p {
        font-size: var(--font-size-sm);
      }
    }

    /* Large Tablet Styles (992px - 1199px) */
    @media (min-width: 992px) and (max-width: 1199px) {
      .news-feed-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
      }

      .featured-article {
        grid-column: 1;
        grid-row: 1 / 4;
      }

      .news-article {
        display: flex;
        grid-column: 2;
        margin-bottom: 1rem;
      }

      .news-feed-grid .featured-image {
        height: 220px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
      }

      .news-feed-grid .article-background {
        width: 120px;
        height: 120px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
      }

      .news-feed-grid .featured-content {
        padding: var(--spacing-lg);
      }

      .news-feed-grid .featured-content h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
      }

      .news-feed-grid .featured-content p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
      }

      .news-feed-grid .article-content {
        padding: var(--spacing-md);
      }

      .news-feed-grid .article-content h4 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
      }

      .news-feed-grid .article-content p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-sm);
      }

      .article-meta {
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-xs);
      }

      .article-meta span {
        font-size: var(--font-size-xs);
      }

      .month-label {
        padding: 0.2rem 0.4rem;
        font-size: var(--font-size-xs);
      }

      /* Large tablet optimizations */
      .news-feed-section .container {
        padding: 0 var(--spacing-lg);
      }

      .section-title h2 {
        font-size: var(--font-size-2xl);
      }

      .section-title p {
        font-size: var(--font-size-base);
      }
    }

    /* Large Desktop Styles */
    @media (min-width: 1200px) {
      .news-feed-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }

      .featured-article {
        grid-column: 1;
        grid-row: 1 / 4;
      }

      .news-feed-grid .featured-image {
        height: 300px;
      }

      .news-article {
        display: flex;
        grid-column: 2;
        margin-bottom: 1.5rem;
      }

      .news-feed-grid .article-background {
        width: 180px;
        height: 180px;
      }

      .news-feed-grid .article-content {
        padding: var(--spacing-xl);
      }

      .news-feed-grid .article-content h4 {
        font-size: var(--font-size-xl);
      }

      .news-feed-grid .article-content p {
        font-size: var(--font-size-base);
      }
    }

    /* Mobile News Feed Styles */
    @media (max-width: 768px) {
      .news-feed-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .featured-article {
        grid-column: 1;
        grid-row: auto;
        margin-bottom: 0;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      }

      .featured-image {
        display: block;
        width: 100%;
        height: 200px;
        overflow: hidden;
      }

      .featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .featured-content {
        position: relative;
        padding: var(--spacing-lg);
        background: white;
        color: var(--text-color);
      }

      .featured-content h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-md);
        line-height: 1.3;
        color: var(--text-color);
        font-weight: 600;
      }

      .featured-content p {
        font-size: var(--font-size-base);
        line-height: 1.6;
        color: var(--text-secondary);
        margin-bottom: var(--spacing-lg);
      }

      .article-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--spacing-sm);
        font-size: var(--font-size-xs);
        color: var(--text-secondary);
        margin-bottom: var(--spacing-sm);
      }

      .article-meta span {
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
      }

      .article-meta i {
        color: var(--accent-color);
      }

      .news-article {
        width: 100%;
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        grid-column: 1;
        grid-row: auto;
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
      }

      /* Make all news articles use the same structure as featured article */
      .news-article .article-background {
        display: block;
        width: 100%;
        height: 200px;
        overflow: hidden;
      }

      .news-article .article-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .month-label {
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.25rem 0.5rem;
        font-size: var(--font-size-xs);
        border-radius: 4px;
        z-index: 3;
        color: white;
        font-weight: 600;
      }

      /* Make all news articles use the same structure as featured article */
      .news-article .article-content {
        position: relative;
        padding: var(--spacing-lg);
        background: white;
        color: var(--text-color);
        display: flex;
        flex-direction: column;
      }

      .news-article .article-content h4 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-md);
        line-height: 1.3;
        color: var(--text-color);
        font-weight: 600;
      }

      .news-article .article-content p {
        font-size: var(--font-size-base);
        line-height: 1.6;
        color: var(--text-secondary);
        margin-bottom: var(--spacing-lg);
      }

      .news-article .article-content .article-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--spacing-sm);
        font-size: var(--font-size-xs);
        color: var(--text-secondary);
        margin-bottom: var(--spacing-sm);
      }

      .news-article .article-content .article-meta span {
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
      }

      /* Touch-friendly improvements */
      .news-article {
        min-height: 44px;
        touch-action: manipulation;
      }

      .featured-article {
        min-height: 44px;
        touch-action: manipulation;
      }
    }

    /* Small Mobile News Feed Optimizations */
    @media (max-width: 480px) {
      .news-feed-grid {
        gap: 1rem;
        margin-top: 1.5rem;
      }

      .featured-article {
        border-radius: 6px;
      }

      .featured-image {
        height: 160px;
      }

      .featured-content {
        padding: var(--spacing-md);
      }

      .featured-content h3 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
        line-height: 1.2;
      }

      .featured-content p {
        font-size: var(--font-size-sm);
        line-height: 1.4;
        margin-bottom: var(--spacing-md);
      }

      .news-article {
        border-radius: 6px;
      }

      .article-background {
        height: 140px;
      }

      .article-content {
        padding: var(--spacing-md);
      }

      .article-content h4 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
        line-height: 1.2;
      }

      .article-content p {
        font-size: var(--font-size-sm);
        line-height: 1.4;
        margin-bottom: var(--spacing-md);
      }

      .article-meta {
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-xs);
      }

      .article-meta span {
        min-width: 80px;
      }
    }

    /* Mobile Testimonials Layout */
    @media (max-width: 768px) {
      .testimonials-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #e2e8f0 !important;
        padding: var(--spacing-lg) 0 !important;
      }

      .testimonials-content-wrapper {
        width: 100% !important;
        padding: 0 var(--spacing-md) !important;
      }

      .testimonials-right-column {
        display: none !important;
      }

      .testimonials-three-column {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        display: grid !important;
      }

      .testimonials-left-column {
        padding: var(--spacing-lg) !important;
        background: #e2e8f0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
      }

      .testimonial-content {
        text-align: center !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
      }

      .testimonial-content h2 {
        font-size: var(--font-size-lg) !important;
        margin-bottom: var(--spacing-md) !important;
        display: block !important;
        visibility: visible !important;
        color: #1f2937 !important;
      }

      .testimonial-content .brand-highlight {
        font-size: var(--font-size-xl) !important;
        display: inline !important;
        visibility: visible !important;
        color: #1E40AF !important;
      }

      .testimonial-content p {
        font-size: var(--font-size-sm) !important;
        margin-bottom: var(--spacing-lg) !important;
        display: block !important;
        visibility: visible !important;
        color: #6b7280 !important;
      }

      .testimonial-card {
        padding: var(--spacing-md) !important;
        margin-bottom: var(--spacing-md) !important;
        display: none !important;
        background: white !important;
        border-radius: 0 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
      }

      .testimonial-card.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
      }

      .testimonial-headline {
        font-size: var(--font-size-base) !important;
        margin-bottom: var(--spacing-sm) !important;
        display: block !important;
        visibility: visible !important;
        color: #1E40AF !important;
        font-weight: 600 !important;
      }

      .testimonial-text {
        font-size: var(--font-size-sm) !important;
        line-height: 1.5 !important;
        margin-bottom: var(--spacing-sm) !important;
        display: block !important;
        visibility: visible !important;
        color: #374151 !important;
        font-style: italic !important;
      }

      .testimonial-author {
        font-size: var(--font-size-sm) !important;
        margin-bottom: var(--spacing-xs) !important;
        display: block !important;
        visibility: visible !important;
        color: #1E40AF !important;
        font-weight: 600 !important;
      }

      .testimonial-date {
        font-size: var(--font-size-xs) !important;
        display: block !important;
        visibility: visible !important;
        color: #6B7280 !important;
      }

      .carousel-controls {
        margin: var(--spacing-md) 0 !important;
        justify-content: center !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
      }

      .carousel-btn {
        width: 56px !important;
        height: 56px !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
        border: 2px solid #E5E7EB !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        color: #6B7280 !important;
        font-size: 1.3rem !important;
        position: relative !important;
        z-index: 1 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
        visibility: visible !important;
        opacity: 1 !important;
      }

      .carousel-btn:hover {
        background: linear-gradient(135deg, #1E40AF 0%, #3730A3 100%) !important;
        border-color: #1E40AF !important;
        color: white !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3) !important;
      }

      .carousel-btn:disabled {
        opacity: 0.4 !important;
        cursor: not-allowed !important;
        transform: none !important;
        box-shadow: none !important;
      }

      .carousel-btn:disabled:hover {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
        border-color: #E5E7EB !important;
        color: #6B7280 !important;
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
      }

      .view-more-btn {
        background: transparent !important;
        color: #1f2937 !important;
        border: 2px solid #1f2937 !important;
        padding: 1rem 2rem !important;
        font-weight: 600 !important;
        font-size: var(--font-size-sm) !important;
        letter-spacing: 0.5px !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        text-transform: uppercase !important;
        display: inline-block !important;
        margin-top: var(--spacing-xl) !important;
        position: relative !important;
        z-index: 2 !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-align: center !important;
      }

      .view-more-btn:hover {
        background: #1f2937 !important;
        color: white !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(31, 41, 55, 0.2) !important;
      }
    }



    .month-label {
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: var(--font-size-xs);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .month-label.july {
      background: #F59E0B;
    }

    .month-label.august {
      background: #1E40AF;
    }

    .month-label.june {
      background: #DC2626;
    }

    .article-content {
      flex: 1;
      padding: var(--spacing-md);
    }

    .article-content h4 {
      font-size: var(--font-size-base);
      font-weight: 600;
      color: #1f2937;
      margin-bottom: var(--spacing-xs);
      line-height: var(--line-height-tight);
    }

    .article-content p {
      font-size: var(--font-size-xs);
      line-height: var(--line-height-normal);
      color: #6b7280;
      margin-bottom: 0;
    }

    /* Scroll to top button */
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 56px;
      height: 56px;
      background: var(--gradient-accent);
      color: white;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
      box-shadow: var(--shadow-lg);
    }

    /* Scroll to top button responsive */
    @media (max-width: 768px) {
      .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
      }
    }

    @media (max-width: 480px) {
      .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
      }
    }

    @media (max-width: 768px) {
      .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 0.875rem;
      }
    }

    @media (max-width: 480px) {
      .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 0.8rem;
      }

      .testimonials-content-wrapper {
        width: 100%;
      }

      .testimonial-carousel {
        padding: 1.5rem 1rem;
        margin: 0.75rem 0;
      }

      .testimonial-headline {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
      }

      .testimonial-content {
        font-size: 0.8rem;
        line-height: 1.4;
        padding: 0 0.125rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
      }

      .carousel-controls {
        margin-top: 1rem;
        gap: 0.5rem;
      }

      .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
      }

      .section-title h2 {
        font-size: var(--font-size-xl);
        letter-spacing: 0.2px;
      }

      .section-title h2::after {
        width: 50px;
        height: 2px;
        bottom: -0.375rem;
      }

      .section-title p {
        font-size: var(--font-size-sm);
        margin-top: var(--spacing-sm);
      }

      .testimonials-left-column {
        padding: var(--spacing-lg) var(--spacing-md);
      }

      .testimonials-right-column {
        min-height: 300px;
      }

      .testimonial-card {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-sm);
      }

      .testimonial-content h2 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
        text-align: center;
      }

      .testimonial-content .brand-highlight {
        font-size: var(--font-size-lg);
        margin-top: 0.25rem;
        text-align: center;
      }

      .testimonial-content p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-sm);
        text-align: center;
      }

      .testimonial-headline {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
      }

      .testimonial-text {
        font-size: var(--font-size-sm);
        line-height: 1.4;
        margin-bottom: var(--spacing-md);
      }

      .carousel-controls {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
      }

      .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
      }

      .view-more-btn {
        padding: 0.625rem 1.25rem;
        font-size: var(--font-size-xs);
        margin-top: 1rem;
        min-width: 140px;
      }
    }

    .scroll-top.show {
      opacity: 1;
      visibility: visible;
    }

    .scroll-top:hover {
      background: #D97706;
      transform: translateY(-3px) scale(1.1);
      box-shadow: var(--shadow-xl);
    }

    /* Floating elements for visual appeal */
    .floating-shape {
      position: absolute;
      width: 80px;
      height: 80px;
      background: var(--gradient-accent);
      border-radius: 4px;
      opacity: 0.1;
      animation: float 6s ease-in-out infinite;
    }

    .floating-shape:nth-child(2) {
      animation-delay: -2s;
      animation-duration: 8s;
    }

    .floating-shape:nth-child(3) {
      animation-delay: -4s;
      animation-duration: 10s;
    }

    @keyframes float {

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

      50% {
        transform: translateY(-20px) rotate(180deg);
      }
    }

    /* Enhanced button animations */
    .btn-hero,
    .btn-cta {
      position: relative;
      overflow: hidden;
    }

    .btn-hero::after,
    .btn-cta::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn-hero:active::after,
    .btn-cta:active::after {
      width: 300px;
      height: 300px;
    }

    /* Mobile performance optimizations */
    @media (max-width: 768px) {

      /* Reduce animations on mobile for better performance */
      .btn-hero::after,
      .btn-cta::after {
        display: none;
      }

      /* Optimize hover effects for touch devices */
      .feature-card:hover,
      .gallery-item:hover,
      .testimonial-card:hover,
      .tour-package-card:hover {
        transform: none;
      }

      /* Improve loading performance */
      .carousel-item img {
        will-change: transform;
      }

      /* Better focus states for accessibility */
      .nav-link:focus,
      .btn-hero:focus,
      .btn-cta:focus,
      .package-link:focus {
        outline: 2px solid #F59E0B;
        outline-offset: 2px;
      }
    }

    /* Enhanced card hover effects */
    .feature-card,
    .gallery-item,
    .testimonial-card {
      position: relative;
    }

    .feature-card::after,
    .gallery-item::after,
    .testimonial-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.05) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .feature-card:hover::after,
    .gallery-item:hover::after,
    .testimonial-card:hover::after {
      opacity: 1;
    }

    /* about */
    /* Hero banner - first impression matters */
    .aboutpage_hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      color: white;
      position: relative;
      padding: 0 5%;
      min-height: 100vh;
      min-width: 100vw;
      box-sizing: border-box;
      margin-top: 80px;
    }

    .aboutpage_hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.35) 100%);
      z-index: 1;
    }

    .aboutpage_hero .container {
      position: relative;
      z-index: 2;
    }

    .aboutpage_hero h1 {
      font-family: 'Inter', sans-serif;
      font-size: 2.25rem;
      font-weight: 600;
      margin-bottom: var(--spacing-md);
      letter-spacing: -0.02em;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      color: white;
      line-height: var(--line-height-tight);
      text-align: left;
      animation: slideInLeft 1s ease-out;
    }

    .aboutpage_hero p {
      font-size: var(--font-size-lg);
      margin-bottom: var(--spacing-lg);
      font-weight: 400;
      line-height: var(--line-height-relaxed);
      color: rgba(255, 255, 255, 0.9);
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      text-align: left;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Mobile hero adjustments - making it work on small screens */
    @media (max-width: 768px) {
      .aboutpage_hero {
        height: 100vh;
        width: 100vw;
        min-height: 500px;
        min-width: 100vw;
        text-align: center;
      }

      .aboutpage_hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        text-align: center;
      }

      .aboutpage_hero p {
        font-size: var(--font-size-xs);
        line-height: 1.4;
        margin-bottom: var(--spacing-md);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
    }

    /* Tablet hero adjustments - medium screen optimizations */
    @media (min-width: 769px) and (max-width: 1024px) {
      .aboutpage_hero h1 {
        font-size: 2.25rem;
      }

      .aboutpage_hero p {
        font-size: var(--font-size-base);
      }
    }

    /* Small mobile optimizations - every pixel counts */
    @media (max-width: 480px) {
      .aboutpage_hero {
        min-height: 450px;
      }

      .aboutpage_hero h1 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-xs);
        line-height: 1.1;
      }

      .aboutpage_hero p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-sm);
        line-height: 1.3;
        -webkit-line-clamp: 2;
      }
    }

    /* Landscape mobile optimizations - horizontal screen adjustments */
    @media (max-width: 768px) and (orientation: landscape) {
      .aboutpage_hero {
        height: 100vh;
        min-height: 350px;
      }

      .aboutpage_hero h1 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-xs);
        line-height: 1.1;
      }

      .aboutpage_hero p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
        line-height: 1.2;
        -webkit-line-clamp: 2;
      }
    }

    /* Main content sections - keeping things organized */
    .section {
      padding: var(--spacing-3xl) 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      font-size: var(--font-size-3xl);
      font-weight: 700;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: var(--spacing-md);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      position: relative;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -0.75rem;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }

    .section-title p {
      font-size: var(--font-size-lg);
      color: var(--text-secondary);
      max-width: 700px;
      margin: 0 auto;
      font-weight: 400;
      line-height: var(--line-height-relaxed);
      margin-top: var(--spacing-lg);
    }

    /* About section - three column layout for better content organization */
    .about-section {
      background: #f8f9fa;
      position: relative;
      overflow: hidden;
      padding: 0;
    }

    .about-three-column {
      display: grid;
      grid-template-columns: 1.5fr 1fr 0.7fr;
      min-height: 600px;
      align-items: stretch;
    }

    /* Left column - main content area */
    .about-left-column {
      background: #f8f9fa;
      display: flex;
      align-items: center;
      padding: var(--spacing-3xl);
      position: relative;
    }

    .about-content {
      background: transparent;
      padding: 0;
      border-radius: 0;
      box-shadow: none;
      height: auto;
      border: none;
      position: relative;
      backdrop-filter: none;
    }

    .about-content h2 {
      font-size: var(--font-size-2xl);
      font-weight: 600;
      color: #1f2937;
      margin-bottom: var(--spacing-lg);
      letter-spacing: -0.02em;
      line-height: var(--line-height-tight);
    }

    .brand-highlight {
      font-size: var(--font-size-3xl);
      font-weight: 700;
      color: #1E40AF;
      display: block;
      margin-top: 0.5rem;
    }

    .about-content p {
      font-size: var(--font-size-base);
      line-height: var(--line-height-relaxed);
      color: #6b7280;
      margin-bottom: var(--spacing-xl);
      font-weight: 400;
    }

    .about-btn {
      background: transparent;
      color: #1f2937;
      padding: 0.875rem 2rem;
      border: 2px solid #1f2937;
      text-decoration: none;
      font-weight: 600;
      font-size: var(--font-size-sm);
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      display: inline-block;
      text-transform: uppercase;
    }

    .about-btn:hover {
      background: #1f2937;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(31, 41, 55, 0.2);
    }

    /* Center column - hero image showcase */
    .about-center-column {
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .about-hero-image {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .about-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.4s ease;
    }

    .about-hero-image:hover img {
      transform: scale(1.05);
    }

    /* Right column - benefits and highlights */
    .about-right-column {
      background: #f8f9fa;
      display: flex;
      align-items: center;
      padding: var(--spacing-3xl);
      position: relative;
    }

    .about-benefits {
      width: 100%;
    }

    .about-benefits h3 {
      font-size: var(--font-size-xl);
      font-weight: 600;
      color: #1f2937;
      margin-bottom: var(--spacing-xl);
      letter-spacing: -0.01em;
      text-transform: uppercase;
    }

    .benefits-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .benefits-list li {
      display: flex;
      align-items: center;
      margin-bottom: var(--spacing-md);
      font-size: var(--font-size-base);
      color: #6b7280;
      font-weight: 500;
    }

    .benefits-list li i {
      color: #1E40AF;
      margin-right: var(--spacing-sm);
      font-size: var(--font-size-sm);
      font-weight: 600;
    }

    /* Features section - highlighting our strengths */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .feature-card {
      background: white;
      padding: var(--spacing-2xl);
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      border: 1px solid var(--border-color);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-primary);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    .feature-card h4 {
      font-size: var(--font-size-xl);
      font-weight: 600;
      color: var(--text-color);
      margin-bottom: var(--spacing-md);
    }

    .feature-card p {
      color: var(--text-secondary);
      line-height: var(--line-height-relaxed);
      font-size: var(--font-size-base);
    }

    .about-image {
      border-radius: 0;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
      height: 400px;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .about-image:hover img {
      transform: scale(1.05);
    }

    /* Stats section - showing our achievements */
    .stats-section {
      background: var(--light-color);
      padding: var(--spacing-3xl) 0;
    }

    .stat-item {
      text-align: center;
      padding: var(--spacing-xl);
      background: white;
      border-radius: 0;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .stat-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .stat-item:hover::before {
      left: 100%;
    }

    .stat-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .stat-number {
      font-size: var(--font-size-4xl);
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: var(--spacing-sm);
      letter-spacing: -1px;
      position: relative;
      z-index: 1;
    }

    .stat-label {
      font-size: var(--font-size-lg);
      color: var(--text-color);
      font-weight: 600;
      position: relative;
      z-index: 1;
    }



    /* Team section - introducing our people */
    .aboutpage_team-card {
      background: white;
      border-radius: 0;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      height: 100%;
      margin-bottom: 0;
      border: 1px solid var(--border-color);
      position: relative;
    }

    .aboutpage_team-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
      transition: left 0.5s ease;
      z-index: 1;
    }

    .aboutpage_team-card:hover::before {
      left: 100%;
    }

    .aboutpage_team-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .aboutpage_team-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

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

    .aboutpage_team-card .card-body {
      padding: var(--spacing-xl);
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .aboutpage_team-card h4 {
      font-size: var(--font-size-xl);
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text-color);
    }

    .aboutpage_team-card p {
      color: var(--primary-color);
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .aboutpage_team-social {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

    .aboutpage_team-social a {
      width: 40px;
      height: 40px;
      background: var(--gradient-accent);
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .aboutpage_team-social a:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    /* Enhanced section styling - better visual hierarchy */
    .section {
      position: relative;
    }

    .section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    }

    /* Enhanced Card Interactions */
    .about-content,
    .stat-item,
    .aboutpage_team-card {
      position: relative;
      overflow: hidden;
    }

    .stat-item::after,
    .aboutpage_team-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--gradient-accent);
      transition: width 0.3s ease;
    }

    .stat-item:hover::after,
    .aboutpage_team-card:hover::after {
      width: 100%;
    }



    /* Button Styling */
    .btn-primary {
      background: var(--gradient-primary);
      color: white;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 6px;
      font-weight: 500;
      font-size: var(--font-size-sm);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      letter-spacing: -0.01em;
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      color: white;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-accent {
      background: var(--gradient-accent);
      color: white;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 6px;
      font-weight: 500;
      font-size: var(--font-size-sm);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      letter-spacing: -0.01em;
    }

    .btn-accent:hover {
      background: #D97706;
      color: white;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* Enhanced Animations */
    .fade-in-up {
      animation: fadeInUp 0.6s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .scale-in {
      animation: scaleIn 0.5s ease-out;
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .about-three-column {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .about-left-column,
      .about-right-column {
        padding: var(--spacing-xl);
      }

      .about-center-column {
        min-height: 300px;
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .section-title h2 {
        font-size: var(--font-size-2xl);
      }

      .section-title p {
        font-size: var(--font-size-base);
      }
    }

    @media (max-width: 1024px) and (min-width: 769px) {
      .about-three-column {
        grid-template-columns: 1fr 1fr;
      }

      .about-right-column {
        grid-column: 1 / -1;
        padding: var(--spacing-xl);
      }
    }

    @media (max-width: 991px) {
      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

      .section-title h2 {
        font-size: 2.5rem;
      }

      .about-content {
        padding: 2rem;
      }

      .stat-number {
        font-size: 2.5rem;
      }

      .value-card {
        padding: 2rem;
      }

      .aboutpage_team-card .card-body {
        padding: 1.5rem;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2rem;
      }

      .section {
        padding: 4rem 0;
      }

      .about-content {
        padding: 1.5rem;
      }

      .stat-item {
        padding: 1rem;
      }
    }

    /* Scroll to top button */
    .aboutpage_scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 48px;
      height: 48px;
      background: var(--primary-color);
      color: white;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.2s ease;
      z-index: 1000;
      box-shadow: var(--shadow-md);
    }

    .aboutpage_scroll-top.show {
      opacity: 1;
      visibility: visible;
    }

    .aboutpage_scroll-top:hover {
      background: var(--secondary-color);
      transform: translateY(-1px);
    }

    /* About Section - Modern Card Design */
    .aboutpage_section-modern {
      background: #f8f9fa;
      padding: var(--spacing-3xl) 0;
      position: relative;
    }

    .aboutpage_section-modern::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    }

    .aboutpage_card {
      background: white;
      border-radius: 0;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      position: relative;
    }

    .aboutpage_card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .aboutpage_card-image {
      position: relative;
      height: 280px;
      overflow: hidden;
    }

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

    .aboutpage_card:hover .aboutpage_card-image img {
      transform: scale(1.05);
    }

    .aboutpage_card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .aboutpage_card:hover .aboutpage_card-overlay {
      opacity: 1;
    }

    .aboutpage_card-content {
      padding: var(--spacing-xl);
      position: relative;
    }

    .aboutpage_section-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, #1E40AF 0%, #3730A3 100%);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 0;
      font-size: var(--font-size-sm);
      font-weight: 600;
      margin-bottom: var(--spacing-lg);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .aboutpage_section-badge i {
      font-size: 0.875rem;
    }

    .aboutpage_card-content h2 {
      font-size: var(--font-size-2xl);
      font-weight: 700;
      color: #1f2937;
      margin-bottom: var(--spacing-lg);
      line-height: var(--line-height-tight);
    }

    .aboutpage_card-content h3 {
      font-size: var(--font-size-xl);
      font-weight: 600;
      color: #1f2937;
      margin-bottom: var(--spacing-md);
      line-height: var(--line-height-tight);
    }

    .aboutpage_brand-highlight {
      color: #1E40AF;
      font-weight: 700;
    }

    .aboutpage_card-content p {
      font-size: var(--font-size-base);
      line-height: var(--line-height-relaxed);
      color: #6b7280;
      margin-bottom: var(--spacing-md);
    }

    .aboutpage_stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-md);
      margin-top: var(--spacing-lg);
    }

    .aboutpage_stat-card {
      text-align: center;
      padding: var(--spacing-md);
      background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(30, 64, 175, 0.02) 100%);
      border-radius: 0;
      border: 1px solid rgba(30, 64, 175, 0.1);
      transition: all 0.3s ease;
    }

    .aboutpage_stat-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1);
    }

    .aboutpage_stat-number {
      font-size: var(--font-size-2xl);
      font-weight: 700;
      color: #1E40AF;
      margin-bottom: 0.25rem;
    }

    .aboutpage_stat-label {
      font-size: var(--font-size-sm);
      color: #6b7280;
      font-weight: 500;
    }

    .aboutpage_benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--spacing-lg);
      margin-top: var(--spacing-lg);
    }

    .aboutpage_benefit-card {
      display: flex;
      align-items: flex-start;
      gap: var(--spacing-md);
      padding: var(--spacing-lg);
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0.02) 100%);
      border-radius: 0;
      border: 1px solid rgba(245, 158, 11, 0.1);
      transition: all 0.3s ease;
    }

    .aboutpage_benefit-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.05) 100%);
    }

    .aboutpage_benefit-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
      color: white;
      border-radius: 0;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .aboutpage_benefit-content h4 {
      font-size: var(--font-size-base);
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 0.5rem;
    }

    .aboutpage_benefit-content p {
      font-size: var(--font-size-sm);
      color: #6b7280;
      margin: 0;
      line-height: 1.5;
    }

    /* Button Styles - Matching Index.html */
    .aboutpage_btn-hero {
      background: #F59E0B;
      color: white;
      padding: 0.75rem 1.25rem;
      border: none;
      border-radius: 0;
      font-weight: 500;
      font-size: var(--font-size-sm);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      letter-spacing: -0.01em;
      position: relative;
      overflow: hidden;
    }

    .aboutpage_btn-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .aboutpage_btn-hero:hover {
      background: #D97706;
      color: white;
      transform: translateY(-3px);
      box-shadow: var(--shadow-xl);
    }

    .aboutpage_btn-hero:hover::before {
      left: 100%;
    }

    .aboutpage_btn-view-more {
      background: #F59E0B;
      color: white;
      padding: 0.5rem 0.75rem;
      border-radius: 0;
      font-size: var(--font-size-xs);
      font-weight: 500;
      text-decoration: none;
      letter-spacing: -0.01em;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .aboutpage_btn-view-more:hover {
      background: #D97706;
      color: white;
      transform: translateY(-2px);
    }

    .aboutpage_btn-secondary {
      background: transparent;
      color: #000000;
      padding: 0.75rem 1.25rem;
      border: 2px solid #000000;
      border-radius: 0;
      font-weight: 500;
      font-size: var(--font-size-sm);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      letter-spacing: -0.01em;
    }

    .aboutpage_btn-secondary:hover {
      background: #000000;
      color: white;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* Button Container Styles */
    .aboutpage_button-container {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
      margin-top: var(--spacing-lg);
    }

    .aboutpage_button-container.center {
      justify-content: center;
    }

    .aboutpage_button-container .aboutpage_btn-hero,
    .aboutpage_button-container .aboutpage_btn-secondary {
      flex: 0 0 auto;
      white-space: nowrap;
    }

    /* Scroll to top button */
    .aboutpage_scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 56px;
      height: 56px;
      background: var(--gradient-accent);
      color: white;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
      box-shadow: var(--shadow-lg);
    }

    .aboutpage_scroll-top.show {
      opacity: 1;
      visibility: visible;
    }

    .aboutpage_scroll-top:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-xl);
    }

    /* Scroll to top button responsive */
    @media (max-width: 768px) {
      .aboutpage_scroll-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 0.875rem;
      }
    }

    @media (max-width: 480px) {
      .aboutpage_scroll-top {
        bottom: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 0.8rem;
      }
    }



    /* Value Cards - Photo First Design */
    .value-card {
      background: white;
      border-radius: 0;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
    }

    .value-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .value-image {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

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

    .value-card:hover .value-image img {
      transform: scale(1.05);
    }

    .value-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(245, 158, 11, 0.8) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .value-card:hover .value-overlay {
      opacity: 1;
    }

    .value-icon {
      width: 60px;
      height: 60px;
      background: white;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1E40AF;
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }

    .value-card:hover .value-icon {
      transform: scale(1.1);
      background: #F59E0B;
      color: white;
    }

    .value-content {
      padding: var(--spacing-lg);
    }

    .value-content h4 {
      font-size: var(--font-size-base);
      font-weight: 600;
      color: #1f2937;
      margin-bottom: var(--spacing-sm);
    }

    .value-content p {
      font-size: var(--font-size-sm);
      color: #6b7280;
      line-height: 1.5;
      margin: 0;
    }





    .mission-content {
      max-width: 900px;
      text-align: center;
      color: white;
      padding: 0 2rem;
      z-index: 2;
    }

    .mission-content h3 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 2rem;
      letter-spacing: -0.02em;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .mission-content p {
      font-size: 1.25rem;
      line-height: 1.8;
      margin-bottom: 3rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      opacity: 0.95;
    }

    .mission-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-top: 3rem;
    }

    .mission-stats .stat-item {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
    }

    .mission-stats .stat-item:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .mission-stats .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: #F59E0B;
      margin-bottom: 0.5rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .mission-stats .stat-label {
      font-size: 1rem;
      font-weight: 600;
      color: white;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Why Choose Us Section */
    .why-choose-section {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }

    .why-choose-image {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .why-choose-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .why-choose-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .why-choose-content {
      max-width: 1000px;
      text-align: center;
      color: white;
      padding: 0 2rem;
      z-index: 2;
    }

    .why-choose-content h3 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 3rem;
      letter-spacing: -0.02em;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .benefit-item {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .benefit-item:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .benefit-item i {
      font-size: 2.5rem;
      color: #F59E0B;
      margin-bottom: 0.5rem;
    }

    .benefit-item span {
      font-size: 1.1rem;
      font-weight: 600;
      color: white;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    /* Responsive Design for Premium Layout */
    @media (max-width: 1200px) {

      .story-content h2,
      .mission-content h3,
      .why-choose-content h3 {
        font-size: 2.5rem;
      }

      .story-content p,
      .mission-content p {
        font-size: 1.1rem;
      }

      .mission-stats {
        gap: 2rem;
      }

      .benefits-grid {
        gap: 1.5rem;
      }
    }

    @media (max-width: 991px) {

      .story-hero,
      .mission-section,
      .why-choose-section {
        height: 80vh;
        min-height: 500px;
      }

      .story-content h2,
      .mission-content h3,
      .why-choose-content h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
      }

      .story-content p,
      .mission-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
      }

      .mission-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
      }

      .mission-stats .stat-item {
        padding: 1.5rem;
      }

      .mission-stats .stat-number {
        font-size: 2rem;
      }

      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }

      .benefit-item {
        padding: 1.5rem;
      }

      .benefit-item i {
        font-size: 2rem;
      }

      .benefit-item span {
        font-size: 1rem;
      }
    }

    /* Responsive Styles for Modern Card Design */
    @media (max-width: 768px) {
      .aboutpage_section-modern {
        padding: var(--spacing-xl) 0;
      }

      .aboutpage_card {
        margin-bottom: var(--spacing-lg);
      }

      .aboutpage_card-image {
        height: 200px;
      }

      .aboutpage_card-content {
        padding: var(--spacing-lg);
      }

      .aboutpage_section-badge {
        font-size: var(--font-size-xs);
        padding: 0.375rem 0.75rem;
      }

      .aboutpage_card-content h2 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-md);
      }

      .aboutpage_card-content h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
      }

      .aboutpage_card-content p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-sm);
      }

      .aboutpage_stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
      }

      .aboutpage_stat-card {
        padding: var(--spacing-sm);
      }

      .aboutpage_stat-number {
        font-size: var(--font-size-lg);
      }

      .aboutpage_stat-label {
        font-size: var(--font-size-xs);
      }

      .aboutpage_benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-top: var(--spacing-md);
      }

      .aboutpage_benefit-card {
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
      }

      .aboutpage_benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }

      .aboutpage_benefit-content h4 {
        font-size: var(--font-size-sm);
        margin-bottom: 0.25rem;
      }

      .aboutpage_benefit-content p {
        font-size: var(--font-size-xs);
      }

      /* Button responsive styles */
      .aboutpage_button-container {
        gap: 0.75rem;
        margin-top: var(--spacing-md);
      }

      .aboutpage_btn-hero,
      .aboutpage_btn-secondary {
        padding: 0.625rem 1rem;
        font-size: var(--font-size-xs);
      }

      .aboutpage_button-container.center {
        flex-direction: column;
        align-items: stretch;
      }

      .aboutpage_button-container.center .aboutpage_btn-hero,
      .aboutpage_button-container.center .aboutpage_btn-secondary {
        width: 100%;
        text-align: center;
      }
    }

    @media (max-width: 576px) {
      .aboutpage_section-modern {
        padding: var(--spacing-lg) 0;
      }

      .aboutpage_card-image {
        height: 180px;
      }

      .aboutpage_card-content {
        padding: var(--spacing-md);
      }

      .aboutpage_section-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
      }

      .aboutpage_card-content h2 {
        font-size: var(--font-size-lg);
      }

      .aboutpage_card-content h3 {
        font-size: var(--font-size-base);
      }

      .aboutpage_stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
      }

      .aboutpage_stat-card {
        padding: var(--spacing-xs);
      }

      .aboutpage_stat-number {
        font-size: var(--font-size-base);
      }

      .aboutpage_stat-label {
        font-size: 0.75rem;
      }

      .aboutpage_benefit-card {
        padding: var(--spacing-sm);
      }

      .aboutpage_benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
      }

      .aboutpage_benefit-content h4 {
        font-size: 0.875rem;
      }

      .aboutpage_benefit-content p {
        font-size: 0.75rem;
      }

      /* Button responsive styles for small mobile */
      .aboutpage_button-container {
        gap: 0.5rem;
        margin-top: var(--spacing-sm);
      }

      .aboutpage_btn-hero,
      .aboutpage_btn-secondary {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
      }

      .aboutpage_button-container.center {
        flex-direction: column;
        align-items: stretch;
      }

      .aboutpage_button-container.center .aboutpage_btn-hero,
      .aboutpage_button-container.center .aboutpage_btn-secondary {
        width: 100%;
        text-align: center;
      }
    }

    @media (max-width: 576px) {

      .story-hero,
      .mission-section,
      .why-choose-section {
        height: 60vh;
        min-height: 350px;
      }

      .story-content h2,
      .mission-content h3,
      .why-choose-content h3 {
        font-size: 1.5rem;
      }

      .story-content p,
      .mission-content p {
        font-size: 0.9rem;
      }

      .mission-stats .stat-number {
        font-size: 1.5rem;
      }

      .mission-stats .stat-label {
        font-size: 0.8rem;
      }

      .benefit-item {
        padding: 0.75rem;
      }

      .benefit-item i {
        font-size: 1.25rem;
      }

      .benefit-item span {
        font-size: 0.85rem;
      }
    }

    /* tour packages */
    /* Hero Section */
    .packagespage_hero {
      height: 60vh;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      margin-top: 76px;
    }

    .packagespage_hero-content h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .packagespage_hero-content p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Section Styling */
    .section {
      padding: var(--spacing-3xl) 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: var(--spacing-2xl);
    }

    .section-title h2 {
      font-size: var(--font-size-3xl);
      font-weight: 700;
      color: var(--text-color);
      margin-bottom: var(--spacing-md);
      position: relative;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -0.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--gradient-accent);
      border-radius: 2px;
    }

    .section-title p {
      font-size: var(--font-size-lg);
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
    }

    /* Package Cards */
    .packagespage_package-card {
      background: white;
      border-radius: 0;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      height: 100%;
      margin-bottom: 0;
      border: 1px solid var(--border-color);
    }

    .packagespage_package-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    /* Package filtering animations */
    .packagespage_package-item {
      transition: all 0.5s ease;
      opacity: 1;
      transform: scale(1);
    }

    .packagespage_package-item.hidden {
      opacity: 0;
      transform: scale(0.8);
      pointer-events: none;
    }

    .packagespage_package-item.show {
      opacity: 1;
      transform: scale(1);
      animation: fadeInUp 0.6s ease forwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* Category tab animations */
    .packagespage_category-tab {
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .packagespage_category-tab::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .packagespage_category-tab:hover::before {
      left: 100%;
    }

    .packagespage_category-tab.active {
      transform: scale(1.05);
    }

    .packagespage_package-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .packagespage_package-card .card-body {
      padding: var(--spacing-xl);
    }

    .packagespage_package-card h3 {
      font-size: var(--font-size-xl);
      font-weight: 600;
      color: var(--text-color);
      margin-bottom: var(--spacing-md);
    }

    .packagespage_package-card p {
      color: var(--text-secondary);
      margin-bottom: var(--spacing-lg);
      font-size: var(--font-size-base);
      line-height: var(--line-height-relaxed);
    }

    .packagespage_package-features {
      list-style: none;
      padding: 0;
      margin-bottom: 1.5rem;
    }

    .packagespage_package-features li {
      padding: 0.5rem 0;
      color: var(--text-secondary);
    }

    .packagespage_package-features li i {
      color: var(--accent-color);
      margin-right: 0.5rem;
    }

    .packagespage_package-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--accent-color);
      margin-bottom: 1rem;
    }

    .packagespage_btn-book {
      background: var(--gradient-accent);
      color: white;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 0;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .packagespage_btn-book:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    /* Package Categories */
    .packagespage_category-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    .packagespage_category-tab {
      background: white;
      border: 1px solid var(--accent-color);
      color: var(--accent-color);
      padding: 0.75rem 1.5rem;
      margin: 0.25rem;
      border-radius: 0;
      text-decoration: none;
      transition: all 0.3s ease;
      font-weight: 600;
    }

    .packagespage_category-tab:hover,
    .packagespage_category-tab.active {
      background: var(--gradient-accent);
      color: white;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }





    /* Responsive Design */
    @media (max-width: 768px) {
      .packagespage_hero h1 {
        font-size: 2.5rem;
      }

      .packagespage_hero p {
        font-size: 1rem;
      }

      .section-title h2 {
        font-size: 2rem;
      }

      .packagespage_package-card .card-body {
        padding: 1.5rem;
      }

      .packagespage_category-tabs {
        flex-direction: column;
        align-items: center;
      }

      .packagespage_category-tab {
        width: 200px;
        text-align: center;
      }
    }

    @media (max-width: 576px) {
      .packagespage_hero h1 {
        font-size: 2rem;
      }

      .section {
        padding: 3rem 0;
      }

      .packagespage_package-card img {
        height: 200px;
      }
    }

    /* Scroll to top button */
    .packagespage_scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 56px;
      height: 56px;
      background: var(--gradient-accent);
      color: white;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
      box-shadow: var(--shadow-lg);
    }

    .packagespage_scroll-top.show {
      opacity: 1;
      visibility: visible;
    }

    .packagespage_scroll-top:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-xl);
    }

    /* Scroll to top button responsive */
    @media (max-width: 768px) {
      .packagespage_scroll-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 0.875rem;
      }
    }

    @media (max-width: 480px) {
      .packagespage_scroll-top {
        bottom: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 0.8rem;
      }
    }

    /* things to do */

    /* Hero banner - first impression matters */
    .thingstodopage_hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    .thingstodopage_hero-content h1 {
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      letter-spacing: -1px;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .thingstodopage_hero-content p {
      font-size: 1.5rem;
      margin-bottom: 2.5rem;
      font-weight: 400;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .thingstodopage_btn-hero {
      background: var(--gradient-accent);
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 0;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      box-shadow: var(--shadow-md);
      letter-spacing: 0.025em;
    }

    .thingstodopage_btn-hero:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      color: white;
    }

    /* Main content sections - keeping things organized */
    .section {
      padding: var(--spacing-3xl) 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: var(--spacing-2xl);
    }

    .section-title h2 {
      font-size: var(--font-size-3xl);
      font-weight: 700;
      color: var(--text-color);
      margin-bottom: var(--spacing-md);
      letter-spacing: -0.025em;
      position: relative;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -0.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--gradient-accent);
      border-radius: 2px;
    }

    .section-title p {
      font-size: var(--font-size-lg);
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
      line-height: var(--line-height-relaxed);
    }

    /* Activity cards - showcasing what visitors can do */
    .thingstodopage_activity-card {
      background: white;
      border-radius: 0;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      height: 100%;
      margin-bottom: 0;
      border: 1px solid var(--border-color);
    }

    .thingstodopage_activity-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .thingstodopage_activity-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .thingstodopage_activity-card .card-body {
      padding: var(--spacing-xl);
    }

    .thingstodopage_activity-card h3 {
      font-size: var(--font-size-xl);
      font-weight: 600;
      color: var(--text-color);
      margin-bottom: var(--spacing-md);
    }

    .thingstodopage_activity-card p {
      color: var(--text-secondary);
      margin-bottom: var(--spacing-lg);
      font-size: var(--font-size-base);
      line-height: var(--line-height-relaxed);
    }

    .thingstodopage_activity-icon {
      width: 48px;
      height: 48px;
      background: var(--gradient-accent);
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    /* Gallery - visual showcase of activities */
    .thingstodopage_gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .thingstodopage_gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 0;
      height: 250px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
    }

    .thingstodopage_gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .thingstodopage_gallery-item:hover img {
      transform: scale(1.1);
    }

    .thingstodopage_gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
      color: white;
      padding: 2rem 1.5rem 1.5rem;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }

    .thingstodopage_gallery-item:hover .thingstodopage_gallery-overlay {
      transform: translateY(0);
    }

    /* Contact section - getting in touch */
    .thingstodopage_contact-section {
      background: var(--light-color);
    }

    /* Contact CTA section - encouraging visitors to reach out */
    .thingstodopage_contact-cta {
      background: white;
      border-radius: 0;
      padding: var(--spacing-2xl);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
    }

    .thingstodopage_contact-text {
      font-size: var(--font-size-lg);
      color: var(--text-secondary);
      margin-bottom: var(--spacing-xl);
      line-height: var(--line-height-relaxed);
    }

    .thingstodopage_btn-contact {
      background: var(--gradient-accent);
      color: white;
      padding: 0.75rem 2rem;
      border: none;
      border-radius: 0;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      font-size: var(--font-size-base);
    }

    .thingstodopage_btn-contact:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      color: white;
    }



    /* Responsive design - making sure it works everywhere */
    @media (max-width: 768px) {
      .thingstodopage_hero {
        height: 70vh;
      }

      .thingstodopage_hero h1 {
        font-size: 2.5rem;
      }

      .thingstodopage_hero p {
        font-size: 1.1rem;
      }

      .section-title h2 {
        font-size: 2rem;
      }

      .thingstodopage_activity-card .card-body {
        padding: 1.5rem;
      }

      .contact-form {
        padding: 2rem;
      }

      .thingstodopage_gallery-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
      .thingstodopage_hero h1 {
        font-size: 2rem;
      }

      .section {
        padding: 3rem 0;
      }

      .thingstodopage_activity-card img {
        height: 200px;
      }
    }

    /* Scroll to top button - convenience feature for users */
    .thingstodopage_scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 56px;
      height: 56px;
      background: var(--gradient-accent);
      color: white;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
      box-shadow: var(--shadow-lg);
    }

    .thingstodopage_scroll-top.show {
      opacity: 1;
      visibility: visible;
    }

    .thingstodopage_scroll-top:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-xl);
    }

    /* Scroll button mobile adjustments - smaller on mobile */
    @media (max-width: 768px) {
      .thingstodopage_scroll-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 0.875rem;
      }
    }

    @media (max-width: 480px) {
      .thingstodopage_scroll-top {
        bottom: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 0.8rem;
      }
    }

    /* top attractions */

    /* Hero Section */
    .attractionspage_hero {
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      margin-top: 76px;
    }

    .attractionspage_hero-content h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .attractionspage_hero-content p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Section Styling */
    .section {
      padding: var(--spacing-3xl) 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: var(--spacing-2xl);
    }

    .section-title h2 {
      font-size: var(--font-size-3xl);
      font-weight: 700;
      color: var(--text-color);
      margin-bottom: var(--spacing-md);
      position: relative;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -0.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--gradient-accent);
      border-radius: 2px;
    }

    .section-title p {
      font-size: var(--font-size-lg);
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
    }

    /* Attraction Cards */
    .attractionspage_attraction-card {
      background: white;
      border-radius: 0;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      height: 100%;
      margin-bottom: 0;
      border: 1px solid var(--border-color);
    }

    .attractionspage_attraction-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .attractionspage_attraction-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .attractionspage_attraction-card .card-body {
      padding: var(--spacing-xl);
    }

    .attractionspage_attraction-card h3 {
      font-size: var(--font-size-xl);
      font-weight: 600;
      color: var(--text-color);
      margin-bottom: var(--spacing-md);
    }

    .attractionspage_attraction-card p {
      color: var(--text-secondary);
      margin-bottom: var(--spacing-lg);
      font-size: var(--font-size-base);
      line-height: var(--line-height-relaxed);
    }

    .attractionspage_attraction-icon {
      width: 48px;
      height: 48px;
      background: var(--gradient-accent);
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .attractionspage_btn-explore {
      background: var(--gradient-accent);
      color: white;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 0;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .attractionspage_btn-explore:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      color: white;
    }

    /* Featured Attraction */
    .attractionspage_featured-attraction {
      background: var(--gradient-accent);
      color: white;
      border-radius: 0;
      padding: 2.5rem;
      margin-bottom: 3rem;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border-color);
    }

    .attractionspage_featured-attraction::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transform: translate(100px, -100px);
    }

    .attractionspage_featured-content {
      position: relative;
      z-index: 2;
    }



    /* Responsive Design */
    @media (max-width: 768px) {
      .attractionspage_hero h1 {
        font-size: 2.5rem;
      }

      .attractionspage_hero p {
        font-size: 1rem;
      }

      .section-title h2 {
        font-size: 2rem;
      }

      .attractionspage_attraction-card .card-body {
        padding: 1.5rem;
      }

      .attractionspage_featured-attraction {
        padding: 2rem;
      }
    }

    @media (max-width: 576px) {
      .attractionspage_hero h1 {
        font-size: 2rem;
      }

      .section {
        padding: 3rem 0;
      }

      .attractionspage_attraction-card img {
        height: 200px;
      }

      .attractionspage_featured-attraction {
        padding: 1.5rem;
      }
    }

    /* Footer Responsive */


    /* Scroll to top button */
    .attractionspage_scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 56px;
      height: 56px;
      background: var(--gradient-accent);
      color: white;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
      box-shadow: var(--shadow-lg);
    }

    .attractionspage_scroll-top.show {
      opacity: 1;
      visibility: visible;
    }

    .attractionspage_scroll-top:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-xl);
    }

    /* Scroll to top button responsive */
    @media (max-width: 768px) {
      .attractionspage_scroll-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 0.875rem;
      }
    }

    @media (max-width: 480px) {
      .attractionspage_scroll-top {
        bottom: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 0.8rem;
      }
    }

    /* contact page */
    /* Hero banner - first impression matters */
    .contactpage_hero {
      height: 60vh;
      margin-top: 0;
      /* Body padding handles the spacing for fixed nav */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      margin-top: 76px;
    }

    .contactpage_hero-content h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: -0.025em;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .contactpage_hero-content p {
      font-size: 1.125rem;
      margin-bottom: 2rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    /* Main content sections - keeping things organized */
    .section {
      padding: var(--spacing-3xl) 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: var(--spacing-2xl);
    }

    .section-title h2 {
      font-size: var(--font-size-3xl);
      font-weight: 700;
      color: var(--text-color);
      margin-bottom: var(--spacing-md);
      position: relative;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -0.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--gradient-accent);
      border-radius: 2px;
    }

    .section-title p {
      font-size: var(--font-size-lg);
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
    }

    /* Contact form styling - making it user-friendly */
    .contactpage_contact-form {
      background: white;
      padding: 3rem;
      border-radius: 0;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
    }

    .contactpage_contact-form .form-control {
      border: 1px solid var(--border-color);
      border-radius: 0;
      padding: 1rem;
      margin-bottom: 1.5rem;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .contactpage_contact-form .form-control:focus {
      border-color: var(--accent-color);
      box-shadow: none;
    }

    .contactpage_btn-submit {
      background: var(--gradient-accent);
      color: white;
      padding: 0.875rem 1.75rem;
      border: none;
      border-radius: 0;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .contactpage_btn-submit:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      color: white;
    }

    /* Contact information display - easy to read and scan */
    .contactpage_contact-info {
      background: var(--light-color);
      padding: 2.5rem;
      border-radius: 0;
      height: 100%;
      border: 1px solid var(--border-color);
    }

    .contactpage_contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 2rem;
    }

    .contactpage_contact-icon {
      width: 48px;
      height: 48px;
      background: var(--gradient-accent);
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.25rem;
      margin-right: 1.5rem;
    }

    .contactpage_contact-details h4 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .contactpage_contact-details p {
      color: #666;
      margin: 0;
    }

    /* Google Maps integration - helping visitors find us */
    .contactpage_map-section {
      background: var(--light-color);
      padding: 3rem 0;
    }

    .contactpage_map-container {
      border-radius: 0;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
    }











    /* Responsive design - making sure it works everywhere */
    @media (max-width: 768px) {
      .contactpage_hero h1 {
        font-size: 2.5rem;
      }

      .contactpage_hero p {
        font-size: 1rem;
      }

      .section-title h2 {
        font-size: 2rem;
      }

      .contactpage_contact-form {
        padding: 2rem;
      }

      .contactpage_contact-info {
        padding: 2rem;
        margin-top: 2rem;
      }
    }

    @media (max-width: 576px) {
      .contactpage_hero h1 {
        font-size: 2rem;
      }

      .section {
        padding: 3rem 0;
      }

      .contactpage_contact-form {
        padding: 1.5rem;
      }

      .contactpage_contact-info {
        padding: 1.5rem;
      }
    }





    /* Scroll to top button - convenience feature for users */
    .contactpage_scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 56px;
      height: 56px;
      background: var(--gradient-accent);
      color: white;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
      box-shadow: var(--shadow-lg);
    }

    .contactpage_scroll-top.show {
      opacity: 1;
      visibility: visible;
    }

    .contactpage_scroll-top:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-xl);
    }

    /* Scroll button mobile adjustments - smaller on mobile */
    @media (max-width: 768px) {
      .contactpage_scroll-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 0.875rem;
      }
    }

    @media (max-width: 480px) {
      .contactpage_scroll-top {
        bottom: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 0.8rem;
      }
    }

    /* Attraction Detail Page Styles */
    .hero {
      height: 70vh;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      margin-top: 76px;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: -0.025em;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .attraction-details {
      background: white;
      border-radius: 0;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
      overflow: hidden;
    }

    .attraction-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .attraction-content {
      padding: 3rem;
    }

    .attraction-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text-color);
      margin-bottom: 1rem;
      letter-spacing: -0.025em;
    }

    .attraction-location {
      color: var(--accent-color);
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    .attraction-description {
      font-size: 1.125rem;
      line-height: 1.8;
      color: var(--text-secondary);
      margin-bottom: 2rem;
    }

    .attraction-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .info-item {
      background: var(--light-color);
      padding: 1.5rem;
      border-radius: 0;
      border: 1px solid var(--border-color);
    }

    .info-item h4 {
      color: var(--accent-color);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .info-item p {
      color: var(--text-secondary);
      margin: 0;
    }

    .back-btn {
      background: var(--gradient-accent);
      color: white;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 0;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
      transition: all 0.3s ease;
      margin-bottom: 2rem;
    }

    .back-btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      color: white;
    }

    /* Attraction Actions */
    .attraction-actions {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .btn-book {
      background: var(--gradient-accent);
      color: white;
      padding: 0.875rem 1.75rem;
      border: none;
      border-radius: 0;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-book:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      color: white;
    }

    .btn-contact {
      background: transparent;
      color: var(--text-color);
      padding: 0.875rem 1.75rem;
      border: 2px solid var(--text-color);
      border-radius: 0;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-contact:hover {
      background: var(--text-color);
      color: white;
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .loading {
      text-align: center;
      padding: 4rem 0;
    }

    .loading h2 {
      color: var(--text-secondary);
      margin-bottom: 1rem;
    }

    .spinner {
      width: 40px;
      height: 40px;
      border: 4px solid var(--border-color);
      border-top: 4px solid var(--primary-color);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto;
    }

    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    /* Attraction Details Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

      .attraction-content {
        padding: 2rem;
      }

      .attraction-title {
        font-size: 2rem;
      }

      .attraction-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .info-item {
        padding: 1.25rem;
      }
    }

    @media (max-width: 576px) {
      .attraction-title {
        font-size: 1.75rem;
      }

      .attraction-content {
        padding: 1.5rem;
      }

      .attraction-image {
        height: 300px;
      }

      .back-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
      }

      .attraction-actions {
        flex-direction: column;
        gap: 0.75rem;
      }

      .btn-book,
      .btn-contact {
        text-align: center;
        padding: 0.75rem 1.5rem;
      }
    }