* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #0c4a6e; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 10px 0; transition: all 0.3s; }
.navbar.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 8px 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 26px; }
.logo-text { font-size: 22px; font-weight: 700; color: #fff; transition: color 0.3s; }
.navbar.scrolled .logo-text { color: #0c4a6e; }
.logo-accent { color: #f97316; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); transition: color 0.3s; }
.navbar.scrolled .nav-links a { color: #0c4a6e; }
.nav-links a:hover { color: #f97316; }
.nav-book-btn { background: #f97316; color: #fff !important; padding: 10px 22px; border-radius: 50px; font-weight: 600; }
.nav-book-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(249,115,22,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; position: relative; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.navbar.scrolled .hamburger span { background: #0c4a6e; }

/* HERO */
.hero { min-height: 100vh; background: linear-gradient(135deg,#0c4a6e,#0e5a84,#075985); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(7,89,133,0.7),rgba(12,74,110,0.95)); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 20px; margin-top: 80px; }
.hero-tag { display: inline-block; background: rgba(249,115,22,0.2); border: 1px solid rgba(249,115,22,0.4); color: #f97316; padding: 6px 18px; border-radius: 50px; font-size: 13px; font-weight: 500; margin-bottom: 20px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px,6vw,66px); color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero-accent { color: #f97316; }
.hero-subtitle { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary { background: #f97316; color: #fff; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 15px; transition: all 0.3s; box-shadow: 0 8px 24px rgba(249,115,22,0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(249,115,22,0.5); }
.btn-whatsapp { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3); color: #fff; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 15px; transition: all 0.3s; }
.btn-whatsapp:hover { background: #25d366; border-color: #25d366; transform: translateY(-3px); }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 28px; font-weight: 700; color: #f97316; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 1px; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* SECTION COMMON */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag { display: inline-block; background: #fff7ed; color: #f97316; padding: 5px 16px; border-radius: 50px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,40px); color: #0c4a6e; }

/* FEATURES */
.features { padding: 80px 0; background: #f8fafc; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; }
.feature-card { background: #fff; padding: 32px 24px; border-radius: 16px; text-align: center; border: 1px solid #f1f5f9; transition: transform 0.3s, box-shadow 0.3s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.feature-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; color: #0c4a6e; }
.feature-card p { font-size: 14px; color: #64748b; line-height: 1.7; }

/* TOURS */
.tours { padding: 80px 0; }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; }
.tours-grid .tour-card { min-width: 0; }
.tour-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #f1f5f9; transition: transform 0.3s, box-shadow 0.3s; }
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.tour-img { height: 160px; display: flex; align-items: center; justify-content: center; position: relative; }
.tour-img-text { font-size: 32px; color: #fff; font-weight: 700; }
.tour-badge { position: absolute; top: 12px; right: 12px; background: #f97316; color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 50px; }
.tour-body { padding: 20px; }
.tour-body h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: #0c4a6e; }
.tour-body p { font-size: 13px; color: #64748b; line-height: 1.6; margin-bottom: 14px; }
.tour-details { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tour-details span { font-size: 12px; background: #f8fafc; color: #475569; padding: 4px 10px; border-radius: 50px; border: 1px solid #e2e8f0; }
.tour-footer { display: flex; align-items: center; justify-content: space-between; }
.tour-price { font-size: 20px; font-weight: 700; color: #f97316; }
.tour-price span { font-size: 12px; color: #94a3b8; font-weight: 400; }
.tour-btn { background: #0c4a6e; color: #fff; padding: 9px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; transition: all 0.3s; }
.tour-btn:hover { background: #f97316; }
.whatsapp-btn { background: #25d366 !important; }

/* CALCULATOR */
.calculator { padding: 80px 0; background: linear-gradient(135deg,#0c4a6e,#075985); }
.calculator .section-tag { background: rgba(249,115,22,0.2); color: #f97316; }
.calculator .section-title { color: #fff; }
.calc-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.calc-form { display: flex; flex-direction: column; gap: 18px; }
.calc-field label { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.calc-field select, .calc-field input { width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; color: #fff; font-size: 15px; font-family: 'Poppins', sans-serif; outline: none; }
.calc-field select:focus, .calc-field input:focus { border-color: #f97316; }
.calc-field select option { background: #0c4a6e; }
.calc-result { text-align: center; }
.result-placeholder { color: rgba(255,255,255,0.4); font-size: 15px; }
.result-box { background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3); border-radius: 16px; padding: 28px; }
.result-destination { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.result-amount { font-size: 48px; font-weight: 700; color: #f97316; margin-bottom: 4px; }
.result-per-person { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.result-book-btn { display: inline-block; background: #f97316; color: #fff; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 14px; transition: all 0.3s; }
.result-book-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(249,115,22,0.4); }

/* CONTACT */
.contact { padding: 80px 0; background: #f8fafc; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 24px; width: 52px; height: 52px; background: #fff7ed; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item h4 { font-size: 13px; font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; color: #0c4a6e; }
.contact-item p { font-size: 14px; color: #64748b; line-height: 1.6; }
.whatsapp-contact-btn { display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #fff; padding: 14px 24px; border-radius: 50px; font-weight: 600; font-size: 15px; transition: all 0.3s; }
.whatsapp-contact-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(37,211,102,0.4); }
.contact-map { border-radius: 16px; overflow: hidden; }

/* FOOTER */
.footer { background: #082f49; color: rgba(255,255,255,0.6); padding: 60px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 14px; color: rgba(255,255,255,0.45); }
.footer-links h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links a { display: block; font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 10px; transition: color 0.3s; }
.footer-links a:hover { color: #f97316; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; background: #25d366; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 6px 24px rgba(37,211,102,0.5); animation: pulse-wa 2.5s infinite; transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-wa { 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)} }

/* FARE BREAKDOWN */
.fare-breakdown { background: rgba(0,0,0,0.2); border-radius: 10px; padding: 14px; margin: 14px 0; text-align: left; }
.breakdown-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.breakdown-row { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.65); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.breakdown-row:last-child { border-bottom: none; }
.breakdown-total { font-size: 15px; font-weight: 600; color: #f97316; padding-top: 10px; margin-top: 4px; border-top: 1px solid rgba(249,115,22,0.3) !important; border-bottom: none !important; }

/* REVIEWS */
.reviews { padding: 80px 0; background: #fff; }
.reviews-summary { display: flex; align-items: center; gap: 48px; background: #f8fafc; border-radius: 16px; padding: 28px 32px; margin-bottom: 40px; flex-wrap: wrap; }
.summary-score { text-align: center; flex-shrink: 0; }
.score-number { font-size: 56px; font-weight: 700; color: #0c4a6e; line-height: 1; }
.score-stars  { font-size: 24px; color: #f59e0b; margin: 6px 0; }
.score-label  { font-size: 13px; color: #94a3b8; }
.summary-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.bar-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #64748b; }
.bar-row span:first-child { width: 32px; flex-shrink: 0; }
.bar-row span:last-child  { width: 36px; flex-shrink: 0; text-align: right; }
.bar-track { flex: 1; height: 8px; background: #e2e8f0; border-radius: 4px; overflow: hidden; }
.bar-fill  { height: 100%; background: #f59e0b; border-radius: 4px; transition: width 1s ease; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 8px; }
.review-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 16px; padding: 22px; transition: transform 0.3s, box-shadow 0.3s; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #f97316, #ea580c); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0; }
.reviewer-name { font-size: 14px; font-weight: 600; color: #0c4a6e; }
.reviewer-dest { font-size: 12px; color: #94a3b8; margin-top: 2px; }
.review-stars { color: #f59e0b; font-size: 16px; letter-spacing: 1px; }
.review-text { font-size: 14px; color: #475569; line-height: 1.7; }
.review-date { font-size: 11px; color: #cbd5e1; margin-top: 10px; }
.review-loading { text-align: center; color: #94a3b8; font-size: 14px; padding: 40px; grid-column: 1/-1; }
.write-review-btn { background: #0c4a6e; color: #fff; padding: 14px 32px; border: none; border-radius: 50px; font-size: 15px; font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer; transition: all 0.3s; }
.write-review-btn:hover { background: #f97316; transform: translateY(-2px); }

/* REVIEW MODAL */
.modal-overlay { position: fixed; inset: 0; z-index: 9998; background: rgba(0,0,0,0.6); display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.modal-overlay.open { display: flex; }
.modal-box { background: #fff; border-radius: 20px; padding: 36px; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; position: relative; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 16px; right: 16px; background: #f1f5f9; border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.modal-close:hover { background: #e2e8f0; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 22px; color: #0c4a6e; margin-bottom: 6px; }
.modal-subtitle { font-size: 13px; color: #94a3b8; margin-bottom: 22px; }
.modal-form-group { margin-bottom: 16px; }
.modal-form-group label { display: block; font-size: 13px; font-weight: 500; color: #374151; margin-bottom: 7px; }
.modal-form-group input, .modal-form-group select, .modal-form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid #e2e8f0; border-radius: 10px; font-size: 14px; font-family: 'Poppins', sans-serif; color: #0c4a6e; outline: none; transition: border 0.3s; }
.modal-form-group input:focus, .modal-form-group select:focus, .modal-form-group textarea:focus { border-color: #f97316; }
.star-selector { display: flex; gap: 6px; margin-bottom: 4px; }
.star-btn { font-size: 32px; color: #e2e8f0; cursor: pointer; transition: color 0.2s, transform 0.2s; line-height: 1; }
.star-btn:hover, .star-btn.selected { color: #f59e0b; transform: scale(1.2); }
.modal-submit-btn { width: 100%; padding: 14px; background: linear-gradient(135deg, #f97316, #ea580c); color: #fff; border: none; border-radius: 10px; font-size: 15px; font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer; transition: all 0.3s; margin-top: 6px; }
.modal-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.4); }
.review-success-msg { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 12px 16px; font-size: 13px; color: #16a34a; margin-bottom: 16px; }

/* LOGO */
.logo-img { height: 70px; width: auto; object-fit: contain; display: block; transition: opacity 0.3s; mix-blend-mode: screen; }
.logo-img:hover { opacity: 0.85; }

/* DESTINATION TOGGLE */
.dest-toggle-btn { flex: 1; padding: 10px 14px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 500; font-family: 'Poppins', sans-serif; cursor: pointer; transition: all 0.3s; }
.dest-toggle-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }
.dest-toggle-btn.active { background: rgba(249,115,22,0.25); border-color: #f97316; color: #f97316; }

/* CALC DISTANCE BUTTON */
.calc-distance-btn { width: 100%; padding: 12px; background: #f97316; color: #fff; border: none; border-radius: 10px; font-size: 14px; font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer; transition: all 0.3s; margin-top: 4px; }
.calc-distance-btn:hover { background: #ea580c; transform: translateY(-2px); }
.calc-distance-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET 1024px
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .calc-card { grid-template-columns: 1fr; gap: 28px; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE 768px
   ═══════════════════════════════════════ */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar { background: rgba(12,74,110,0.97); padding: 8px 0; }
    .navbar.scrolled { background: rgba(255,255,255,0.97); padding: 6px 0; }
    .nav-container { padding: 0 16px; position: relative; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(8,47,73,0.98);
        padding: 90px 28px 40px;
        z-index: 999;
        gap: 4px;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }
    .nav-links.open { display: flex; }
    .nav-links li a {
        color: rgba(255,255,255,0.85) !important;
        font-size: 16px;
        padding: 14px 16px;
        border-radius: 10px;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        transition: all 0.2s;
    }
    .nav-links li a:hover { background: rgba(255,255,255,0.08); color: #fff !important; }
    .nav-links .nav-book-btn {
        background: #f97316 !important;
        color: #fff !important;
        text-align: center;
        margin-top: 12px;
        border-bottom: none;
        border-radius: 50px;
    }
    .hamburger { display: flex; }
    .hamburger span { background: #fff; }
    .navbar.scrolled .hamburger span { background: #0c4a6e; }
    .logo-img { height: 44px; }
    .logo-text { font-size: 16px; }

    /* HERO */
    .hero { min-height: 100svh; }
    .hero-content { padding: 0 12px; margin-top: 70px; }
    .hero-title { font-size: clamp(28px, 8vw, 42px); }
    .hero-subtitle { font-size: 14px; margin-bottom: 28px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 36px; }
    .btn-primary { width: 100%; max-width: 300px; text-align: center; font-size: 15px; padding: 14px 24px; }
    .btn-whatsapp { width: 100%; max-width: 300px; text-align: center; font-size: 15px; padding: 14px 24px; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 24px; }
    .stat-label { font-size: 10px; }
    .stat-divider { display: none; }

    /* SECTIONS */
    .section-header { margin-bottom: 32px; }
    .section-title { font-size: clamp(22px, 6vw, 32px); }

    /* FEATURES */
    .features { padding: 56px 0; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .feature-card { padding: 20px 14px; }
    .feature-icon { font-size: 30px; margin-bottom: 10px; }
    .feature-card h3 { font-size: 13px; }
    .feature-card p { font-size: 12px; }

    /* TOURS */
    .tours { padding: 56px 0; }
    .tours-grid { grid-template-columns: 1fr; gap: 16px; }

    /* CALCULATOR */
    .calculator { padding: 56px 0; }
    .calc-card { padding: 20px 16px; gap: 20px; }
    .calc-field label { font-size: 11px; }
    .calc-field select,
    .calc-field input { font-size: 14px; padding: 10px 12px; }
    .dest-toggle-btn { font-size: 12px; padding: 9px 8px; }
    .result-amount { font-size: 36px; }
    .result-box { padding: 20px 16px; }
    .breakdown-row { font-size: 12px; }

    /* REVIEWS */
    .reviews { padding: 56px 0; }
    .reviews-summary { flex-direction: column; gap: 20px; padding: 20px 18px; align-items: flex-start; }
    .score-number { font-size: 48px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
    .review-card { padding: 16px; }
    .write-review-btn { width: 100%; }

    /* CONTACT */
    .contact { padding: 56px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-map iframe { height: 220px; }
    .whatsapp-contact-btn { width: 100%; justify-content: center; }

    /* FOOTER */
    .footer { padding: 44px 0 0; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 16px 0; }

    /* MODAL */
    .modal-box { padding: 24px 18px; border-radius: 16px; }
    .modal-title { font-size: 18px; }
    .star-btn { font-size: 28px; }

    /* WHATSAPP */
    .whatsapp-float { width: 50px; height: 50px; font-size: 22px; bottom: 18px; right: 16px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE 480px
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .hero-title { font-size: clamp(24px, 9vw, 34px); }
    .hero-tag { font-size: 11px; padding: 5px 12px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 18px 14px; }
    .tour-img { height: 130px; }
    .tour-img-text { font-size: 26px; }
    .tour-body h3 { font-size: 16px; }
    .tour-price { font-size: 17px; }
    .tour-btn { padding: 8px 16px; font-size: 12px; }
    .calc-card { padding: 16px 12px; }
    .result-amount { font-size: 30px; }
    .result-per-person { font-size: 12px; }
    .section-title { font-size: 20px; }
    .review-card { padding: 14px; }
    .reviewer-name { font-size: 13px; }
    .review-text { font-size: 13px; }
    .footer-links h4 { font-size: 12px; }
    .footer-links a { font-size: 12px; }
    .logo-img { height: 38px; }
    .logo-text { font-size: 14px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — VERY SMALL 360px
   ═══════════════════════════════════════ */
@media (max-width: 360px) {
    .hero-title { font-size: 22px; }
    .btn-primary,
    .btn-whatsapp { font-size: 14px; padding: 12px 20px; }
    .section-title { font-size: 18px; }
    .tour-btn { padding: 7px 12px; font-size: 11px; }
    .dest-toggle-btn { font-size: 11px; padding: 8px 6px; }
}