* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', Arial, sans-serif; color: #333; line-height: 1.6; }
.container { width: 100%; max-width: 1170px; margin: 0 auto; padding: 0 15px; }

/* Top Bar */
.top-bar { background: #222; color: #fff; padding: 8px 0; font-size: 13px; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 5px; }
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-left span { color: #ccc; }
.top-bar-left a { color: #fff; text-decoration: none; }
.top-bar-left a:hover { color: #c8a96e; }
.top-bar-right a { color: #aaa; margin-left: 12px; font-size: 15px; text-decoration: none; }
.top-bar-right a:hover { color: #c8a96e; }

/* Header */
header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; gap: 10px; }
.logo { font-size: 20px; font-weight: 700; text-decoration: none; color: #222; white-space: nowrap; margin-left: 10px; }
nav { display: flex; align-items: center; }
nav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
nav li { list-style: none; position: relative; }
nav li > a { text-decoration: none; color: #333; padding: 8px 12px; font-size: 13px; font-weight: 500; display: block; transition: color 0.2s; }
nav li > a:hover { color: #c8a96e; }
nav li > a .fa-angle-down { font-size: 11px; margin-left: 3px; }
.consult-btn { background: #343a40; color: #fff; padding: 8px 20px; border-radius: 50px; text-decoration: none; font-size: 13px; font-weight: 500; white-space: nowrap; transition: background 0.3s; }
.consult-btn:hover { background: #c8a96e; color: #fff; }

/* Nav Toggle (Hamburger) */
.nav-toggle { display: none; background: none; border: none; font-size: 24px; color: #333; cursor: pointer; padding: 4px 8px; z-index: 101; }
.nav-toggle:hover { color: #c8a96e; }

/* Hero Slider */
.hero-slider { position: relative; overflow: hidden; width: 100%; height: 480px; }
.hero-slider .slider-track { display: flex; transition: transform 0.8s ease-in-out; height: 100%; }
.hero-slider .slide { min-width: 100%; height: 100%; position: relative; flex-shrink: 0; }
.hero-slider .slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.6s ease; }
.hero-slider .slide picture { display: block; width: 100%; height: 100%; }
.hero-text { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; color: #fff; width: 90%; max-width: 720px; z-index: 2; background: rgba(0,0,0,0.35); padding: 30px 40px; border-radius: 8px; }
.hero-text h2 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.hero-text p { font-size: 15px; margin-bottom: 15px; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: rgba(0,0,0,0.3); color: #fff; border: none; width: 45px; height: 45px; border-radius: 50%; cursor: pointer; font-size: 16px; transition: 0.3s; }
.slider-btn:hover { background: #c8a96e; }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.slider-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: 0.3s; }
.slider-dots span.active { background: #c8a96e; width: 28px; border-radius: 5px; }
.breadcrumb { background: #f5f5f5; padding: 12px 0; font-size: 13px; }
.breadcrumb a { color: #c8a96e; text-decoration: none; }
.breadcrumb span { color: #888; }

/* Buttons */
.btn-danger { display: inline-block; background: #c8a96e; color: #fff; padding: 11px 28px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 14px; border: none; cursor: pointer; transition: background 0.3s; }
.btn-danger:hover { background: #b89856; }
.btn-white { display: inline-block; background: #fff; color: #333; padding: 11px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 14px; transition: background 0.3s; }
.btn-white:hover { background: #eee; }
.btn-outline { display: inline-block; background: transparent; color: #c8a96e; border: 2px solid #c8a96e; padding: 9px 25px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 13px; transition: all 0.3s; }
.btn-outline:hover { background: #c8a96e; color: #fff; }

/* Sections */
section { padding: 60px 0; }
.hero-slider { padding: 0; }
.section-title { text-align: center; font-size: 28px; font-weight: 700; color: #222; margin-bottom: 8px; }
.section-title span { color: #c8a96e; }
.section-sub { text-align: center; color: #888; margin-bottom: 35px; font-size: 14px; }

/* About Section */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-grid img { width: 100%; display: block; }
.about-text h1, .about-text h2 { font-size: 22px; color: #c8a96e; margin-bottom: 12px; font-weight: 700; }
.about-text p { color: #666; font-size: 14px; margin-bottom: 10px; line-height: 1.8; }

/* Card base styles */
.dest-card, .popular-card, .intl-card, .cat-card, .contact-card { box-shadow: 0 2px 8px rgba(0,0,0,0.06); border: none; transition: transform 0.3s, box-shadow 0.3s; }
.dest-card:hover, .popular-card:hover, .intl-card:hover, .cat-card:hover, .contact-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }

/* Destination Cards */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.dest-card { background: #fff; overflow: hidden; }
.dest-card { position: relative; }
.dest-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.dest-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 220px; background: linear-gradient(to bottom, transparent 50%, rgba(255,255,255,0.15) 85%, rgba(255,255,255,0.4)); pointer-events: none; }
.dest-card-body { padding: 18px; text-align: center; position: relative; z-index: 1; }
.dest-card-body h5 { font-size: 15px; color: #222; margin-bottom: 5px; }
.dest-card-body h5 a { color: #222; text-decoration: none; }
.dest-card-body h5 a:hover { color: #c8a96e; }
.dest-card-body p.desc { font-size: 12px; color: #888; margin-top: 5px; }

/* Popular Tours */
.popular-tours { background: #f8f3ed; }
.popular-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.popular-card { background: #fff; overflow: hidden; position: relative; }
.popular-card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.popular-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 260px; background: linear-gradient(to bottom, transparent 50%, rgba(255,255,255,0.15) 85%, rgba(255,255,255,0.4)); pointer-events: none; }
.popular-card-body { position: relative; z-index: 1; }
.popular-card-body { padding: 15px; }
.popular-card-body h5 { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.popular-card-body h5 a { color: #222; text-decoration: none; }
.popular-card-body h5 a:hover { color: #c8a96e; }
.popular-card-body p { font-size: 12px; color: #888; line-height: 1.6; margin-bottom: 10px; }
.popular-card-footer { border-top: 1px solid #eee; text-align: center; padding-top: 10px; }
.popular-card-footer a { color: #c8a96e; text-decoration: none; font-size: 13px; font-weight: 600; }

/* CTA */
.cta-section { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/bg-rajasthan.jpg') center/cover no-repeat; padding: 60px 0; text-align: center; color: #fff; }
.cta-section h4 { font-size: 22px; margin-bottom: 10px; font-weight: 600; }
.cta-section p { font-size: 15px; margin-bottom: 20px; opacity: 0.9; }

/* Grids */
.intl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.intl-card { background: #fff; overflow: hidden; }
.intl-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.intl-card-body { padding: 15px; text-align: center; }
.intl-card-body h5 { font-size: 14px; font-weight: 600; }
.intl-card-body h5 a { color: #222; text-decoration: none; }
.intl-card-body h5 a:hover { color: #c8a96e; }

/* Why */
.why-section { background: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.why-grid img { width: 100%; display: block; }
.why-text h6 { color: #c8a96e; font-size: 13px; font-weight: 600; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.why-text h2 { font-size: 26px; font-weight: 700; color: #222; margin-bottom: 10px; }
.why-text h5 { font-size: 15px; color: #555; font-weight: 500; margin-bottom: 12px; }
.why-text p { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 8px; }

/* Categories */
.categories-section { background: #f8f3ed; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card { background: #fff; overflow: hidden; text-align: center; }
.cat-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.cat-card-body { padding: 12px; }
.cat-card-body h5 { font-size: 14px; font-weight: 600; }
.cat-card-body h5 a { color: #222; text-decoration: none; }
.cat-card-body h5 a:hover { color: #c8a96e; }

/* Tour Detail Page */
.tour-detail { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.tour-detail img { width: 100%; display: block; }
.tour-detail h2 { font-size: 22px; color: #222; margin-bottom: 10px; }
.tour-detail ul { padding-left: 20px; margin-bottom: 15px; }
.tour-detail ul li { font-size: 14px; color: #666; margin-bottom: 6px; }
.tour-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin: 30px 0; }
.tour-highlight { text-align: center; padding: 20px; background: #f8f3ed; }
.tour-highlight i { font-size: 28px; color: #c8a96e; margin-bottom: 8px; }
.tour-highlight h4 { font-size: 15px; margin-bottom: 4px; }
.tour-highlight p { font-size: 12px; color: #888; }
.tour-tab { display: flex; gap: 4px; margin-bottom: 25px; flex-wrap: wrap; }
.tour-tab button { padding: 10px 22px; border: 1px solid #ddd; background: #fff; cursor: pointer; font-size: 13px; font-weight: 500; transition: all 0.2s; }
.tour-tab button.active { background: #c8a96e; color: #fff; border-color: #c8a96e; }
.tour-tab button:hover { background: #c8a96e; color: #fff; border-color: #c8a96e; }
.tour-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.tour-table td { padding: 10px 14px; border: 1px solid #eee; font-size: 14px; }
.tour-table td:first-child { font-weight: 600; color: #222; width: 160px; }
.tour-table tr:nth-child(even) { background: #fafafa; }
.tour-gallery { display: flex; gap: 12px; margin: 25px 0; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
.tour-gallery::-webkit-scrollbar { height: 4px; }
.tour-gallery::-webkit-scrollbar-thumb { background: #c8a96e; border-radius: 2px; }
.tour-gallery img { height: 200px; object-fit: cover; scroll-snap-align: start; flex: 0 0 auto; width: calc(33.333% - 8px); }
.iti-list { margin-bottom: 20px; }
.iti-day { display: flex; gap: 15px; margin-bottom: 15px; padding: 15px; background: #fafafa; border-left: 3px solid #c8a96e; }
.iti-day-num { min-width: 50px; height: 50px; background: #c8a96e; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.iti-day h4 { font-size: 15px; margin-bottom: 4px; }
.iti-day p { font-size: 13px; color: #666; line-height: 1.6; }

/* Sidebar enquiry form */
.sidebar-form { background: #fff; border: 1px solid #e8e0d6; padding: 24px; margin-top: 20px; }
.sidebar-form h4 { font-size: 17px; margin-bottom: 15px; color: #222; display: flex; align-items: center; gap: 8px; }
.sidebar-form h4 i { color: #c8a96e; }
.sidebar-form input, .sidebar-form textarea, .sidebar-form select { width: 100%; padding: 10px 12px; margin-bottom: 10px; border: 1px solid #ddd; font-size: 13px; outline: none; transition: border-color 0.3s; font-family: inherit; }
.sidebar-form input:focus, .sidebar-form textarea:focus, .sidebar-form select:focus { border-color: #c8a96e; }
.sidebar-form textarea { height: 80px; resize: vertical; }
.sidebar-form .btn-danger { width: 100%; text-align: center; border: none; cursor: pointer; font-size: 14px; }
.sidebar-row { display: flex; gap: 10px; }
.sidebar-row input, .sidebar-row select { width: 50%; }
.tour-sidebar { position: sticky; top: 90px; }

/* Contact */
.contact-form { max-width: 600px; margin: 0 auto; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; margin-bottom: 12px; border: 1px solid #ddd; font-size: 14px; outline: none; transition: border-color 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #c8a96e; }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.contact-card { text-align: center; padding: 25px; background: #fff; }
.contact-card i { font-size: 30px; color: #c8a96e; margin-bottom: 10px; }
.contact-card h4 { font-size: 16px; margin-bottom: 5px; }
.contact-card p { font-size: 13px; color: #888; }
.map-section iframe { width: 100%; height: 350px; border: 0; display: block; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.testi-card { text-align: center; padding: 30px 20px; background: #f8f3ed; }
.testi-card i { font-size: 28px; color: #c8a96e; margin-bottom: 12px; }
.testi-card p { font-size: 13px; color: #666; line-height: 1.8; margin-bottom: 12px; font-style: italic; }
.testi-card h5 { font-size: 14px; font-weight: 600; color: #222; }
.testi-card span { font-size: 12px; color: #c8a96e; }

/* Page Header */
.page-header { position: relative; padding: 80px 0; text-align: center; color: #fff; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 6px); pointer-events: none; }
.page-header { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/bg-rajasthan.jpg') center/cover no-repeat; }
.page-header h1 { font-size: 36px; font-weight: 700; margin-bottom: 8px; position: relative; z-index: 1; }
.page-header p { font-size: 15px; opacity: 0.9; position: relative; z-index: 1; }

/* WhatsApp Floating Button */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; width: 56px; height: 56px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; text-decoration: none; box-shadow: 0 4px 15px rgba(37,211,102,0.4); z-index: 99; transition: transform 0.3s, box-shadow 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); color: #fff; }

/* Form status toast */
.status-toast { position: fixed; top: 75px; left: 50%; transform: translateX(-50%); z-index: 999; padding: 12px 24px; border-radius: 6px; color: #fff; font-size: 14px; max-width: 90%; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.2); display: none; }
.status-toast.success { background: #28a745; }
.status-toast.error { background: #dc3545; }

/* Page fade-in */
.fade-in { animation: fadeIn 0.6s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* Tour counter */
.counter-section { background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/bg-rajasthan.jpg') center/cover no-repeat; padding: 60px 0; text-align: center; color: #fff; }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.counter-item h3 { font-size: 36px; font-weight: 700; color: #c8a96e; }
.counter-item p { font-size: 14px; opacity: 0.8; margin-top: 5px; }

/* Footer */
footer { background: #222; color: #ccc; padding: 45px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 25px; }
footer h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 12px; }
footer h4 span { color: #c8a96e; }
footer p { font-size: 13px; line-height: 1.8; color: #aaa; }
footer a { color: #aaa; text-decoration: none; font-size: 13px; display: block; line-height: 2.2; transition: color 0.2s; }
footer a:hover { color: #c8a96e; }
.footer-bottom { text-align: center; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: #888; }
.footer-credit { margin-top: 6px; }
.footer-credit a { display: inline; color: #c8a96e; font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }

/* FAQ Section */
.faq-section { padding: 60px 0; background: #f8f8f8; }
.faq-block { max-width: 820px; margin: 0 auto; text-align: left; }
.faq-item { background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 18px 22px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.faq-item summary { font-weight: 600; color: #222; cursor: pointer; font-size: 15px; list-style: none; line-height: 1.5; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "\f059"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #c8a96e; margin-right: 10px; }
.faq-item p { margin-top: 10px; color: #555; font-size: 14px; line-height: 1.7; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }
.blog-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform 0.2s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card img { width: 100%; height: 190px; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-body h3 { font-size: 17px; margin-bottom: 8px; }
.blog-card-body h3 a { color: #222; text-decoration: none; }
.blog-card-body h3 a:hover { color: #c8a96e; }
.blog-card-body p { color: #666; font-size: 14px; line-height: 1.7; }
.blog-card-meta { color: #c8a96e; font-size: 12px; font-weight: 600; margin-bottom: 8px; }
.post-content { max-width: 860px; margin: 0 auto; }
.post-content h2 { font-size: 24px; color: #222; margin: 30px 0 12px; }
.post-content h3 { font-size: 19px; color: #222; margin: 22px 0 10px; }
.post-content p { color: #555; line-height: 1.9; margin-bottom: 14px; font-size: 15px; }
.post-content ul, .post-content ol { color: #555; line-height: 1.9; margin: 0 0 16px 22px; font-size: 15px; }
.post-content ul li { margin-bottom: 6px; }
.post-content table { width: 100%; border-collapse: collapse; margin: 16px 0 20px; font-size: 14px; }
.post-content th { background: #222; color: #fff; padding: 10px 14px; text-align: left; }
.post-content td { border: 1px solid #eee; padding: 10px 14px; color: #555; }
.post-cta { background: #fff8f0; border: 1px solid #f0dcbd; border-radius: 10px; padding: 25px; margin: 25px 0; text-align: center; }
.post-cta h3 { margin-bottom: 8px; }
.post-cta p { margin-bottom: 14px; }

/* Responsive */
@media (max-width: 992px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .intl-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info { grid-template-columns: repeat(2, 1fr); }
  .tour-highlights { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  nav { display: none; position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background: #fff; flex-direction: column; padding: 80px 20px 20px; box-shadow: 2px 0 20px rgba(0,0,0,0.15); z-index: 100; transition: left 0.3s ease; overflow-y: auto; }
  nav.nav-active { display: flex; left: 0; }
  nav ul { flex-direction: column; width: 100%; }
  nav li > a { padding: 12px 0; font-size: 14px; border-bottom: 1px solid #f0f0f0; display: block; }
  .header-inner { position: relative; flex-wrap: nowrap; }
  .consult-btn { font-size: 12px; padding: 7px 14px; }
  .top-bar-left span:nth-child(1), .top-bar-left span:nth-child(3) { display: none; }
  .top-bar-left span:nth-child(2) .fa-phone { display: inline; }
  .top-bar-right { display: none; }
  .hero-slider { height: 520px; }
  .hero-slider .slide picture { display: block; width: 100%; height: 100%; }
  .hero-slider .slide picture img { width: 100%; height: 100%; }
  .hero-text { bottom: auto; top: 50%; transform: translate(-50%, -50%); padding: 20px 24px; }
  .hero-text h2 { font-size: 24px; }
  .hero-text p { font-size: 14px; }
  .slider-btn { width: 35px; height: 35px; font-size: 14px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .about-grid, .why-grid, .tour-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  section { padding: 40px 0; }
  .section-title { font-size: 22px; }
  .dest-card img, .popular-card img, .intl-card img, .cat-card img { height: 200px; }
  .tour-gallery img { height: 160px; width: 45%; }
  .page-header { padding: 60px 0; }
  .page-header h1 { font-size: 26px; }
  .tour-highlights { grid-template-columns: repeat(2, 1fr); }
  .tour-highlight { padding: 15px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item h3 { font-size: 28px; }
}

@media (max-width: 576px) {
  .dest-grid, .popular-grid, .intl-grid, .cat-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .hero-slider { height: 460px; }
  .hero-text { padding: 16px 18px; width: 92%; }
  .hero-text h2 { font-size: 18px; }
  .hero-text p { font-size: 13px; margin-bottom: 10px; }
  .hero-text .btn-danger { font-size: 12px; padding: 8px 18px; }
  .slider-btn { display: none; }
  section { padding: 30px 0; }
  .section-title { font-size: 20px; }
  .section-sub { font-size: 13px; margin-bottom: 25px; }
  .dest-card img, .popular-card img, .intl-card img, .cat-card img { height: auto; aspect-ratio: 16/9; }
  .tour-gallery img { width: 75%; height: auto; aspect-ratio: 16/9; }
  .tour-highlights { grid-template-columns: 1fr; }
  .page-header { padding: 40px 0; }
  .page-header h1 { font-size: 22px; }
  .page-header p { font-size: 13px; }
  .tour-tab button { padding: 8px 14px; font-size: 12px; }
  .tour-table td { font-size: 13px; padding: 8px 10px; }
  .tour-detail h2 { font-size: 18px; }
  .iti-day { flex-direction: column; gap: 10px; }
  .iti-day-num { width: 50px; }
  .contact-card { padding: 18px; }
  .btn-danger, .btn-white { padding: 10px 20px; font-size: 13px; }
  .logo { font-size: 17px; }
  .consult-btn { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
  .counter-item h3 { font-size: 24px; }
  .whatsapp-float { width: 48px; height: 48px; font-size: 24px; bottom: 15px; right: 15px; }
}
