/* ============================================================
   MAESTRO HARAMAIN (PT. Maestro Amanah Internasional) — maestroharamain.com
   Stack: Pure CSS, no framework. Poppins via Google Fonts.
   Palette: corporate identity dari logo resmi — Black · Orange · Gold
   ============================================================ */

:root {
    --orange:       #F97316;
    --orange-dark:  #EA6A0A;
    --orange-light: #FFF7ED;
    --gold:         #FDB913;
    --gold-dark:    #E0A000;
    --green:        #1B5E20;
    --black:        #1A1A1A;
    --gray-dark:    #4A4A4A;
    --gray-mid:     #6B7280;
    --gray-light:   #F6F6F6;
    --gray-border:  #E5E7EB;
    --white:        #FFFFFF;
    --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
    --shadow:       0 4px 24px rgba(0,0,0,0.09);
    --shadow-md:    0 8px 40px rgba(0,0,0,0.13);
    --radius:       16px;
    --radius-sm:    10px;
    --transition:   all 0.28s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 18px 0;
    transition: var(--transition);
}
.navbar.scrolled { padding: 12px 0; box-shadow: var(--shadow); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 40px; width: 40px; object-fit: contain; border-radius: 8px; }
.nav-logo-text {
    font-size: 1.1rem; font-weight: 800; color: var(--black); letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--orange); }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
    font-size: 0.9rem; font-weight: 500; color: var(--gray-dark);
    transition: var(--transition); position: relative;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
    height: 2px; background: var(--orange);
    transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.nav-menu a:hover { color: var(--orange); }
.nav-menu a:hover::after { transform: scaleX(1); }
.btn-nav {
    background: var(--orange) !important; color: white !important;
    padding: 10px 24px !important; border-radius: 50px !important;
    font-weight: 600 !important; font-size: 0.88rem !important;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--orange-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(249,115,22,0.3); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, rgba(15,15,15,0.82) 0%, rgba(30,30,30,0.75) 100%),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex; align-items: center; padding-top: 80px;
}
.hero-content { color: white; max-width: 680px; padding: 72px 0; position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.4);
    color: #FDBA74; padding: 6px 18px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 500; margin-bottom: 28px; letter-spacing: 0.5px;
}
.hero-badge::before { content: '✦'; font-size: 0.7rem; }
.hero-content h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 800;
    line-height: 1.1; margin-bottom: 20px; letter-spacing: -1.5px;
}
.hero-content h1 span { color: var(--orange); }
.hero-desc { font-size: 1.05rem; opacity: 0.88; margin-bottom: 40px; max-width: 540px; line-height: 1.75; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.btn-primary {
    display: inline-block; background: var(--orange); color: white;
    padding: 14px 34px; border-radius: 50px; font-weight: 600; font-size: 0.98rem;
    transition: var(--transition); letter-spacing: 0.2px;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.38); }
.btn-outline {
    display: inline-block; background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.4); color: white;
    padding: 14px 34px; border-radius: 50px; font-weight: 600; font-size: 0.98rem;
    transition: var(--transition); backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.65); transform: translateY(-2px); }
.hero-stats { display: flex; align-items: center; gap: 36px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.9rem; font-weight: 800; color: var(--orange); line-height: 1; letter-spacing: -1px; }
.stat-label { font-size: 0.77rem; opacity: 0.7; margin-top: 5px; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.18); flex-shrink: 0; }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: 100px 0; }
.bg-light { background: var(--gray-light); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    display: inline-block; color: var(--orange); font-size: 0.78rem;
    font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.section-header h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.section-desc { font-size: 1rem; color: var(--gray-mid); max-width: 580px; margin: 0 auto; }

/* ── PROFIL ───────────────────────────────────────────────── */
.profil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
.profil-img { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; background: var(--gray-light); }
.profil-img img { width: 100%; height: 100%; object-fit: cover; }
.profil-img-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--orange); color: white; border-radius: var(--radius-sm);
    padding: 12px 20px;
}
.profil-img-badge .num { font-size: 2rem; font-weight: 800; line-height: 1; }
.profil-img-badge .txt { font-size: 0.78rem; opacity: 0.9; }
.profil-content h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.8px; line-height: 1.2; }
.profil-content p { color: var(--gray-dark); margin-bottom: 20px; line-height: 1.8; }
.profil-points { list-style: none; margin-bottom: 36px; }
.profil-points li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: var(--gray-dark); }
.profil-points li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── KEUNGGULAN ───────────────────────────────────────────── */
.keunggulan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.keunggulan-card {
    background: white; border-radius: var(--radius); padding: 32px 28px;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    border: 1px solid var(--gray-border);
}
.keunggulan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.keunggulan-icon {
    width: 52px; height: 52px; border-radius: 14px; background: var(--orange-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 20px;
}
.keunggulan-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.keunggulan-card p { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.7; }

/* ── PAKET ────────────────────────────────────────────────── */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 340px));
    gap: 28px;
}
.package-note { margin-top: 24px; font-size: 0.88rem; color: var(--gray-mid); text-align: center; }
.package-note a { color: var(--orange); font-weight: 600; }

