/* ═══════════════════════════════════════════
   KHARISMA TOUR — Homepage Styles (ATM v2.1)
   Design: Navy Blue + Gold (Premium Elegant)
   Fully responsive, no Astra conflicts
   ═══════════════════════════════════════════ */

/* ─── RESET (kill Astra defaults on front-page) ─── */
body.front-page, body.home, body.page-template-front-page {
    padding-top: 0 !important;
}
body.front-page #page, body.home #page,
body.page-template-front-page #page {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
}

:root {
    --kt-primary: #1a365d;
    --kt-primary-dark: #0f2440;
    --kt-gold: #c9a94e;
    --kt-gold-light: #e8d5a0;
    --kt-accent: #2563eb;
    --kt-bg: #f8f9fa;
    --kt-text: #1a202c;
    --kt-text-grey: #4a5568;
    --kt-white: #ffffff;
    --kt-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
    --kt-shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --kt-radius: 20px;
    --kt-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--kt-text);
    background-color: var(--kt-bg);
    line-height: 1.6;
    padding-top: 80px;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--kt-transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.kt-container { width: 92%; max-width: 1300px; margin: 0 auto; position: relative; z-index: 2; }

/* ─── NAVBAR ─── */
#ktNavbar {
    position: fixed; top: 0; left: 0; right: 0;
    width: 100%; background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    z-index: 99999; height: 76px;
    display: flex; align-items: center;
}
.kt-nav-container {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; width: 100%; padding: 0 3%;
}
.kt-nav-toggle { display: none; }
.kt-hamburger { display: none; cursor: pointer; padding: 10px; z-index: 10; }
.kt-hamburger .bar {
    display: block; width: 22px; height: 2.5px; margin: 5px 0;
    background: var(--kt-primary); border-radius: 2px; transition: 0.3s;
}
.kt-nav-toggle:checked ~ .kt-hamburger .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.kt-nav-toggle:checked ~ .kt-hamburger .bar:nth-child(2) { opacity: 0; }
.kt-nav-toggle:checked ~ .kt-hamburger .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.kt-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.kt-logo-icon {
    width: 42px; height: 42px; background: var(--kt-primary); color: var(--kt-gold);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.kt-logo-text { font-size: 20px; font-weight: 800; color: var(--kt-primary); white-space: nowrap; }
.kt-logo-hl { color: var(--kt-gold); }
.kt-nav-menu { list-style: none; display: flex; align-items: center; gap: 6px; }
.kt-nav-link {
    font-weight: 600; color: var(--kt-text); font-size: 14px;
    padding: 8px 14px; border-radius: 8px; transition: 0.2s;
}
.kt-nav-link:hover { color: var(--kt-gold); background: rgba(201,169,78,0.08); }
.kt-nav-cta {
    background: var(--kt-primary); color: #fff; padding: 9px 22px;
    border-radius: 50px; font-weight: 700; font-size: 13px;
    display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}
.kt-nav-cta:hover { background: var(--kt-primary-dark); transform: translateY(-1px); color: #fff; }

@media (max-width: 900px) {
    body { padding-top: 66px; }
    #ktNavbar { height: 66px; }
    .kt-hamburger { display: block !important; }
    .kt-nav-menu {
        display: none !important; position: fixed !important;
        top: 66px !important; left: 0 !important; right: 0 !important;
        bottom: 0 !important; background: #fff !important;
        padding: 16px 20px 80px 20px !important;
        flex-direction: column !important; align-items: stretch !important;
        gap: 4px !important; overflow-y: auto !important;
        border-top: 1px solid #eee;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .kt-nav-toggle:checked ~ .kt-nav-menu { display: flex !important; }
    .kt-nav-link, .kt-nav-cta {
        width: 100% !important; padding: 14px 16px !important;
        text-align: center; justify-content: center !important;
        border-radius: 12px !important; font-size: 16px !important;
    }
}

/* ─── HERO ─── */
.kt-hero {
    position: relative; z-index: 1;
    padding: 140px 20px 100px;
    background-size: center/cover no-repeat;
    background-position: center;
    display: flex; align-items: center; justify-content: center;
}
.kt-hero-content { max-width: 880px; margin: 0 auto; text-align: center; }
.kt-hero-inner { display: flex; flex-direction: column; align-items: center; }
.kt-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,169,78,0.15); color: var(--kt-gold);
    border: 1px solid rgba(201,169,78,0.4); backdrop-filter: blur(5px);
    padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
    margin-bottom: 20px;
}
.kt-hero-title {
    color: #fff; text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-size: clamp(28px, 5vw, 50px); margin-bottom: 16px;
    line-height: 1.15; font-weight: 900;
}
.kt-hero-hl { color: var(--kt-gold); text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.kt-hero-desc {
    color: rgba(255,255,255,0.9); font-size: clamp(15px, 2vw, 18px);
    max-width: 700px; margin: 0 auto 32px; line-height: 1.7;
}
.kt-hero-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.kt-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 50px; font-weight: 700; font-size: 14px;
    cursor: pointer; border: none; transition: var(--kt-transition); white-space: nowrap;
}
.kt-btn-gold { background: var(--kt-gold); color: var(--kt-primary-dark); }
.kt-btn-gold:hover { background: var(--kt-gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,169,78,0.35); color: var(--kt-primary-dark); }
.kt-btn-wa { background: #25D366; color: #fff; }
.kt-btn-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); color: #fff; }

/* ─── STATS ─── */
.kt-stats {
    background: var(--kt-white); padding: 40px 20px; margin-top: -50px;
    border-radius: var(--kt-radius); box-shadow: var(--kt-shadow-lg);
    position: relative; z-index: 3;
}
.kt-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.kt-stat-item { padding: 16px 8px; }
.kt-stat-icon { font-size: 24px; color: var(--kt-gold); margin-bottom: 8px; }
.kt-stat-num { font-size: clamp(24px, 3.5vw, 36px); font-weight: 900; color: var(--kt-primary); }
.kt-stat-suf { font-size: 16px; font-weight: 700; color: var(--kt-gold); }
.kt-stat-label { font-size: 12px; color: var(--kt-text-grey); margin-top: 4px; font-weight: 500; }

@media (max-width: 768px) {
    .kt-stats { margin-top: -30px; padding: 24px 16px; border-radius: 16px; }
    .kt-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .kt-stat-item { padding: 12px 4px; }
    .kt-stat-icon { font-size: 20px; }
}

/* ─── SECTION HEADER ─── */
.kt-section-header { text-align: center; margin-bottom: 40px; }
.kt-section-header h2 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 900; color: var(--kt-text); margin-bottom: 10px; }
.kt-hl { color: var(--kt-gold); }
.kt-section-header p { font-size: 15px; color: var(--kt-text-grey); max-width: 550px; margin: 0 auto; }

