    :root {
      --primary: #1a1a2e;
      --secondary: #16213e;
      --accent: #e94560;
      --gold: #ffd700;
      --text-dark: #f5f5f5;
      --text-light: #a0a0a0;
      --bg-light: #0f0f1a;
      --bg-white: #1e1e32;
      --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      --card-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.25);
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      --border-radius: 16px;
      --container-width: 1200px;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.7;
      overflow-x: hidden;
    }
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: linear-gradient(90deg, #FF9933 0%, #FF6B35 50%, #E9426B 100%);
      padding: 15px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 4px 20px rgba(255, 153, 51, 0.3);
      border-bottom: 2px solid #FFD700;
    }
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: white;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .logo span { color: #FFD700; }
    nav ul {
      list-style: none;
      display: flex;
      gap: 35px;
      align-items: center;
    }
    nav ul li a {
      color: white;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: var(--transition);
      padding: 10px 20px;
      border-radius: 30px;
    }
    nav ul li a:hover {
      color: var(--gold);
      background: rgba(255, 215, 0, 0.15);
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
      transform: translateY(-2px);
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 6px;
    }
    .menu-toggle span {
      width: 28px;
      height: 3px;
      background: white;
      border-radius: 3px;
      transition: var(--transition);
    }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); background: #FFD700; }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); background: #FFD700; }
    .hero {
      height: 100vh;
      min-height: 600px;
      background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.85) 50%, rgba(15, 52, 96, 0.9) 100%),
                  url('https://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Manali_Himachal_Pradesh.jpg/1280px-Manali_Himachal_Pradesh.jpg') no-repeat center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 20px;
      position: relative;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(circle at 30% 70%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
                  radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    }
    .hero-content {
      max-width: 900px;
      position: relative;
      z-index: 2;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-shadow: 2px 4px 20px rgba(0,0,0,0.5);
    }
    .hero h1 span { color: var(--gold); }
    .hero p { font-size: 1.3rem; margin-bottom: 35px; opacity: 0.95; }
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--accent) 0%, #c73e54 100%);
      color: white;
      padding: 16px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    }
    .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(233, 69, 96, 0.5); }
    section { padding: 90px 5%; }
    .container { max-width: var(--container-width); margin: 0 auto; }
    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      color: white;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }
    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--gold));
      border-radius: 2px;
    }
    .section-header p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.7);
      max-width: 700px;
      margin: 20px auto 0;
    }
    .bg-light { background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%); }
    .bg-white { background: linear-gradient(180deg, #1a1a2e 0%, #252540 100%); }
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }
    .card {
      background: linear-gradient(145deg, #1e1e32 0%, #252540 100%);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
      transition: var(--transition);
      position: relative;
    }
    .card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--gold));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    .card:hover { transform: translateY(-10px); box-shadow: var(--card-shadow-hover); }
    .card:hover::before { transform: scaleX(1); }
    .card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .card:hover img { transform: scale(1.1); }
    .card-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--accent);
      color: white;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    .card-content { padding: 25px; }
    .card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: white;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .card h3 i { color: var(--accent); }
    .card p {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .card-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold);
      text-decoration: none;
      font-weight: 600;
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    .gallery-item {
      position: relative;
      border-radius: var(--border-radius);
      overflow: hidden;
      cursor: pointer;
    }
    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .gallery-item:hover img { transform: scale(1.15); }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26, 26, 46, 0.8), transparent);
      opacity: 0;
      transition: var(--transition);
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .video-container {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--card-shadow);
    }
    .video-container iframe {
      width: 100%;
      height: 450px;
      display: block;
    }
    .map-section iframe {
      width: 100%;
      height: 500px;
      border: none;
      border-radius: var(--border-radius);
      margin-top: 30px;
      box-shadow: var(--card-shadow);
    }
    .footer {
      background: linear-gradient(180deg, #0a0a14 0%, #0f0f1a 100%);
      color: white;
      padding: 60px 5% 30px;
      border-top: 1px solid rgba(255, 215, 0, 0.1);
    }
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      max-width: var(--container-width);
      margin: 0 auto 40px;
    }
    .footer-section h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .footer-section h3 i { color: var(--accent); }
    .footer-links {
      list-style: none;
    }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a {
      color: white;
      opacity: 0.8;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: var(--transition);
    }
    .footer-links a:hover { opacity: 1; color: var(--gold); padding-left: 5px; }
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    .social-links a {
      width: 45px;
      height: 45px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: var(--transition);
    }
    .social-links a:hover { background: var(--accent); transform: translateY(-3px); }
    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.1);
      opacity: 0.7;
    }
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--accent) 0%, #c73e54 100%);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
      z-index: 999;
    }
    .back-to-top.visible { opacity: 1; visibility: visible; }
    .back-to-top:hover { transform: translateY(-5px); background: #d62839; }
    @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); }
    }
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    @media (max-width: 768px) {
      nav { padding: 12px 20px; }
      nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        padding-top: 60px;
      }
      nav ul.active { right: 0; }
      .menu-toggle { display: flex; }
      .hero h1 { font-size: 2.5rem; }
      section { padding: 60px 5%; }
      .cards { grid-template-columns: 1fr; }
    }
