@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600&family=Dancing+Script:wght@600&display=swap"); 
 :root {
    --gold: #C9962C;
    --gold-light: #E8B84B;
    --gold-pale: #FFF8E7;
    --deep: #1A0A00;
    --brown: #3D1F00;
    --cream: #FAF5EC;
    --rust: #8B3A0F;
    --white: #FFFFFF;
    --gray: #666;
    --light-gray: #f5f5f5;
    --whatsapp: #25D366;
    --radius: 12px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--deep);
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ===== TOP BAR ===== */
  .top-bar {
    background: var(--deep);
    color: #ccc;
    font-size: 13px;
    padding: 8px 0;
  }
  .top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .top-bar a { color: var(--gold-light); text-decoration: none; }
  .top-bar a:hover { color: var(--white); }
  .top-bar .left, .top-bar .right { display: flex; gap: 20px; align-items: center; }

  /* ===== HEADER ===== */
  header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 0;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--rust));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
  .logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--deep);
    line-height: 1.1;
  }
  .logo-text span {
    font-size: 11px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* NAV */
  nav { display: flex; align-items: center; gap: 4px; }
  nav a {
    color: var(--deep);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s;
    position: relative;
  }
  nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.2s;
  }
  nav a:hover::after, nav a.active::after { transform: scaleX(1); }
  nav a:hover { color: var(--gold); }

  .nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--rust));
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    margin-left: 8px;
    box-shadow: 0 4px 14px rgba(201,150,44,0.4);
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,150,44,0.5); color: var(--white) !important; }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--deep);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  .mobile-nav {
    display: none;
    background: var(--white);
    border-top: 2px solid var(--gold-pale);
    padding: 16px 0;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a {
    display: block;
    padding: 12px 20px;
    color: var(--deep);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f0ece4;
    transition: all 0.2s;
  }
  .mobile-nav a:hover { background: var(--gold-pale); color: var(--gold); padding-left: 28px; }
  .mobile-nav .nav-cta {
    margin: 12px 20px 0;
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--rust));
    color: var(--white) !important;
    border-radius: 25px;
    padding: 12px 20px !important;
    font-weight: 600;
    border: none;
  }

  /* ===== SLIDER ===== */
  .slider {
    position: relative;
    height: 92vh;
    min-height: 560px;
    overflow: hidden;
  }
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
  }
  .slide.active { opacity: 1; }
  .slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,10,0,0.75) 0%, rgba(26,10,0,0.35) 60%, rgba(0,0,0,0.2) 100%);
  }
  /* Gradient placeholder backgrounds */
  .slide:nth-child(1) { background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);  background:url('../image/taj-mahal.webp') }
  .slide:nth-child(2) { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); background:url('../image/Golden-Triangle-Tours.webp') }
  .slide:nth-child(3) { background: linear-gradient(135deg, #2d1b00, #6b3a2a, #c9962c); background:url('../image/Taj-Mahal-Moonlight.webp') }

  .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 750px;
  }
  .slide-eyebrow {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: var(--gold-light);
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 0.3s forwards;
  }
  .slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 0.5s forwards;
  }
  .slide-sub {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255,255,255,0.88);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 0.7s forwards;
  }
  .slide-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 0.9s forwards;
  }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--rust));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 24px rgba(201,150,44,0.5);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,150,44,0.6); }
  .btn-outline {
    border: 2px solid rgba(255,255,255,0.8);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.08);
  }
  .btn-outline:hover { background: rgba(255,255,255,0.2); border-color: var(--white); }

  .slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
  }
  .dot.active { background: var(--gold); transform: scale(1.3); }

  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(6px);
    z-index: 10;
  }
  .slider-arrow:hover { background: var(--gold); border-color: var(--gold); }
  .slider-arrow.prev { left: 20px; }
  .slider-arrow.next { right: 20px; }

  /* Tajmahal silhouette overlay on slider */
  .taj-silhouette {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
  }

  /* ===== CONTAINER ===== */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

  /* ===== SECTION STYLES ===== */
  section { padding: 80px 0; }

  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--deep);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .section-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.8;
  }
  .section-header { margin-bottom: 50px; }
  .section-header.centered { text-align: center; }
  .section-header.centered .section-subtitle { margin: 0 auto; }
  .divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--rust));
    margin-bottom: 20px;
    border-radius: 2px;
  }
  .divider.centered { margin-left: auto; margin-right: auto; }

  /* ===== ABOUT ===== */
  .about { background: var(--cream); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .about-images {
    position: relative;
  }
  .about-img-main {
    width: 100%;
    height: 420px;
    border-radius: var(--radius);
    object-fit: cover;
    background: linear-gradient(135deg, #8B6914, #C9962C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
  }
   .about-img-main img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    background: linear-gradient(135deg, #8B6914, #C9962C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
  }
  .about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 160px;
    border-radius: var(--radius);
    border: 4px solid var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #3D1F00, #8B3A0F);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
  }
  .about-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 30px rgba(201,150,44,0.4);
  }
  .about-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    display: block;
    line-height: 1;
  }
  .about-badge .label { font-size: 11px; font-weight: 600; letter-spacing: 1px; margin-top: 4px; }

  .about-text p { color: var(--gray); margin-bottom: 16px; font-size: 15px; text-align:justify; }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0d8ca;
  }
  .about-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--gold);
  }
  .about-stat .lbl { font-size: 12px; color: var(--gray); font-weight: 500; margin-top: 2px; }

  /* ===== SAME DAY TOURS ===== */
  .same-day { background: var(--white); }
  .tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .tour-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: all 0.35s;
    border: 1px solid #f0ece4;
  }
  .tour-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
  .tour-img {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .tour-img-1 { background: linear-gradient(135deg, #1a0a00 0%, #8b6914 50%, #c9962c 100%);}
  .tour-img-2 { background: linear-gradient(135deg, #0d2137 0%, #1a5276 50%, #2e86c1 100%); }
  .tour-img-3 { background: linear-gradient(135deg, #2d1b00 0%, #6b3a2a 50%, #e67e22 100%); }
  .tour-img-4 { background: linear-gradient(135deg, #1a0a2e 0%, #4a235a 50%, #8e44ad 100%); }
  .tour-img-5 { background: linear-gradient(135deg, #0a2e1a 0%, #1e8449 50%, #a9dfbf 100%); }
  .tour-img-6 { background: linear-gradient(135deg, #1a1a0a 0%, #7f6000 50%, #f4d03f 100%); }
  .tour-img-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    opacity: 0.8;
  }
   .tour-img-inner img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    opacity: 0.8;
  }
  .tour-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
  }
  .tour-body { padding: 22px; }
  .tour-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--deep);
  }
  .tour-body p { font-size: 13.5px; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }
  .tour-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 18px;
    flex-wrap: wrap;
  }
  .tour-meta span { display: flex; align-items: center; gap: 4px; }
  .card-btns { display: flex; gap: 10px; }
  .btn-wa {
    background: var(--whatsapp);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    flex: 1;
    justify-content: center;
  }
  .btn-wa:hover { background: #20b558; transform: translateY(-1px); }
  .btn-more {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    flex: 1;
    justify-content: center;
  }
  .btn-more:hover { background: var(--gold); color: var(--white); }

  /* ===== PACKAGES ===== */
  .packages { background: var(--cream); }
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .pkg-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: all 0.35s;
    position: relative;
  }
  .pkg-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
  .pkg-img {
    height: 200px;
    position: relative;
    overflow: hidden;
  }
  .pkg-img-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    transition: transform 0.4s;
  }
   .pkg-img-inner img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    transition: transform 0.4s;
  }
  .pkg-card:hover .pkg-img-inner { transform: scale(1.08); }
  .pkg-img-1 { background: linear-gradient(135deg, #1a0a00, #c9962c); }
  .pkg-img-2 { background: linear-gradient(135deg, #0d2137, #2980b9); }
  .pkg-img-3 { background: linear-gradient(135deg, #1a0a2e, #8e44ad); }
  .pkg-img-4 { background: linear-gradient(135deg, #0a2e1a, #27ae60); }
  .pkg-img-5 { background: linear-gradient(135deg, #2d1b00, #e67e22); }
  .pkg-img-6 { background: linear-gradient(135deg, #1a1a0a, #f39c12); }
  .pkg-ribbon {
    position: absolute;
    top: 14px;
    right: 0;
    background: var(--rust);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px 5px 10px;
    border-radius: 4px 0 0 4px;
    letter-spacing: 0.5px;
  }
  .pkg-body { padding: 20px; }
  .pkg-body h3 { font-family: 'Playfair Display', serif; font-size: 17px; margin-bottom: 8px; }
  .pkg-info {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .pkg-info span { display: flex; align-items: center; gap: 4px; }
  .pkg-body p { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
  .pkg-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 16px;
  }
  .pkg-price span { font-size: 13px; font-weight: 400; color: var(--gray); font-family: 'Inter', sans-serif; }

  /* ===== WHY CHOOSE ===== */
  .why { background: var(--deep); position: relative; overflow: hidden; }
  .why::before {
    content: '🕌';
    position: absolute;
    right: -60px;
    top: -60px;
    font-size: 400px;
    opacity: 0.04;
    line-height: 1;
  }
  .why .section-title { color: var(--white); }
  .why .section-subtitle { color: rgba(255,255,255,0.65); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 50px;
  }
  .why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,150,44,0.2);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
  }
  .why-card:hover {
    background: rgba(201,150,44,0.1);
    border-color: var(--gold);
    transform: translateY(-4px);
  }
  .why-icon {
    font-size: 44px;
    margin-bottom: 16px;
    display: block;
  }
  .why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--gold-light);
    margin-bottom: 10px;
  }
  .why-card p { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.7; }

  /* ===== TAJ MOONLIGHT ===== */
  .moonlight { background: var(--cream); }
  .moon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .moon-visual {
    background: linear-gradient(135deg, #0a0a1e 0%, #1a1a3e 40%, #2d1b4e 70%, #0a0a1e 100%);
    border-radius: var(--radius);
    padding: 6px 4px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
     .moon-visual img {
    width: 100%;
    height: 420px;
    border-radius: var(--radius);
    object-fit: cover;
    background: linear-gradient(135deg, #8B6914, #C9962C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
  }
  
  .moon-emoji { font-size: 100px; line-height: 1; display: block; margin-bottom: 10px; }
  .moon-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold-light);
    margin-bottom: 6px;
  }
  .moon-sub { color: rgba(255,255,255,0.6); font-size: 14px; }
  .moon-stars {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-around;
    font-size: 16px;
    opacity: 0.4;
  }
  .moon-info { padding: 10px 0; }
  .moon-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }
  .moon-tab {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    transition: all 0.2s;
  }
  .moon-tab.active, .moon-tab:hover { background: var(--gold); color: var(--white); }
  .moon-content { display: none; }
  .moon-content.active { display: block; }
  .moon-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--deep);
  }
  .moon-content p { font-size: 14px; color: var(--gray); margin-bottom: 14px; line-height: 1.8; }
  .ticket-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    font-size: 13.5px;
    border-radius: 8px;
    overflow: hidden;
  }
  .ticket-table th {
    background: var(--gold);
    color: var(--white);
    padding: 10px 16px;
    text-align: left;
    font-weight: 600;
  }
  .ticket-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #f0ece4;
    color: var(--gray);
  }
  .ticket-table tr:nth-child(even) td { background: var(--gold-pale); }

  /* ===== ATTRACTIONS ===== */
  .attractions { background: var(--white); }
  .attr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .attr-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 280px;
  }
  .attr-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    transition: transform 0.4s;
  }
  .attr-card:hover .attr-img { transform: scale(1.1); }
  .attr-bg-1 { background: linear-gradient(135deg, #1a0a00, #c9962c); }
  .attr-bg-2 { background: linear-gradient(135deg, #2d1b00, #e67e22); }
  .attr-bg-3 { background: linear-gradient(135deg, #0a2e1a, #27ae60); }
  .attr-bg-4 { background: linear-gradient(135deg, #0d2137, #2980b9); }
  .attr-bg-5 { background: linear-gradient(135deg, #1a0a2e, #8e44ad); }
  .attr-bg-6 { background: linear-gradient(135deg, #2e1a00, #a0522d); }
  .attr-bg-7 { background: linear-gradient(135deg, #0a1a2e, #1a5276); }
  .attr-bg-8 { background: linear-gradient(135deg, #1a1a0a, #7f6000); }
  .attr-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,10,0,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--white);
  }
  .attr-overlay h3 { font-family: 'Playfair Display', serif; font-size: 17px; margin-bottom: 4px; }
  .attr-overlay span { font-size: 12px; color: var(--gold-light); display: flex; align-items: center; gap: 4px; }

  /* ===== CAR RENTAL ===== */
  .car-rental { background: var(--cream); }
  .car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .car-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #f0ece4;
  }
  p {color: var(--gray);
  margin-bottom: 16px;
  font-size: 15px;
  text-align: justify;}
  .car-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.14); }
   .img {
    height:100%;
    display: flex;width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    position: relative;
  }
  .car-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    position: relative;
  }
  .car-img-1 { background: linear-gradient(135deg, #1a1a1a, #4a4a4a); }
  .car-img-2 { background: linear-gradient(135deg, #1a0a2e, #3d2b7e); }
  .car-img-3 { background: linear-gradient(135deg, #0a2e1a, #1a5e35); }
  .car-price-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
  }
  .car-price-tag small { font-size: 10px; font-weight: 400; }
  .car-body { padding: 22px; }
  .car-body h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 6px; }
  .car-body p { font-size: 13px; color: var(--gray); margin-bottom: 14px; }
  .car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
  }
  .car-feature {
    background: var(--gold-pale);
    color: var(--brown);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  /* ===== REVIEWS ===== */
  .reviews { background: var(--white); }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .review-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 28px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s;
  }
  .review-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .review-stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
  .review-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
  }
  .review-text::before { content: '"'; font-size: 48px; color: var(--gold); line-height: 0; vertical-align: -18px; margin-right: 4px; font-family: 'Playfair Display', serif; }
  .reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--rust));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
  }
  .reviewer-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
  .reviewer-info span { font-size: 12px; color: var(--gray); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--deep);
    color: rgba(255,255,255,0.75);
  }
  .footer-top {
    padding: 70px 0 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
  }
  .footer-brand .logo-text h1 { color: var(--white); font-size: 20px; }
  .footer-brand p { font-size: 14px; line-height: 1.8; margin: 16px 0 24px; color: rgba(255,255,255,0.6); }
  .footer-social { display: flex; gap: 12px; }
  .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.12);
  }
  .social-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
  .footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
  }
  .footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 18px; line-height: 0; }
  .footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }
  .footer-contact-item .icon { font-size: 18px; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
  .footer-contact-item a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; }
  .footer-contact-item a:hover { color: var(--gold-light); }
  .footer-contact-item p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.5; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
  }
  .footer-bottom a { color: var(--gold); text-decoration: none; }

  /* ===== FLOATING WA ===== */
  .float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--whatsapp);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: transform 0.2s;
  }
  .float-wa:hover { transform: scale(1.1); }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 36px rgba(37,211,102,0.8); }
  }

  /* ===== BANNER ===== */
  .cta-banner {
    background: linear-gradient(135deg, var(--rust) 0%, var(--gold) 50%, var(--rust) 100%);
    padding: 60px 0;
    text-align: center;
  }
  .cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 12px;
  }
  .cta-banner p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 28px; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    background: var(--white);
    color: var(--rust);
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-white:hover { background: var(--deep); color: var(--white); transform: translateY(-2px); }
  .btn-ghost {
    border: 2px solid rgba(255,255,255,0.8);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.15); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .attr-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-float { right: 10px; bottom: -20px; width: 150px; height: 120px; }
    .tours-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .attr-grid { grid-template-columns: repeat(2, 1fr); }
    .car-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .moon-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    section { padding: 55px 0; }
    .slider { height: 75vh; }
    .slider-arrow { display: none; }
  }

  @media (max-width: 480px) {
    .top-bar .right { }
	.top-bar .left { display: none; }
    .attr-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
  }
  a {
  text-decoration: none;
  color: #000;
}