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

  :root {
    --yellow: #FFD700;
    --yellow-light: #FFF5B7;
    --yellow-dark: #E6B800;
    --yellow-deep: #C49A00;
    --black: #1A1200;
    --dark: #2C2200;
    --mid: #5C4A00;
    --text: #3D3000;
    --white: #FFFDF0;
    --cream: #FFF8DC;
    --accent: #FF6B35;
    --gray: #8A7A50;
    --card-bg: #FFFAEB;
    --shadow: 0 8px 32px rgba(180,140,0,0.18);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Nunito', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ===== TOP BAR ===== */
  .topbar {
    background: var(--black);
    color: var(--yellow);
    font-size: 0.82rem;
    padding: 7px 0;
  }
  .topbar .inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 20px; flex-wrap: wrap; gap: 6px;
  }
  .topbar a { color: var(--yellow); text-decoration: none; margin-left: 14px; }
  .topbar a:hover { color: #fff; }
  .topbar .social a { margin-left: 10px; font-size: 1rem; }

  /* ===== NAVBAR ===== */
  nav {
    background: var(--yellow);
    box-shadow: 0 3px 18px rgba(0,0,0,0.13);
    position: sticky; top: 0; z-index: 999;
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px; height: 68px;
  }
  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .logo-icon {
    width: 46px; height: 46px; background: var(--black);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
  }
  .logo-text h1 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--black); line-height: 1.1; }
  .logo-text span { font-size: 0.72rem; color: var(--mid); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
  .nav-links { display: flex; gap: 4px; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--dark);
    font-weight: 700; font-size: 0.9rem; padding: 8px 14px;
    border-radius: 6px; transition: all 0.2s;
    letter-spacing: 0.3px;
  }
  .nav-links a:hover, .nav-links a.active {
    background: var(--black); color: var(--yellow);
  }
  .nav-cta {
    background: var(--black); color: var(--yellow) !important;
    border-radius: 25px !important; padding: 9px 20px !important;
  }
  .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .hamburger span { display: block; width: 26px; height: 3px; background: var(--black); border-radius: 2px; transition: 0.3s; }
  .mobile-menu { display: none; background: var(--yellow); padding: 16px 20px; }
  .mobile-menu a { display: block; padding: 10px 0; color: var(--dark); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.08); }

  /* ===== HERO ===== */
  .hero {
    min-height: 88vh; padding: 0px 0px;
    background: linear-gradient(135deg, #1A1200 0%, #3D3000 45%, #C49A00 100%);
    position: relative; display: flex; align-items: center; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../image/udaipur-car.jpg') no-repeat ;
    opacity: 0.40;
  }
  .hero-pattern {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,215,0,0.03) 40px, rgba(255,215,0,0.03) 80px);
  }
  .hero-content {
    max-width: 1200px; margin: 0 auto; padding: 25px 20px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 1;
  }
  .hero-badge {
    display: inline-block; background: var(--yellow); color: var(--black);
    font-size: 0.78rem; font-weight: 800; padding: 5px 14px; border-radius: 20px;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px;
  }
  .hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #fff; line-height: 1.12; margin-bottom: 18px;
  }
  .hero h2 em { color: var(--yellow); font-style: normal; }
  .hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.75; margin-bottom: 30px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--yellow); color: var(--black);
    padding: 14px 32px; border-radius: 40px; font-weight: 800; font-size: 1rem;
    text-decoration: none; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 20px rgba(255,215,0,0.4);
  }
  .btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,215,0,0.5); }
  .btn-outline {
    border: 2px solid var(--yellow); color: var(--yellow);
    padding: 12px 28px; border-radius: 40px; font-weight: 700; font-size: 1rem;
    text-decoration: none; transition: all 0.25s;
  }
  .btn-outline:hover { background: var(--yellow); color: var(--black); }
  .hero-stats {
    display: flex; gap: 30px; margin-top: 36px; padding-top: 30px;
    border-top: 1px solid rgba(255,215,0,0.2);
  }
  .stat-item .num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--yellow); font-weight: 700; }
  .stat-item .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
  
   /* ── ABOUT ── */
  .about { background: var(--white); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .about-visual {
    position: relative;
    height: 460px;
  }
  .about-main {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #C8973A20, #E8B84B30);
    border-radius: 20px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
  }
  .about-main img {border-radius: 20px;}
  .about-stat-card {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
  }
  .about-stat-card.s1 { bottom: 32px; left: -24px; }
  .about-stat-card.s2 { top: 32px; right: -24px; }
  .about-stat-card strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 700;
  }
  .about-stat-card span { font-size: 0.78rem; color: var(--text-light); }
  .about-list { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
  .about-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
  }
  .about-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--gold-pale);
    color: var(--gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }


  /* BOOKING FORM */
  .booking-card {
    background: var(--white); border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4); padding: 32px;
    border-top: 5px solid var(--yellow);
  }
  .booking-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--black); margin-bottom: 22px; text-align: center; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--mid); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
  .form-group input, .form-group select {
    width: 100%; padding: 11px 14px; border: 2px solid #E8D88A;
    border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 0.95rem;
    color: var(--text); background: var(--cream); transition: border 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus { border-color: var(--yellow-dark); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .btn-book {
    width: 100%; background: var(--yellow); color: var(--black);
    border: none; padding: 14px; border-radius: 10px; font-weight: 800;
    font-size: 1.05rem; cursor: pointer; transition: all 0.2s; font-family: 'Nunito', sans-serif;
  }
  .btn-book:hover { background: var(--black); color: var(--yellow); transform: translateY(-1px); }
	  p {text-align:justify;}
  /* ===== SECTIONS ===== */
  section { padding: 80px 0px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .sec-head { text-align: center; margin-bottom: 52px; }
  .sec-badge {
    display: inline-block; background: var(--yellow-light); color: var(--yellow-deep);
    font-size: 0.78rem; font-weight: 800; padding: 5px 14px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
    border: 1.5px solid var(--yellow-dark);
  }
  .sec-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--black); margin-bottom: 14px; }
  .sec-head p { color: var(--gray); text-align: justify; margin: 0 auto; font-size: 1rem; line-height: 1.7; }
  .divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--yellow), var(--yellow-dark)); border-radius: 2px; margin: 16px auto 0; }

  /* ===== WHY US ===== */
  .why-bg { background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
  .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
  .feature-card {
    background: #fff; border-radius: 18px; padding: 32px 24px; text-align: center;
    box-shadow: var(--shadow); border: 1.5px solid rgba(255,215,0,0.3);
    transition: all 0.3s; position: relative; overflow: hidden;
  }
  .feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
    transform: scaleX(0); transition: transform 0.3s;
  }
  .feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(180,140,0,0.22); }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-icon { font-size: 2.6rem; margin-bottom: 14px; }
  .feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--black); margin-bottom: 10px; }
  .feature-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.65; }

  /* ===== CARS ===== */
  .cars-bg { background: var(--black); }
  .cars-bg .sec-head h2 { color: #fff; }
  .cars-bg .sec-badge { background: rgba(255,215,0,0.15); color: var(--yellow); border-color: var(--yellow); }
  .cars-bg .sec-head p { color: rgba(255,255,255,0.6); }
  .cars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
  .car-card {
    background: #2C2200; border-radius: 20px; overflow: hidden;
    border: 1.5px solid rgba(255,215,0,0.15); transition: all 0.3s;
  }
  .car-card:hover { transform: translateY(-5px); border-color: var(--yellow); box-shadow: 0 12px 40px rgba(255,215,0,0.2); }
  .car-img {
    height: 190px; overflow: hidden; background: #3D3000;
    display: flex; align-items: center; justify-content: center;
  }
  .car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .car-card:hover .car-img img { transform: scale(1.07); }
  .car-body { padding: 22px; }
  .car-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; margin-bottom: 6px; }
  .car-type { font-size: 0.78rem; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; font-weight: 700; }
  .car-features { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
  .car-tag {
    background: rgba(255,215,0,0.1); color: var(--yellow-light);
    font-size: 0.75rem; padding: 4px 10px; border-radius: 20px; border: 1px solid rgba(255,215,0,0.2);
  }
  .car-price { display: flex; justify-content: space-between; align-items: center; }
  .price { font-family: 'Playfair Display', serif; }
  .price .amount { font-size: 1.5rem; color: var(--yellow); font-weight: 700; }
  .price .per { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
  .btn-book-sm {
    background: var(--yellow); color: var(--black);
    padding: 8px 18px; border-radius: 25px; font-weight: 800; font-size: 0.85rem;
    text-decoration: none; transition: all 0.2s;
  }
  .btn-book-sm:hover { background: #fff; }

  /* ===== TOUR PACKAGES ===== */
  .tours-bg { background: var(--cream); }
  .tours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 28px; }
  .tour-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow); transition: all 0.3s;
  }
  .tour-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(180,140,0,0.22); }
  .tour-img { overflow: hidden; position: relative; }
  .tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .tour-card:hover .tour-img img { transform: scale(1.06); }
  .tour-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--yellow); color: var(--black);
    font-size: 0.75rem; font-weight: 800; padding: 4px 12px; border-radius: 20px;
  }
  .tour-body { padding: 24px; }
  .tour-duration { font-size: 0.78rem; color: var(--yellow-deep); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
  .tour-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--black); margin-bottom: 8px; }
  .tour-dest { font-size: 0.85rem; color: var(--gray); margin-bottom: 16px; }
  .tour-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--yellow-light); padding-top: 16px; }
  .tour-price .label { font-size: 0.72rem; color: var(--gray); }
  .tour-price .value { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--yellow-deep); font-weight: 700; }
  .btn-view {
    background: var(--black); color: var(--yellow); padding: 9px 20px; border-radius: 25px;
    font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: all 0.2s;
  }
  .btn-view:hover { background: var(--yellow); color: var(--black); }

  /* ===== ATTRACTIONS ===== */
  .attr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
  .attr-card {
    border-radius: 16px; overflow: hidden; position: relative;
    height: 230px; cursor: pointer; transition: transform 0.3s;
  }
  .attr-card:hover { transform: scale(1.03); }
  .attr-card img { width: 100%; height: 100%; object-fit: cover; }
  .attr-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,18,0,0.9) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 18px;
  }
  .attr-name { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; }
  .attr-icon { color: var(--yellow); font-size: 0.8rem; margin-top: 3px; }

  /* ===== PROCESS ===== */
  .process-bg { background: var(--yellow); }
  .process-bg .sec-head h2 { color: var(--black); }
  .process-bg .sec-badge { background: rgba(0,0,0,0.1); color: var(--black); border-color: rgba(0,0,0,0.2); }
  .process-bg .sec-head p { color: var(--mid); }
  .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; position: relative; }
  .step {
    text-align: center; padding: 28px 20px; background: rgba(255,255,255,0.35);
    border-radius: 18px; border: 2px solid rgba(0,0,0,0.08); transition: all 0.3s;
  }
  .step:hover { background: rgba(255,255,255,0.6); transform: translateY(-4px); }
  .step-num {
    width: 56px; height: 56px; background: var(--black); color: var(--yellow);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900;
    margin: 0 auto 16px;
  }
  .step-icon { font-size: 2rem; margin-bottom: 12px; }
  .step h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--black); margin-bottom: 8px; }
  .step p { color: var(--mid); font-size: 0.9rem; line-height: 1.6; }

  /* ===== TESTIMONIALS ===== */
  .test-bg { background: var(--dark); }
  .test-bg .sec-head h2 { color: #fff; }
  .test-bg .sec-badge { background: rgba(255,215,0,0.15); color: var(--yellow); border-color: var(--yellow); }
  .test-bg .sec-head p { color: rgba(255,255,255,0.6); }
  .test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .test-card {
    background: rgba(255,215,0,0.07); border-radius: 18px; padding: 28px;
    border: 1.5px solid rgba(255,215,0,0.15); transition: all 0.3s;
  }
  .test-card:hover { border-color: var(--yellow); background: rgba(255,215,0,0.12); }
  .stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
  .test-text { color: rgba(255,255,255,0.82); font-size: 0.95rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
  .test-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 46px; height: 46px; border-radius: 50%; background: var(--yellow);
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: var(--black);
    flex-shrink: 0;
  }
  .author-name { color: #fff; font-weight: 700; font-size: 0.95rem; }
  .author-loc { color: var(--yellow); font-size: 0.78rem; }

  /* ===== SERVICE AREAS ===== */
  .areas-bg { background: var(--cream); }
  .areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
  .area-pill {
    background: #fff; border: 2px solid var(--yellow-light); border-radius: 50px;
    padding: 14px 20px; text-align: center; font-weight: 700; color: var(--dark);
    font-size: 0.9rem; transition: all 0.2s; cursor: pointer;
  }
  .area-pill:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); transform: translateY(-2px); }
  .area-pill span { display: block; font-size: 1.2rem; margin-bottom: 4px; }

  /* ===== CONTACT ===== */
  .contact-bg { background: var(--black); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #fff; margin-bottom: 16px; }
  .contact-info p { color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 30px; }
  .contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
  .contact-icon { width: 44px; height: 44px; background: var(--yellow); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
  .contact-detail .label { font-size: 0.78rem; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 3px; }
  .contact-detail .value { color: #fff; font-size: 0.95rem; }
  .contact-form { background: #2C2200; border-radius: 20px; padding: 36px; border: 1.5px solid rgba(255,215,0,0.15); }
  .contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; margin-bottom: 24px; }
  .cf-group { margin-bottom: 18px; }
  .cf-group label { display: block; font-size: 0.82rem; font-weight: 700; color: rgba(255,215,0,0.7); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
  .cf-group input, .cf-group select, .cf-group textarea {
    width: 100%; padding: 12px 14px; background: rgba(255,215,0,0.07);
    border: 1.5px solid rgba(255,215,0,0.2); border-radius: 10px; color: #fff;
    font-family: 'Nunito', sans-serif; font-size: 0.95rem; outline: none; transition: border 0.2s;
  }
  .cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { border-color: var(--yellow); }
  .cf-group select option { background: #2C2200; }
  .cf-group textarea { resize: vertical; min-height: 100px; }
  .btn-send {
    width: 100%; background: var(--yellow); color: var(--black);
    border: none; padding: 14px; border-radius: 10px; font-weight: 800;
    font-size: 1rem; cursor: pointer; font-family: 'Nunito', sans-serif; transition: all 0.2s;
  }
  .btn-send:hover { background: #fff; transform: translateY(-1px); }

  /* ===== FOOTER ===== */
  footer { background: #0D0A00; color: rgba(255,255,255,0.6); padding: 60px 20px 0; }
  .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
  .footer-brand p { font-size: 0.9rem; line-height: 1.7; margin: 16px 0 22px; }
  .footer-social { display: flex; gap: 10px; }
  .soc-btn {
    width: 38px; height: 38px; background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; color: var(--yellow);
    text-decoration: none; font-size: 1rem; transition: all 0.2s;
  }
  .soc-btn:hover { background: var(--yellow); color: var(--black); }
  .footer-col h4 { color: var(--yellow); font-weight: 700; font-size: 0.95rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--yellow); }
  .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,215,0,0.1); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; }
  .footer-bottom a { color: var(--yellow); text-decoration: none; }

  /* WHATSAPP FLOAT */
  .wa-float {
    position: fixed; bottom: 26px; right: 26px; z-index: 998;
    width: 58px; height: 58px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5); text-decoration: none;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
  }

  /* SCROLL TO TOP */
  .scroll-top {
    position: fixed; bottom: 96px; right: 26px; z-index: 998;
    width: 44px; height: 44px; background: var(--yellow); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2); transition: all 0.2s;
    border: none; font-size: 1.1rem;
  }
  .scroll-top:hover { background: var(--black); color: var(--yellow); transform: translateY(-2px); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    section { padding: 60px 16px; }
  }

  /* Animate on scroll */
  .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-form-card { max-width: 560px; margin: 0 auto; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .attr-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { height: 300px; max-width: 480px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
	.about-main img {height: 309px;
    width: 393px;  border-radius: 20px;}
  }

  @media (max-width: 768px) {
    section { padding: 56px 10px; }
    .topbar-left { display: none; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px 20px; flex-direction: column; align-items: stretch; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-top: 1px solid var(--border); }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 16px; }
    .nav-cta { text-align: center; }
    .hamburger { display: flex; }
    .navbar { position: relative; }
    .hero { min-height: auto; padding: 60px 0; }
    .hero-stats { gap: 20px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: 1fr; }
    .tours-grid { grid-template-columns: 1fr; }
    .attr-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .about-stat-card.s1 { left: 0; }
    .about-stat-card.s2 { right: 0; }
  }
   .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 16px;
    transition: all 0.2s;
  }
  .whatsapp-btn:hover { background: #20BA5A; transform: translateY(-2px); }