/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Ovo&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Alice&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  :root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary: #004e89;
    --accent: #ffd23f;
    --dark: #1a1a2e;
    --gray: #4a5568;
    --light-gray: #e2e8f0;
    --white: #ffffff;
    --text: #2d3748;
    --bg-light: #f7fafc;
    --transition: all 0.3s ease;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Lato", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
  }
  
  .navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: inline-flex;
    align-items: center;
  }
  .logo-img {
    height: 36px;
    width: auto;
    display: block;
  }
  .footer-logo {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 12px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 1px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
  }
  
  .nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
  }
  
  .nav-links a:hover {
    color: var(--primary);
  }
  
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }
  
  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary,
  .btn-outline-large,
  .btn-outline,
  .btn-large {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
  }
  
  .btn-primary {
    background: var(--primary);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background: var(--secondary);
    color: var(--white);
  }
  
  .btn-secondary:hover {
    background: #003d6d;
    transform: translateY(-2px);
  }
  
    
  .btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
  }
  
  .btn-outline:hover {
    background: var(--primary);
    transform: translateY(-2px);
    color: var(--white);
  }


  .btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: var(--primary);
    color: var(--white);
  }
  
  .btn-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  }
  
  .btn-outline-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
  }
  
  .btn-outline-large:hover {
    background: var(--white);
    color: var(--dark);
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%),
      url("images-landing/himalayas-bw.jpg");
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--white);
    text-align: center;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
  }
  
  .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  
  .hero-title .highlight {
    font-family: "Amatic SC";
    color: var(--primary);
    font-size: 7.5rem;
    position: relative;
    display: inline-block;
  }
  
  .hero-title .highlight::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 15px;
    background: var(--white);
    z-index: -1;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
  }
  
  .hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.8;
    animation: bounce 2s infinite;
  }
  
  .scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
    margin: 0 auto;
  }
  
  /* Section Styles */
  section {
    padding: 80px 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Why Nepal Section */
  .why-nepal {
    background: var(--bg-light);
  }
  
  .content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
  }
  
  .content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray);
  }
  
  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }
  
  .grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .grid-item:hover img {
    transform: scale(1.1);
  }
  
  .grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: var(--white);
  }
  
  .grid-overlay h3 {
    font-size: 1.2rem;
  }
  
  /* About Section */
  .about-section {
    background: var(--white);
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
  }
  
  .about-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  
  .about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .feature-item h4 {
    color: var(--dark);
    margin-bottom: 0.3rem;
  }
  
  .feature-item p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
  }
  
  .about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Regions Section */
  .regions-section {
    background: var(--bg-light);
  }
  
  .regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
  }
  
  .region-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }
  
  .region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }
  
  .region-image {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  
  .region-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .region-card:hover .region-image img {
    transform: scale(1.1);
  }
  
  .region-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
  }
  
  .region-content {
    padding: 30px;
  }
  
  .region-content h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .region-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .region-highlights {
    list-style: none;
    margin-bottom: 2rem;
  }
  
  .region-highlights li {
    padding: 8px 0;
    color: var(--gray);
    border-bottom: 1px solid var(--light-gray);
  }
  
  .region-highlights li::before {
    content: "✓ ";
    color: var(--primary);
    font-weight: bold;
    margin-right: 8px;
  }
  
  /* Featured Treks */
  .featured-treks {
    background: var(--white);
  }
  
  .treks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .trek-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }
  
  .trek-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .trek-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .trek-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .trek-duration {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
  }
  
  .trek-info {
    padding: 20px;
  }
  
  .trek-info h3 {
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
  }
  
  .trek-difficulty {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--gray);
  }
  
  .difficulty-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .difficulty-badge.easy {
    background: #d4edda;
    color: #155724;
  }
  
  .difficulty-badge.moderate {
    background: #fff3cd;
    color: #856404;
  }
  
  .difficulty-badge.challenging {
    background: #f8d7da;
    color: #721c24;
  }
  
  .trek-info p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    position: relative;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
  }
  
  .testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.9) 0%, rgba(26, 26, 46, 0.95) 100%),
      url("images-landing/himalayas-bw2.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
  }
  
  .testimonials-section .section-header {
    position: relative;
    z-index: 1;
  }
  
  .testimonials-section .section-header h2,
  .testimonials-section .section-header .section-subtitle {
    color: var(--white);
  }
  
  .testimonials-slider {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .testimonial-track {
    position: relative;
    min-height: 300px;
  }
  
  .testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    pointer-events: none;
  }
  
  .testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  
  .testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary);
  }
  
  .testimonial-author h4 {
    margin-bottom: 0.3rem;
  }
  
  .testimonial-author p {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .testimonial-prev,
  .testimonial-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .testimonial-prev:hover,
  .testimonial-next:hover {
    background: var(--primary);
  }
  
  .testimonial-dots {
    display: flex;
    gap: 10px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
  }
  
  /* CTA Section */
  .cta-section {
    background:
    linear-gradient(135deg, var(--text) 0%, var(--dark) 100%),
    url("images-landing/himalayas-flags2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;    color: var(--white);
    text-align: center;
    padding: 100px 0;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
  }
  
  /* Contact Section */
  .contact-section {
    background: var(--bg-light);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
  }
  
  .contact-info h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .contact-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: solid 1px var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  
  .contact-item h4 {
    color: var(--dark);
    margin-bottom: 0.3rem;
  }
  
  .contact-item p {
    color: var(--gray);
    margin: 0;
  }
  
  .contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
  }
  
  .contact-form button {
    width: 100%;
    font-size: 1.1rem;
  }
  
  /* Footer */
  .footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-col h3,
  .footer-col h4 {
    margin-bottom: 1.5rem;
  }
  
  .footer-col p {
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 1.5rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col ul li {
    margin-bottom: 0.8rem;
  }
  
  .footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
  }
  
  .footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary);
  }
  
  .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-bottom p {
    opacity: 0.8;
  }
  
  .footer-links {
    display: flex;
    gap: 2rem;
  }
  
  .footer-links a {
    opacity: 0.8;
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    opacity: 1;
    color: var(--primary);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateX(-50%) translateY(0);
    }
    40% {
      transform: translateX(-50%) translateY(-10px);
    }
    60% {
      transform: translateX(-50%) translateY(-5px);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 968px) {
    .nav-links {
      position: fixed;
      top: 70px;
      left: -100%;
      flex-direction: column;
      background: var(--dark);
      width: 100%;
      padding: 2rem;
      gap: 1rem;
      transition: var(--transition);
    }
  
    .nav-links.active {
      left: 0;
    }
  
    .mobile-menu-toggle {
      display: flex;
    }
  
    .hero-title {
      font-size: 3rem;
    }
  
    .hero-subtitle {
      font-size: 1.2rem;
    }
  
    .content-grid,
    .about-content {
      grid-template-columns: 1fr;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 640px) {
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-cta {
      flex-direction: column;
      width: 100%;
    }
  
    .hero-cta a {
      width: 100%;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .image-grid {
      grid-template-columns: 1fr;
    }
  
    .regions-grid {
      grid-template-columns: 1fr;
    }
  
    .treks-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }
  