@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #FF8C42;
    --secondary-color: #FF6B35;
    --accent-color: #FFB347;
    --text-color: #333333;
    --light-bg: #ffffff;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --border-radius: 20px;
  }
  
  /* Why Choose Us Section */
  .why-choose-us {
    padding: 100px 0;
    background-color: #f8f9fa;
  }
  
  .why-choose-content {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  
  .why-choose-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .why-choose-image:hover img {
    transform: scale(1.03);
  }
  
  .why-choose-text {
    flex: 1;
    max-width: 550px;
  }
  
  .section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  
  .why-choose-us h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .section-description {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .features-list {
    margin: 30px 0;
  }
  
  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .feature-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 5px;
  }
  
  .feature-item h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 5px;
  }
  
  .feature-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .why-choose-content {
      flex-direction: column;
    }
    
    .why-choose-text {
      max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .why-choose-us {
      padding: 60px 0;
    }
    
    .why-choose-us h2 {
      font-size: 28px;
    }
  }
  
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--white);
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
  }
  
  /* Custom Cursor */
  .cursor {
    display: none; /* Hide the main cursor dot */
  }
  
  .cursor-follower {
    display: none; /* Hide the follower cursor */
  }
  
  /* Reset cursor to default for all elements */
  * {
    cursor: default !important;
  }
  
  /* Add pointer cursor for clickable elements */
  a, button, .btn, [role="button"], [onclick] {
    cursor: pointer !important;
  }
  
  /* Header & Navigation */
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .header {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    padding: 1rem 0;
  }
  
  .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
  }
  
  .logo {
    flex: 0 0 auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
  }
  
  .logo:hover {
    transform: scale(1.05) translateY(-2px);
  }
  
  .logo h1 {
    font-size: 1.6rem;
    color: #222;
    margin: 0;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
    text-transform: none;
    font-variant: normal;
  }
  
  .logo h1:hover {
    color: var(--primary-color);
  }
  
  .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    -webkit-text-fill-color: var(--primary-color);
  }
  
  .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .logo:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .nav-content {
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
  }
  
  .nav-links {
    display: flex;
    gap: 1.5rem;
    margin-right: 2rem;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .search-btn,
  .mobile-menu {
    background: none;
    border: none;
    color: #555;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .search-btn:hover {
    color: var(--white);
    background-color: var(--primary-color);
  }
  
  /* Search Modal */
  .search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .search-modal.active {
    opacity: 1;
    visibility: visible;
  }
  
  .search-modal-content {
    width: 90%;
    max-width: 700px;
    position: relative;
    animation: slideDown 0.4s ease;
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .search-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
  }
  
  .search-box {
    position: relative;
    margin-bottom: 2rem;
  }
  
  .search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
  }
  
  .search-box input {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 60px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    background: white;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
  }
  
  .search-box input:focus {
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.3);
  }
  
  .search-results {
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border-radius: 15px;
    padding: 1rem;
  }
  
  .search-results::-webkit-scrollbar {
    width: 8px;
  }
  
  .search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  .search-results::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }
  
  .search-hint,
  .no-results {
    text-align: center;
    color: #999;
    padding: 2rem;
    font-size: 1rem;
  }
  
  .search-result-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
  }
  
  .search-result-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
  }
  
  .search-result-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
  }
  
  .search-result-item h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    color: #222;
  }
  
  .search-result-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
  }
  
  @media (max-width: 768px) {
    .search-modal {
      padding-top: 80px;
    }
    
    .search-modal-content {
      width: 95%;
    }
    
    .search-box input {
      font-size: 1rem;
      padding: 1rem 1rem 1rem 50px;
    }
    
    .search-results {
      max-height: 300px;
    }
  }
  
  .nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
  }
  
  .nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: transform 0.3s ease;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary-color);
  }
  
  .nav-links a:hover::before,
  .nav-links a.active::before {
    transform: translateX(-50%) scaleX(0.7);
  }
  
  .nav-links a::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    bottom: 0;
    left: 20%;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #222;
  }
  
  .nav-links a:hover::before,
  .nav-links a.active::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .nav-links a.active {
    color: #222;
    font-weight: 600;
  }
  
  .nav-links a.active::before {
    transform: scaleX(1);
  }
  
  .theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
  }
  
  /* Mobile Menu Button */
  .mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }
  
  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    display: block;
    background-color: #333;
    position: absolute;
    height: 2px;
    width: 24px;
    transition: transform 0.3s ease;
  }
  
  .menu-icon::before,
  .menu-icon::after {
    content: '';
  }
  
  .menu-icon::before {
    transform: translateY(-6px);
  }
  
  .menu-icon::after {
    transform: translateY(6px);
  }
  
  /* Mobile menu styles */
  @media (max-width: 992px) {
    .nav-content {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background: white;
      flex-direction: column;
      justify-content: flex-start;
      padding: 6rem 2rem 2rem;
      box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
      transition: right 0.4s ease;
      z-index: 1000;
    }
    
    .nav-content.active {
      right: 0;
    }
    
    .nav-links {
      flex-direction: column;
      width: 100%;
      margin: 2rem 0;
    }
    
    .nav-links a {
      padding: 0.8rem 0;
      display: block;
      border-radius: 0;
      border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links a::before {
      display: none;
    }
    
    .header-actions {
      margin-top: auto;
      width: 100%;
      justify-content: center;
      padding-top: 2rem;
      border-top: 1px solid #f0f0f0;
    }
    
    .mobile-menu {
      display: flex;
      z-index: 1002;
    }
    
    .mobile-menu.active .menu-icon {
      background-color: transparent;
    }
    
    .mobile-menu.active .menu-icon::before {
      transform: rotate(45deg);
    }
    
    .mobile-menu.active .menu-icon::after {
      transform: rotate(-45deg);
    }
    
    .mobile-menu.active .menu-icon::before,
    .mobile-menu.active .menu-icon::after {
      background-color: var(--primary-color);
    }
    
    .header.scrolled {
      padding: 0.8rem 0;
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      padding: 1.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      gap: 1.5rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
  
    .nav-links.active {
      display: flex;
      animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
  
    .mobile-menu {
      display: block;
    }
  
    .theme-toggle {
      margin-right: 0.5rem;
    }
  
    .nav-links a {
      font-size: 1.1rem;
      padding: 0.8rem 0;
      text-align: center;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
  
    .nav-links a:hover {
      background: rgba(37, 99, 235, 0.1);
      transform: translateX(5px);
    }
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
                url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: white;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: white;
  }
  
  .hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.7;
  }
  
  .animated-heading {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
  }
  
  .animated-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.3s forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
  }
  
  .cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 108, 53, 0.3);
  }
  
  .cta-button i {
    transition: var(--transition);
  }
  
  .cta-button:hover i {
    transform: translateX(5px);
  }
  
  .hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .stat-item {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
  }
  
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: #eee;
  }
  
  .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
  }
  
  .stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
  }
  
  /* Destinations Section */
  .destinations {
    padding: 8rem 2rem 6rem;
    background-color: var(--white);
    text-align: center;
  }
  
  .destinations h2,
  .packages h2,
  .about h2,
  .contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .destinations h2::after,
  .packages h2::after,
  .about h2::after,
  .contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
  }
  
  .destination-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
  }
  
  .destination-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
  }
  
  .destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 140, 66, 0.15);
  }
  
  .card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
  }
  
  .card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .destination-card:hover .card-image img {
    transform: scale(1.1);
  }
  
  .card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .card-content {
    padding: 1.5rem;
    position: relative;
  }
  
  .card-category {
    display: inline-block;
    background-color: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .section-tag {
    display: inline-block;
    background-color: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .card-content h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #222;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
  }
  
  .card-content p {
    color: #666;
    margin-bottom: 1rem;
  }
  
  .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #777;
    font-size: 0.9rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
  }
  
  /* Packages Section */
  /* ===== Packages Section — Premium Redesign ===== */
  .packages {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #faf8f5 0%, #f3efe9 100%);
    text-align: center;
  }

  .pkg-section-head {
    max-width: 600px;
    margin: 0 auto 3.5rem;
  }

  .pkg-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
  }

  .pkg-section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }

  .pkg-section-head h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0.75rem auto 0;
    border-radius: 3px;
  }

  .pkg-section-head p {
    color: #718096;
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .pkg-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .pkg-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
  }

  .pkg-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
  }

  /* Image area */
  .pkg-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
  }

  .pkg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .pkg-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 40%,
      rgba(0,0,0,0.55) 100%
    );
    pointer-events: none;
  }

  .pkg-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    color: var(--secondary-color);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }

  .pkg-badge i { font-size: 0.65rem; }

  .pkg-img-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 2;
  }

  .pkg-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
  }

  /* Card body */
  .pkg-body {
    padding: 1.75rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .pkg-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
    font-weight: 700;
  }

  .pkg-route {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .pkg-route i {
    color: var(--primary-color);
    margin-top: 0.15rem;
    flex-shrink: 0;
    font-size: 0.8rem;
  }

  .pkg-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
  }

  .pkg-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: #faf5ef;
    border: 1px solid #f0e6d8;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #5a4a3a;
    transition: all 0.3s;
  }

  .pkg-highlights span i {
    color: var(--primary-color);
    font-size: 0.68rem;
  }

  .pkg-card:hover .pkg-highlights span {
    background: #fff5eb;
    border-color: #ffd9b3;
  }

  /* Actions */
  .pkg-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f0ebe4;
  }

  .pkg-btn-details {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,107,53,0.25);
  }

  .pkg-btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.35);
  }

  .pkg-btn-details i {
    font-size: 0.75rem;
    transition: transform 0.3s;
  }

  .pkg-btn-details:hover i {
    transform: translateX(4px);
  }

  .pkg-btn-wa {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37,211,102,0.25);
  }

  .pkg-btn-wa:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.35);
  }

  /* Show more */
  .pkg-more {
    text-align: center;
    margin-top: 3.5rem;
  }

  .pkg-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
  }

  .pkg-more-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,140,66,0.3);
  }

  .pkg-more-btn i {
    transition: transform 0.3s;
    font-size: 0.85rem;
  }

  .pkg-more-btn:hover i {
    transform: translateX(6px);
  }

  /* Responsive packages */
  @media (max-width: 1024px) {
    .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .pkg-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .pkg-img-wrap { height: 220px; }
    .packages { padding: 4rem 1.5rem; }
  }

  @media (max-width: 480px) {
    .pkg-grid { max-width: 100%; }
    .pkg-body { padding: 1.5rem 1.25rem 1.25rem; }
  }
  
  /* About Section */
  .about {
    padding: 5rem 1rem;
    background: var(--light-bg);
  }
  
  .about-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-intro {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .about-intro h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .about-intro p {
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.8;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .about-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
  }
  
  .about-card:hover {
    transform: translateY(-5px);
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }
  
  .card-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .about-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
  
  /* About Section Styles */
  .about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1616316661685-9c32c7ecfd41?q=80&w=2831&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
    margin-bottom: 60px;
  }

  .about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .about-hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
  }

  .about-intro {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
  }

  .about-intro-content {
    flex: 1;
  }

  .about-intro-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }

  .about-intro-image:hover img {
    transform: scale(1.03);
  }

  .about-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
  }

  .stat-item {
    text-align: center;
    flex: 1;
  }

  .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 1rem;
    color: #666;
  }

  .mission-vision {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
  }

  .mission-card, .vision-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
  }

  .mission-card .card-icon, .vision-card .card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }

  .mission-card i, .vision-card i {
    font-size: 30px;
    color: var(--primary-color);
  }

  .mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .mission-card p, .vision-card p {
    color: #666;
    line-height: 1.7;
  }

  .team-section {
    margin-bottom: 80px;
    text-align: center;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .team-member {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .team-member:hover {
    transform: translateY(-10px);
  }

  .member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
  }

  .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
  }

  .bio {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
  }

  .social-links a:hover {
    background: var(--primary-color);
    color: white;
  }

  .testimonials-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
  }

  .tm-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .tm-header .section-tag {
    display: inline-block;
    margin-bottom: 1rem;
  }

  .tm-header h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
  }

  .tm-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0.75rem auto 0;
    border-radius: 3px;
  }

  .tm-subtitle {
    color: #718096;
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .tm-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
  }

  .tm-track {
    position: relative;
    min-height: 340px;
  }

  .tm-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem 2.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tm-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    position: relative;
  }

  .tm-quote-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .tm-quote-icon i {
    color: white;
    font-size: 1.4rem;
  }

  .tm-text {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    max-width: 580px;
  }

  .tm-stars {
    color: #f6ad55;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 4px;
  }

  .tm-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .tm-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0ebe4;
  }

  .tm-name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1.05rem;
    font-family: 'Playfair Display', serif;
  }

  .tm-location {
    color: #a0aec0;
    font-size: 0.85rem;
    margin-top: 2px;
  }

  .tm-location i {
    color: var(--primary-color);
    margin-right: 4px;
    font-size: 0.75rem;
  }

  /* Dots */
  .tm-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 10px;
  }

  .tm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .tm-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.2);
  }

  .tm-dot:hover {
    background: #a0aec0;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .testimonials-modern {
      padding: 60px 0;
    }

    .tm-header h2 {
      font-size: 1.8rem;
    }

    .tm-slider {
      padding: 0;
    }

    .tm-card {
      padding: 2rem 1.5rem;
    }

    .tm-text {
      font-size: 1rem;
    }

    .tm-track {
      min-height: 380px;
    }
  }

  @media (max-width: 480px) {
    .tm-track {
      min-height: 400px;
    }

    .tm-card {
      padding: 1.75rem 1.25rem;
    }
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
    .about-intro {
      flex-direction: column;
    }

    .about-stats {
      flex-direction: column;
      gap: 20px;
    }

    .mission-vision {
      flex-direction: column;
    }
  }

  @media (max-width: 768px) {
    .about-hero h1 {
      font-size: 2.5rem;
    }

    .about-hero p {
      font-size: 1.2rem;
    }

    .team-grid {
      grid-template-columns: 1fr;
    }
  }
  
  
  .about-card p {
    color: #666;
    line-height: 1.6;
  }
  
  .features {
    margin: 4rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
  }
  
  .feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
  }
  
  .feature-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
  }
  
  .feature-item p {
    color: #666;
    line-height: 1.6;
  }
  
  .achievements {
    text-align: center;
    padding: 3rem 0;
  }
  
  .achievements h3 {
    color: var(--text-color);
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  .achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  
  .achievement-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .achievement-item:hover {
    transform: translateY(-5px);
  }
  
  .achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .achievement-label {
    color: #666;
    font-size: 1rem;
  }
  
  @media (max-width: 768px) {
    .about-intro h3 {
      font-size: 1.5rem;
    }
    
    .features {
      gap: 1.5rem;
    }
    
    .feature-item {
      padding: 1rem;
    }
    
    .achievement-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .achievement-grid {
      grid-template-columns: 1fr;
    }
    
    .about-card {
      padding: 1.5rem;
    }
  }
  
  /* Animations */
  @keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .contact h2 {
      font-size: 2.2rem;
      margin-bottom: 30px;
    }
    
    .contact-container {
      grid-template-columns: 1fr;
      max-width: 700px;
      margin-top: 30px;
    }
    
    .contact-info,
    .contact-form {
      padding: 40px 30px;
    }
    
    .contact h2 {
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 576px) {
    .contact {
      padding: 70px 0;
    }
    
    .contact h2 {
      font-size: 1.8rem;
      margin-bottom: 15px;
    }
    
    .contact-info,
    .contact-form {
      padding: 30px 20px;
    }
    
    .contact-info h3,
    .contact-form h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
    }
    
    .contact-item {
      padding: 12px;
      margin-bottom: 20px;
    }
    
    .contact-item i {
      font-size: 20px;
      margin-right: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 14px 16px 14px 45px;
      font-size: 0.95rem;
    }
    
    .submit-btn {
      padding: 16px 25px;
      font-size: 1rem;
    }
  }  
    .about-card {
      padding: 1.5rem;
    }
  
  /* Contact Section */
  .contact {
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
  }
  
  /* Removed the orange line from the top of the contact section */
  
  .contact h2 {
    text-align: center;
    margin: 0 auto 20px;
    color: #2d3436;
    font-size: 2.5rem;
    position: relative;
    display: block;
    width: 100%;
    padding: 0 20px;
  }
  
  .contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff6b35;
    border-radius: 2px;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    position: relative;
    z-index: 1;
  }
  
  .contact-info {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }
  
  .contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6b35, #ff8c42);
  }
  
  .contact-info h3 {
    color: #2d3436;
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
  }
  
  .contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff6b35;
  }
  
  .contact-intro {
    color: #636e72;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.05rem;
  }
  
  .contact-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
  }
  
  .contact-item:hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .contact-item i {
    font-size: 22px;
    color: #ff6b35;
    margin-right: 18px;
    margin-top: 3px;
    min-width: 25px;
    text-align: center;
  }
  
  .contact-item h4 {
    margin: 0 0 8px;
    color: #2d3436;
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .contact-item p {
    margin: 5px 0;
    color: #636e72;
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  .contact-item p:last-child {
    margin-bottom: 0;
  }
  
  .email-link {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .email-link:hover {
    color: #ff6b35;
    text-decoration: underline;
  }
  
  .contact-form {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }
  
  .contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6b35, #ff8c42);
  }
  
  .contact-form h3 {
    margin: 0 0 25px;
    color: #2d3436;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
  }
  
  .contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff6b35;
  }
  
  .form-group {
    margin-bottom: 25px;
    position: relative;
  }
  
  .form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #b2bec3;
    transition: all 0.3s ease;
    font-size: 18px;
  }
  
  .form-group textarea + i {
    top: 20px;
    transform: none;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: #2d3436;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #b2bec3;
  }
  
  .form-group textarea {
    min-height: 150px;
    resize: vertical;
    padding-top: 20px;
    line-height: 1.6;
  }
  
  .form-group select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 50px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b2bec3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
  }
  
  .form-group:focus-within i {
    color: #ff6b35;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: #ff6b35;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
  }
  
  .submit-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .submit-btn:hover {
    background: var(--secondary-color);
  }
  
  .submit-btn i {
    transition: var(--transition);
  }
  
  .submit-btn:hover i {
    transform: translateX(5px);
  }
  
  /* Footer */
  .footer {
    background: #1f2937;
    color: #f3f4f6;
    padding: 6rem 1rem 0;
    position: relative;
    z-index: 100;
    opacity: 1 !important;
    transform: none !important;
    margin-top: 40px;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
  }
  
  .footer-section h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
  }
  
  .footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
  }
  
  .footer-section p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .newsletter {
    margin-top: 2rem;
  }
  
  .newsletter h4 {
    color: #fff;
    margin-bottom: 0.5rem;
  }
  
  .newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .newsletter-form {
    display: flex;
    gap: 0.5rem;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #374151;
    border-radius: 0.25rem;
    background: #374151;
    color: #fff;
    font-size: 0.9rem;
  }
  
  .newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
  }
  
  .newsletter-form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background: var(--secondary-color);
  }
  
  .footer-section a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }
  
  .footer-section a:hover {
    color: #fff;
    padding-left: 5px;
  }
  
  .contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .contact-info-footer i {
    color: var(--primary-color);
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
    position: relative;
  }
  
  .social-btn i {
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  
  .social-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
  }
  
  .footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid #374151;
  }
  
  .footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  
  .footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
  }
  
  .footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .footer-bottom-links a:hover {
    color: #fff;
  }
  
  .separator {
    color: #4b5563;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      background: var(--white);
      padding: 1rem;
      box-shadow: var(--shadow);
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .mobile-menu {
      display: block;
    }
  
    .hero-content h2 {
        font-size: 1.2rem;
        max-width: 600px;
        margin-bottom: 20px;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .hero-stats {
      flex-direction: column;
      gap: 1.5rem;
    }
  
    .destinations h2,
    .packages h2,
    .about h2,
    .contact h2 {
      font-size: 2rem;
    }
  
    .search-container {
      flex-direction: column;
    }
  
    .search-input {
      width: 100%;
    }
  
    .search-btn {
      width: 100%;
      border-radius: 2rem;
    }
  
    .contact-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .contact-form {
      border-left: none;
      border-top: 1px solid #eee;
    }
  
    .footer-content {
      gap: 2rem;
    }
  
    .footer-bottom-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-bottom-links {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .package-card {
      padding: 1.5rem;
    }
  
    .contact-container {
      gap: 2rem;
    }
  
    .footer-content {
      gap: 2rem;
    }
    
    .social-btn {
      width: 36px;
      height: 36px;
    }
    
    .social-btn i {
      font-size: 14px;
    }
  }
  
  /* Animations */
  @keyframes float {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes zoomIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

.floating-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 20px;
}

.nav-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-indicator:hover {
  background: var(--primary-color);
  transform: scale(1.2);
}

.nav-indicator.active {
  background: var(--primary-color);
  transform: scale(1.5);
}

.nav-indicator::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.nav-indicator:hover::before,
.nav-indicator.active::before {
  border-color: var(--primary-color);
}

@media (max-width: 768px) {
  .floating-nav {
    right: 10px;
    padding: 5px;
  }
  
  .nav-indicator {
    width: 8px;
    height: 8px;
  }
}

/* Add these styles at the top of your CSS file */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid var(--light-bg);
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

.loading-screen p {
  color: var(--text-color);
  font-size: 1.2rem;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