/* ─── FEATURES ─── */
.kt-features { padding: 80px 0; background: var(--kt-bg); }
.kt-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.kt-feature-box {
    background: var(--kt-white); border-radius: 16px; padding: 28px 20px;
    text-align: center; box-shadow: var(--kt-shadow); transition: var(--kt-transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.kt-feature-box:hover { transform: translateY(-6px); box-shadow: var(--kt-shadow-lg); }
.kt-feature-icon {
    width: 56px; height: 56px; background: linear-gradient(135deg, rgba(201,169,78,0.1), rgba(201,169,78,0.2));
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--kt-gold); margin: 0 auto 14px;
}
.kt-feature-box h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--kt-text); }
.kt-feature-box p { font-size: 13px; color: var(--kt-text-grey); line-height: 1.6; }

@media (max-width: 1024px) { .kt-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
    .kt-features { padding: 60px 0; }
    .kt-features-grid { grid-template-columns: 1fr; gap: 14px; }
    .kt-feature-box { padding: 22px 18px; }
}

/* ═══════════ FILTER BAR (ATM from Tursina) ═══════════ */
.kt-filter-bar {
    display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap;
    background: var(--kt-white); padding: 18px 24px; border-radius: 14px;
    box-shadow: var(--kt-shadow); border: 1px solid rgba(0,0,0,0.04);
    align-items: flex-end;
}
.kt-filter-group { flex: 1; min-width: 160px; }
.kt-filter-group label {
    display: block; font-size: 11px; font-weight: 700; color: var(--kt-text-grey);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
}
.kt-filter-group select {
    width: 100%; padding: 10px 32px 10px 12px; border: 2px solid #e2e8f0; border-radius: 10px;
    font-size: 13px; font-weight: 600; color: var(--kt-text); background: #f8fafc;
    cursor: pointer; transition: 0.2s; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5568' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
}
.kt-filter-group select:focus { border-color: var(--kt-gold); outline: none; box-shadow: 0 0 0 3px rgba(201,169,78,0.15); }