.package-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); position: relative; transition: var(--transition);
    border: 2px solid transparent; width: 100%; max-width: 340px;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.card-badge {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    background: var(--orange); color: white; padding: 4px 14px;
    border-radius: 50px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3px;
}
.card-badge.gold { background: var(--gold); color: var(--black); }
.card-badge.booked-badge { background: #888; z-index: 11; }
.card-duration {
    position: absolute; top: 14px; left: 14px; z-index: 3;
    background: rgba(0,0,0,0.52); backdrop-filter: blur(4px); color: white;
    padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
}
.card-img { position: relative; height: 200px; overflow: hidden; background: #222; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.package-card:hover .card-img img { transform: scale(1.06); }
.card-img-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.68));
    color: white; padding: 20px 14px 12px; display: flex; justify-content: space-between; align-items: flex-end;
}
.overlay-date { font-size: 0.78rem; font-weight: 600; line-height: 1.3; }
.overlay-hijri { font-size: 0.68rem; opacity: 0.8; margin-top: 3px; }
.overlay-seat { text-align: right; }
.overlay-seat span { font-size: 1.2rem; font-weight: 800; display: block; line-height: 1; }
.overlay-seat small { font-size: 0.65rem; opacity: 0.8; }
.card-body { padding: 18px; }
.card-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.card-airline { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.airline-code {
    display: inline-block; color: white; padding: 3px 9px;
    border-radius: 6px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
}
.airline-name { font-size: 0.82rem; color: var(--gray-dark); font-weight: 500; }
.ticket-confirmed { font-size: 0.7rem; color: var(--green); font-weight: 600; background: #f0fdf4; padding: 2px 8px; border-radius: 50px; }
.card-hotels { margin-bottom: 12px; }
.hotel-row { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 6px; font-size: 0.82rem; }
.hotel-city { color: var(--gray-mid); min-width: 55px; font-size: 0.75rem; padding-top: 1px; }
.hotel-name { color: var(--gray-dark); font-weight: 500; line-height: 1.3; }
.features-hl { background: var(--gray-light); border-radius: var(--radius-sm); padding: 10px 12px; margin-bottom: 12px; }
.features-hl-label { font-size: 0.7rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.card-features { list-style: none; }
.card-features li { font-size: 0.8rem; color: var(--gray-dark); padding: 2px 0; display: flex; gap: 6px; }
.card-features li::before { content: '·'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.guide-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.guide-avatar {
    width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
    background: var(--orange); color: white; display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 700;
}
.guide-avatar img { width: 100%; height: 100%; object-fit: cover; }
.guide-name { font-size: 0.8rem; color: var(--gray-dark); }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; border-top: 1px solid var(--gray-border); padding-top: 14px; }
.card-price .price-label { font-size: 0.7rem; color: var(--gray-mid); display: block; }
.card-price .price-value { font-size: 1rem; font-weight: 800; color: var(--orange); }
.btn-card {
    background: var(--orange); color: white; padding: 8px 16px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 600; transition: var(--transition); display: inline-block;
}
.btn-card:hover { background: var(--orange-dark); transform: translateY(-1px); }
.card-downloads { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.btn-dl {
    background: var(--gray-light) !important; color: var(--gray-dark) !important;
    font-size: 0.72rem !important; padding: 6px 12px !important;
}
.btn-dl:hover { background: var(--gray-border) !important; transform: none !important; }
.package-card.booked { position: relative; pointer-events: none; }
.package-card.booked:hover { transform: none; box-shadow: var(--shadow); border-color: transparent; }
.booked-overlay {
    position: absolute; inset: 0; background: rgba(220,220,220,0.65);
    border-radius: inherit; z-index: 10; pointer-events: none;
}
.package-card.booked .card-badge,
.package-card.booked .card-duration { z-index: 11; }

/* ── HARGA (Land Arrangement, Visa, Hotel, dll) ──────────────── */
.harga-jump { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 52px; }
.harga-jump a {
    background: var(--gray-light); color: var(--gray-dark);
    padding: 8px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
    transition: var(--transition); border: 1px solid var(--gray-border);
}
.harga-jump a:hover { background: var(--orange); color: white; border-color: var(--orange); }
.harga-sub { margin-bottom: 64px; scroll-margin-top: 100px; }
.harga-sub:last-child { margin-bottom: 0; }
.harga-sub-title { font-size: 1.25rem; font-weight: 800; line-height: 1.4; margin-bottom: 14px; }
.harga-sub-desc { font-size: 0.9rem; color: var(--gray-mid); line-height: 1.75; margin-bottom: 34px; max-width: 100%; }
.harga-sub .keunggulan-card h3 { margin-bottom: 16px; }
.harga-sub .keunggulan-card p:not(.harga-price) { margin-bottom: 10px; }
.harga-price { font-size: 1.35rem; font-weight: 800; color: var(--orange); line-height: 1.3; margin-bottom: 10px; }
.harga-price:last-child { margin-bottom: 0; }
.harga-price + .harga-price { margin-top: 12px; }
.harga-price small { font-size: 0.72rem; font-weight: 600; color: var(--gray-mid); line-height: 1.5; display: block; margin-top: 4px; }
.harga-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn-download {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; border: 1.5px solid var(--orange); color: var(--orange);
    padding: 12px 26px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
    transition: var(--transition);
}
.btn-download:hover { background: var(--orange); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,0.28); }
.btn-download.gold { border-color: var(--gold-dark); color: var(--gold-dark); }
.btn-download.gold:hover { background: var(--gold); color: var(--black); box-shadow: 0 6px 20px rgba(253,185,19,0.35); }

/* ── TIM ──────────────────────────────────────────────────── */
.tim-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.tim-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition); text-align: center;
    border: 1px solid var(--gray-border);
}
.tim-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tim-photo {
    width: 100%; height: 220px; background: var(--gray-light);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.tim-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.tim-photo.placeholder { background: linear-gradient(135deg, var(--orange-light), #FEE2E2); }
.tim-initials {
    width: 80px; height: 80px; border-radius: 50%; background: var(--orange);
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; font-weight: 800;
}
.tim-info { padding: 20px 16px; }
.tim-info h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 6px; }
.tim-info .role { font-size: 0.8rem; color: var(--orange); font-weight: 600; margin-bottom: 8px; }
.tim-info .bio { font-size: 0.78rem; color: var(--gray-mid); line-height: 1.6; }

/* ── TESTIMONI ────────────────────────────────────────────── */
.reel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.reel-frame { width: 100%; aspect-ratio: 9/16; border: none; border-radius: var(--radius); box-shadow: var(--shadow); max-height: 500px; }
.testimoni-text-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.testimoni-card {
    background: white; border-radius: var(--radius); padding: 28px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-border);
    position: relative;
}
.testimoni-card::before {
    content: '"'; position: absolute; top: 16px; left: 22px;
    font-size: 4rem; color: var(--orange); opacity: 0.15; font-family: Georgia, serif; line-height: 1;
}
.testimoni-card p { font-size: 0.9rem; color: var(--gray-dark); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimoni-author { display: flex; align-items: center; gap: 12px; }
.testimoni-avatar {
    width: 42px; height: 42px; border-radius: 50%; background: var(--orange);
    color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.testimoni-author .name { font-size: 0.88rem; font-weight: 700; }
.testimoni-author .origin { font-size: 0.75rem; color: var(--gray-mid); }
.stars { color: #FBBF24; font-size: 0.8rem; margin-bottom: 2px; }

/* ── KONTAK ───────────────────────────────────────────────── */
.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.kontak-info h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.8px; }
.kontak-info p { color: var(--gray-dark); margin-bottom: 32px; line-height: 1.8; }
.kontak-items { display: flex; flex-direction: column; gap: 20px; }
.kontak-item { display: flex; align-items: flex-start; gap: 16px; }
.kontak-icon {
    width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--orange-light);
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.kontak-item-text .label { font-size: 0.75rem; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.kontak-item-text .value { font-size: 0.95rem; font-weight: 600; color: var(--black); margin-top: 3px; }
.kontak-cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    border-radius: var(--radius); padding: 40px; color: var(--black); text-align: center;
    box-shadow: 0 8px 32px rgba(249,115,22,0.3);
}
.kontak-cta h3, .kontak-cta p { color: var(--black); }
.kontak-cta h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.kontak-cta p { opacity: 0.9; margin-bottom: 28px; font-size: 0.95rem; }
.btn-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: white; color: var(--orange); padding: 14px 32px;
    border-radius: 50px; font-weight: 700; font-size: 1rem; transition: var(--transition);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.wa-icon { font-size: 1.3rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
    background: var(--black); color: white; padding: 60px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-img { height: 44px; width: auto; max-width: 200px; object-fit: contain; margin-bottom: 12px; }
.footer-brand h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.footer-brand h3 span { color: var(--orange); }
.footer-brand .tagline { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 300px; }
.footer-sosmed { gap: 12px; margin-top: 18px; }
.footer-sosmed a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    transition: var(--transition);
}
.footer-sosmed a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--orange); }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    padding: 80px 0; text-align: center; color: white;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.cta-band p { font-size: 1rem; opacity: 0.75; margin-bottom: 36px; }

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 20px; border-top: 1px solid var(--gray-border); box-shadow: var(--shadow); }
    .nav-menu.open { display: flex; }
    .nav-toggle { display: flex; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-stats { gap: 24px; }
    .stat-num { font-size: 1.5rem; }
    .profil-grid, .kontak-grid { grid-template-columns: 1fr; gap: 40px; }
    .profil-img { min-height: 0; aspect-ratio: 4/3; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .package-grid { grid-template-columns: 1fr; }
    .section { padding: 70px 0; }
}
@media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
}