@media (max-width: 768px) {
    .kt-filter-bar { flex-direction: column; gap: 10px; padding: 14px 16px; }
    .kt-filter-group { min-width: 100%; }
}

/* ─── PACKAGES ─── */
.kt-packages { padding: 80px 0; background: var(--kt-white); }
.kt-paket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.kt-paket-card {
    background: var(--kt-white); border-radius: 18px; overflow: hidden;
    box-shadow: var(--kt-shadow); transition: var(--kt-transition);
    border: 1px solid rgba(0,0,0,0.04); position: relative;
}
.kt-paket-card:hover { transform: translateY(-6px); box-shadow: var(--kt-shadow-lg); }
.kt-paket-card.hidden { display: none; }
.kt-paket-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--kt-gold); color: var(--kt-primary-dark);
    padding: 5px 14px; border-radius: 50px; font-size: 11px; font-weight: 700;
}
.kt-paket-img { height: 180px; overflow: hidden; }
.kt-paket-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.kt-paket-card:hover .kt-paket-img img { transform: scale(1.06); }
.kt-paket-body { padding: 20px; }
.kt-paket-title { font-size: 17px; font-weight: 800; margin-bottom: 14px; color: var(--kt-text); line-height: 1.3; }
.kt-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.kt-info-item { display: flex; flex-direction: column; gap: 2px; }
.kt-info-label { font-size: 10px; font-weight: 600; color: var(--kt-text-grey); text-transform: uppercase; letter-spacing: 0.3px; }
.kt-info-label i { color: var(--kt-gold); margin-right: 3px; }
.kt-info-val { font-size: 12px; font-weight: 600; color: var(--kt-text); line-height: 1.3; }
.kt-info-full { grid-column: 1 / -1; }
.kt-jadwal {
    display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
    padding: 8px 12px; background: #f0fdf4; border-radius: 10px; border: 1px solid #bbf7d0;
}
.kt-jadwal-label { font-size: 11px; font-weight: 600; color: #166534; white-space: nowrap; }
.kt-jadwal-item { font-size: 13px; font-weight: 700; color: #15803d; text-decoration: underline; }
.kt-jadwal-item:hover { color: #166534; }
.kt-paket-price {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid #f1f5f9;
}
.kt-price { font-size: 18px; font-weight: 900; color: var(--kt-primary); }
.kt-price span { font-size: 12px; font-weight: 600; color: var(--kt-text-grey); }

@media (max-width: 1024px) { .kt-paket-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 640px) {
    .kt-packages { padding: 60px 0; }
    .kt-paket-grid { grid-template-columns: 1fr; gap: 16px; max-width: 420px; margin: 0 auto; }
}

/* No results */
.kt-no-results { text-align: center; padding: 50px 20px; color: var(--kt-text-grey); }
.kt-no-results i { font-size: 42px; color: #cbd5e1; margin-bottom: 14px; }
.kt-no-results h3 { font-size: 18px; font-weight: 700; color: var(--kt-text); margin-bottom: 6px; }
.kt-no-results p { margin-bottom: 18px; font-size: 14px; }

/* ─── ABOUT ─── */
.kt-about { padding: 80px 0; background: var(--kt-bg); }
.kt-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.kt-section-subtitle { font-size: 13px; font-weight: 700; color: var(--kt-gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.kt-section-heading { font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: var(--kt-text); margin-bottom: 16px; }
.kt-about-text p { color: var(--kt-text-grey); margin-bottom: 14px; line-height: 1.8; font-size: 14px; }
.kt-about-icons { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 20px; }
.kt-about-icon-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--kt-text); }
.kt-about-icon-item i { color: var(--kt-gold); }
.kt-about-image { position: relative; }
.kt-about-image img { border-radius: 18px; box-shadow: var(--kt-shadow-lg); }
.kt-about-badge {
    position: absolute; bottom: -16px; right: -16px;
    background: var(--kt-primary); color: #fff; border-radius: 14px;
    padding: 16px 22px; text-align: center; box-shadow: var(--kt-shadow-lg);
}
.kt-about-badge-num { font-size: 32px; font-weight: 900; color: var(--kt-gold); }
.kt-about-badge-label { font-size: 12px; font-weight: 600; }

@media (max-width: 768px) {
    .kt-about { padding: 60px 0; }
    .kt-about-grid { grid-template-columns: 1fr; gap: 30px; }
    .kt-about-image { order: -1; }
    .kt-about-badge { bottom: -10px; right: 10px; padding: 12px 18px; }
    .kt-about-badge-num { font-size: 26px; }
}

/* ─── TESTIMONIALS ─── */
.kt-testi { padding: 80px 0; background: var(--kt-white); }
.kt-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.kt-testi-card {
    background: var(--kt-bg); border-radius: 18px; padding: 26px;
    box-shadow: var(--kt-shadow); transition: var(--kt-transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.kt-testi-card:hover { transform: translateY(-4px); box-shadow: var(--kt-shadow-lg); }
.kt-testi-stars { color: var(--kt-gold); font-size: 13px; margin-bottom: 12px; }
.kt-testi-card > p { font-size: 14px; color: var(--kt-text-grey); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.kt-testi-author { display: flex; align-items: center; gap: 10px; }
.kt-testi-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    background: var(--kt-primary); color: var(--kt-gold);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 14px;
}
.kt-testi-name { font-weight: 700; font-size: 14px; color: var(--kt-text); }
.kt-testi-from { font-size: 12px; color: var(--kt-text-grey); }

@media (max-width: 1024px) { .kt-testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
    .kt-testi { padding: 60px 0; }
    .kt-testi-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ─── GALLERY MARQUEE ─── */
.kt-gallery { padding: 80px 0; background: var(--kt-bg); overflow: hidden; }
.kt-marquee { overflow: hidden; margin-top: 16px; padding: 0 0 0 0; }
.kt-marquee-content {
    display: flex; gap: 16px; animation: ktMarquee 35s linear infinite;
    width: max-content; padding: 8px 0;
}
.kt-marquee:hover .kt-marquee-content { animation-play-state: paused; }
@keyframes ktMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.kt-gallery-card {
    min-width: 260px; border-radius: 14px; overflow: hidden;
    box-shadow: var(--kt-shadow); transition: 0.3s; flex-shrink: 0;
}
.kt-gallery-card:hover { transform: scale(1.03); }
.kt-gallery-card img { width: 100%; height: 180px; object-fit: cover; }
.kt-gallery-caption {
    padding: 10px 14px; font-size: 13px; font-weight: 600;
    color: var(--kt-text); background: var(--kt-white);
}

@media (max-width: 600px) {
    .kt-gallery { padding: 60px 0; }
    .kt-gallery-card { min-width: 220px; }
    .kt-gallery-card img { height: 150px; }
}

/* ─── CTA ─── */
.kt-cta { padding: 60px 20px; background: linear-gradient(135deg, var(--kt-primary-dark) 0%, var(--kt-primary) 100%); }
.kt-cta-box { display: flex; justify-content: center; }
.kt-cta-text { text-align: center; max-width: 650px; color: #fff; width: 100%; }
.kt-cta-text h2 { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--kt-gold); margin-bottom: 10px; }
.kt-cta-price { font-size: clamp(28px, 5vw, 40px); font-weight: 900; margin-bottom: 10px; }
.kt-cta-text > p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.kt-cta-benefits { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-bottom: 28px; }
.kt-cta-benefits li { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9); }
.kt-cta-benefits li i { color: var(--kt-gold); margin-right: 5px; }

@media (max-width: 600px) {
    .kt-cta { padding: 50px 16px; }
    .kt-cta-benefits { flex-direction: column; align-items: center; gap: 6px; }
}

/* ─── FAQ ─── */
.kt-faq { padding: 80px 0; background: var(--kt-white); }
.kt-faq-list { max-width: 750px; margin: 0 auto; }
.kt-faq-item { border-bottom: 1px solid #e2e8f0; }
.kt-faq-q {
    width: 100%; background: none; border: none; padding: 18px 0;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-size: 15px; font-weight: 700; color: var(--kt-text);
    text-align: left; gap: 12px;
}
.kt-faq-q span { flex: 1; }
.kt-faq-q i { color: var(--kt-gold); transition: 0.3s; font-size: 12px; flex-shrink: 0; }
.kt-faq-item.open .kt-faq-q i { transform: rotate(180deg); }
.kt-faq-a p { padding: 0 0 18px; color: var(--kt-text-grey); line-height: 1.7; font-size: 14px; }

@media (max-width: 600px) {
    .kt-faq { padding: 60px 0; }
    .kt-faq-q { font-size: 14px; padding: 14px 0; }
}

/* ─── FOOTER ─── */
.kt-footer {
    background-color: var(--kt-primary-dark); color: #fff;
    padding: 80px 0 36px; border-radius: 48px 48px 0 0;
    position: relative; z-index: 2;
}
.kt-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 50px; }
.kt-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.kt-footer-name { font-size: 20px; font-weight: 800; }
.kt-footer-col h4 { font-size: 16px; font-weight: 800; margin-bottom: 12px; color: var(--kt-gold); }
.kt-footer-col p { color: #aab7c4; max-width: 360px; font-size: 13px; line-height: 1.7; }
.kt-footer-col ul li { margin-bottom: 8px; }
.kt-footer-col ul li a { color: #aab7c4; font-size: 13px; }
.kt-footer-col ul li a:hover { color: #fff; }
.kt-footer-col ul li i { margin-right: 6px; color: var(--kt-gold); width: 14px; font-size: 13px; }
.kt-footer-social { display: flex; flex-direction: column; gap: 8px; }
.kt-footer-social a { color: #aab7c4; display: flex; align-items: center; gap: 6px; font-size: 13px; }
.kt-footer-social a:hover { color: var(--kt-gold); }
.kt-footer-social a i { width: 14px; text-align: center; }
.kt-footer-izin { margin-top: 12px; }
.kt-footer-izin p { font-size: 12px; margin-bottom: 4px; }
.kt-footer-copy {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
    text-align: center; color: #aab7c4; font-size: 13px;
}

@media (max-width: 900px) {
    .kt-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
    .kt-footer { padding: 60px 0 28px; border-radius: 32px 32px 0 0; }
    .kt-footer-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .kt-footer-col p { max-width: 100%; }
    .kt-footer-social { align-items: center; }
    .kt-footer-brand { justify-content: center; }
}

/* ─── WA FLOATING ─── */
.kt-wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.kt-wa-btn {
    width: 60px; height: 60px; background: #25D366; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 32px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: 0.3s;
    border: none; text-decoration: none;
}
.kt-wa-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

@media (max-width: 600px) {
    .kt-wa-float { bottom: 16px; right: 16px; }
    .kt-wa-btn { width: 52px; height: 52px; font-size: 28px; }
}

/* ─── SCROLL TO TOP ─── */
.kt-top-btn {
    position: fixed; bottom: 24px; right: 96px; z-index: 9999;
    width: 44px; height: 44px; background: var(--kt-primary); color: var(--kt-gold);
    border-radius: 50%; display: none; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer; box-shadow: var(--kt-shadow); transition: var(--kt-transition);
}
.kt-top-btn:hover { background: var(--kt-primary-dark); transform: translateY(-2px); }
.kt-top-btn.show { display: flex; }

@media (max-width: 600px) {
    .kt-top-btn { bottom: 16px; right: 80px; width: 40px; height: 40px; font-size: 16px; }
}

/* ─── REVEAL ANIMATION ─── */
.kt-reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.kt-reveal.active { opacity: 1; transform: translateY(0); }

/* ─── GLOBAL MOBILE UTILITIES ─── */
@media (max-width: 480px) {
    .kt-container { width: 94%; }
    .kt-btn { padding: 11px 22px; font-size: 13px; }
    .kt-hero { padding: 110px 16px 70px; }
    .kt-hero-badge { font-size: 11px; padding: 6px 14px; }
}
