/* ========================================
   FITNESS HOUSE GYM — Brand Stylesheet
   Identity: Black / Red / White, grunge, bold
   ======================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #0a0a0a;
    --black-2: #121212;
    --black-3: #1b1b1b;
    --red: #e10600;
    --red-dark: #a80400;
    --red-glow: rgba(225, 6, 0, 0.45);
    --white: #ffffff;
    --gray: #b5b5b5;
    --gray-dark: #6f6f6f;
    --border: rgba(255, 255, 255, 0.08);

    --font-ar: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    --font-display: 'Anton', 'Cairo', sans-serif;
    --font-script: 'Caveat', cursive;

    --radius: 12px;
    --nav-h: 76px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-ar);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 15% 10%, rgba(225, 6, 0, 0.10), transparent 45%),
        radial-gradient(ellipse at 85% 90%, rgba(225, 6, 0, 0.08), transparent 45%);
}

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.text-red { color: var(--red); }

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section { padding: 100px 0; position: relative; }

.section-header { text-align: center; margin-bottom: 56px; }

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    letter-spacing: 4px;
    font-size: 13px;
    color: var(--red);
    margin-bottom: 10px;
    direction: ltr;
}

.section-title {
    font-size: clamp(30px, 4.2vw, 48px);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-subtitle { color: var(--gray); font-size: 17px; max-width: 640px; margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 8px;
    font-family: var(--font-ar);
    font-weight: 800;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 6px 24px var(--red-glow);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 17px; }
.btn-block { width: 100%; }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed; inset: 0 0 auto 0;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}
.navbar.scrolled { background: rgba(10, 10, 10, 0.96); }

.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    height: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; box-shadow: 0 0 14px var(--red-glow); }
.nav-logo-text { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; direction: ltr; }
.nav-logo-text b { color: var(--red); }

.nav-menu { display: flex; gap: 30px; }
.nav-menu a { font-weight: 700; font-size: 15px; color: var(--gray); position: relative; padding: 6px 0; transition: color .25s; }
.nav-menu a::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 2px;
    background: var(--red); transition: width .25s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta { padding: 10px 22px; font-size: 14px; }

.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ========================================
   HERO
   ======================================== */
.hero-section {
    min-height: min(100vh, 960px);
    padding: calc(var(--nav-h) + 60px) 24px 80px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(10,10,10,.55), rgba(10,10,10,.92)),
        url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1800&q=80&fit=crop') center/cover no-repeat;
    overflow: hidden;
}
.hero-glow {
    position: absolute; width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(225,6,0,.35), transparent 65%);
    filter: blur(40px); pointer-events: none;
}
.hero-glow-right { top: -120px; right: -140px; }
.hero-glow-left { bottom: -160px; left: -160px; }

.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-logo {
    width: 300px; max-width: 70vw; margin: 0 auto 10px;
    border-radius: 16px;
    box-shadow: 0 0 60px var(--red-glow), 0 20px 50px rgba(0,0,0,.6);
    animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 40px var(--red-glow), 0 20px 50px rgba(0,0,0,.6); }
    50% { box-shadow: 0 0 80px var(--red-glow), 0 20px 50px rgba(0,0,0,.6); }
}
.hero-motto {
    font-family: var(--font-display); letter-spacing: 4px; font-size: 13px;
    color: var(--gray); margin-bottom: 26px; direction: ltr;
}
.hero-title { font-size: clamp(36px, 6vw, 68px); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.hero-subtitle { font-size: clamp(16px, 2vw, 20px); color: var(--gray); margin-bottom: 36px; }
.hero-subtitle strong { color: var(--white); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.hero-tags { display: flex; justify-content: center; gap: 14px; font-weight: 700; color: var(--gray); }
.hero-tags i { color: var(--red); font-style: normal; }

.scroll-hint {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    color: var(--red); font-size: 22px; animation: bounce 1.8s infinite; z-index: 2;
}
@keyframes bounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ========================================
   MARQUEE STRIP
   ======================================== */
.marquee-strip {
    background: var(--red); color: var(--white);
    overflow: hidden; padding: 12px 0;
    transform: skewY(-1deg); margin-top: -20px;
    direction: ltr;
}
.marquee-track {
    display: flex; gap: 40px; width: max-content;
    font-family: var(--font-display); font-size: 20px; letter-spacing: 3px;
    animation: marquee 30s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========================================
   ABOUT
   ======================================== */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.about-text p { color: var(--gray); font-size: 17px; margin-bottom: 16px; }
.about-text p strong { color: var(--white); }
.about-list { margin: 24px 0 32px; display: grid; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.about-list i {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    background: var(--red); color: var(--white); font-size: 12px;
    display: inline-flex; align-items: center; justify-content: center;
}
.about-visual { position: relative; }
.about-visual img {
    border-radius: 16px; border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0,0,0,.6), 0 0 40px rgba(225,6,0,.15);
    aspect-ratio: 3/4; object-fit: cover;
}
.about-stamp {
    position: absolute; bottom: 24px; left: -20px;
    background: var(--black); border: 2px solid var(--red);
    padding: 14px 22px; border-radius: 8px;
    font-family: var(--font-display); letter-spacing: 3px; font-size: 16px; line-height: 1.3;
    direction: ltr; text-align: left; color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

/* ========================================
   FEATURES
   ======================================== */
.features-section { background: var(--black-2); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
    background: var(--black-3); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 34px 26px; text-align: center;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px;
    background: var(--red); transform: scaleX(0); transition: transform .3s;
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(225,6,0,.5); box-shadow: 0 20px 40px rgba(0,0,0,.5); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%;
    background: rgba(225,6,0,.12); border: 2px solid var(--red);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--red);
}
.feature-card h3 { font-family: var(--font-display); font-size: 15px; letter-spacing: 2px; direction: ltr; color: var(--white); }
.feature-ar { font-weight: 800; color: var(--red); margin: 6px 0 12px; font-size: 18px; }
.feature-card p:last-child { color: var(--gray); font-size: 15px; }

/* ========================================
   PRICING  (mirrors the brochure design)
   ======================================== */
.pricing-section {
    background:
        linear-gradient(180deg, rgba(10,10,10,.93), rgba(10,10,10,.97)),
        url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=1800&q=70&fit=crop') center/cover fixed no-repeat;
}
.pricing-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.pricing-block {
    background: rgba(18,18,18,.85); border: 1px solid var(--border);
    border-radius: 18px; padding: 28px 24px;
    backdrop-filter: blur(6px);
}
.pricing-block-title {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--red); color: var(--white);
    font-size: 24px; font-weight: 900;
    padding: 10px 26px; border-radius: 8px;
    margin-bottom: 26px;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
    box-shadow: 0 8px 26px var(--red-glow);
}
.pricing-block-title i { font-size: 18px; }

.price-list { display: grid; gap: 14px; }
.price-row {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center; gap: 14px;
    background: var(--black);
    border: 2px solid rgba(255,255,255,.14);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.price-row:hover, .price-row:focus-visible {
    border-color: var(--red); transform: translateX(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,.5), 0 0 20px rgba(225,6,0,.2);
    outline: none;
}
.price-row.best { border-color: var(--red); }
.price-row .badge {
    position: absolute; top: -12px; right: 16px;
    background: var(--red); color: var(--white);
    font-size: 12px; font-weight: 800; padding: 2px 12px; border-radius: 20px;
}
.price-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(225,6,0,.15); color: var(--red);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.price-icon b { font-family: var(--font-display); font-size: 22px; }
.price-name { font-size: 21px; font-weight: 800; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.price-name .x { color: var(--red); font-family: var(--font-display); }
.old-price { font-style: normal; font-size: 15px; font-weight: 700; color: var(--red); }
.old-price s { color: var(--white); text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 3px; margin-right: 4px; }
.price-value {
    background: var(--white); color: var(--black);
    font-family: var(--font-display); font-size: 28px;
    min-width: 96px; text-align: center;
    padding: 4px 16px; border-radius: 30px; line-height: 1.3;
    direction: ltr;
}
.price-value small { font-family: var(--font-ar); font-size: 13px; font-weight: 800; }

.pricing-note {
    margin-top: 22px; display: flex; gap: 12px; align-items: flex-start;
    background: rgba(225,6,0,.08); border-right: 3px solid var(--red);
    padding: 14px 16px; border-radius: 8px; color: var(--gray); font-size: 14px;
}
.pricing-note i { color: var(--red); margin-top: 4px; }
.pricing-note a { color: var(--white); font-weight: 800; direction: ltr; unicode-bidi: embed; }

.pricing-slogan {
    text-align: center; margin-top: 50px;
    font-family: var(--font-script); font-size: 42px; color: var(--white);
    direction: ltr;
}
.pricing-slogan span { color: var(--red); }

/* ========================================
   GRAND OPENING
   ======================================== */
.opening-section { background: var(--black-2); overflow: hidden; }
.opening-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.opening-poster img {
    border-radius: 16px; border: 1px solid var(--border);
    box-shadow: 0 30px 70px rgba(0,0,0,.7), 0 0 50px rgba(225,6,0,.15);
    transform: rotate(-2deg); transition: transform .4s;
}
.opening-poster img:hover { transform: rotate(0) scale(1.02); }
.opening-desc { color: var(--gray); font-size: 18px; margin-bottom: 28px; }

.opening-details { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 30px; }
.detail {
    display: flex; align-items: center; gap: 14px;
    background: var(--black-3); border: 1px solid var(--border);
    border-radius: 12px; padding: 14px 16px;
}
.detail i { font-size: 24px; color: var(--red); }
.detail small { display: block; color: var(--gray); font-size: 13px; }
.detail strong { font-size: 17px; font-weight: 800; }

.countdown { display: flex; gap: 14px; margin-bottom: 30px; direction: ltr; justify-content: flex-end; }
.count-item {
    background: var(--black); border: 2px solid var(--red);
    border-radius: 12px; padding: 12px 8px; min-width: 82px; text-align: center;
    box-shadow: 0 0 20px rgba(225,6,0,.2);
}
.count-item span { display: block; font-family: var(--font-display); font-size: 36px; line-height: 1; }
.count-item small { color: var(--gray); font-size: 13px; font-weight: 700; }
.opened-msg { font-size: 22px; font-weight: 900; color: var(--red); margin-bottom: 24px; }
.opening-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========================================
   CONTACT
   ======================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-subtitle { margin: 0 0 30px; }
.contact-list { display: grid; gap: 18px; margin-bottom: 30px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.contact-icon {
    width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
    background: rgba(225,6,0,.12); border: 1px solid rgba(225,6,0,.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--red);
}
.contact-icon.whatsapp { color: #25D366; background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.4); }
.contact-list small { display: block; color: var(--gray); font-size: 13px; }
.contact-list a, .contact-list span:not(.contact-icon) { font-size: 18px; font-weight: 800; }
.contact-list a:hover { color: var(--red); }
.contact-slogan { font-family: var(--font-script); font-size: 34px; color: var(--red); direction: ltr; text-align: right; }

.contact-form {
    background: var(--black-3); border: 1px solid var(--border);
    border-top: 4px solid var(--red);
    border-radius: 16px; padding: 34px 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.contact-form h3 { font-size: 26px; font-weight: 900; margin-bottom: 22px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 14px; color: var(--gray); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px;
    background: var(--black); color: var(--white);
    border: 2px solid rgba(255,255,255,.12); border-radius: 8px;
    font-family: var(--font-ar); font-size: 15px;
    transition: border-color .25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group input.error, .form-group select.error { border-color: var(--red); background: rgba(225,6,0,.08); }
.form-group textarea { resize: vertical; }
.form-group select option, .form-group select optgroup { background: var(--black-2); }
.form-hint { text-align: center; margin-top: 14px; font-size: 14px; color: var(--gray); }
.form-hint a { color: #25D366; font-weight: 800; }

/* ========================================
   FOOTER
   ======================================== */
.site-footer { background: #050505; border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-content {
    max-width: 1200px; margin: 0 auto; padding: 0 24px 40px;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
}
.footer-brand img { width: 120px; border-radius: 12px; margin-bottom: 14px; box-shadow: 0 0 20px var(--red-glow); }
.footer-brand p { font-family: var(--font-display); letter-spacing: 2px; font-size: 12px; color: var(--gray); direction: ltr; text-align: right; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--black-3); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
    transition: .25s;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer-col h4 { font-size: 18px; font-weight: 900; margin-bottom: 16px; position: relative; padding-bottom: 8px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 34px; height: 3px; background: var(--red); }
.footer-col li { color: var(--gray); margin-bottom: 10px; font-weight: 600; }
.footer-col li i { color: var(--red); width: 20px; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
    border-top: 1px solid var(--border); padding: 20px 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
    max-width: 1200px; margin: 0 auto; color: var(--gray-dark); font-size: 14px;
}
.footer-tag { font-weight: 800; color: var(--gray); }
.footer-tag span { color: var(--red); margin: 0 6px; }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
    position: fixed; bottom: 24px; left: 24px; z-index: 900;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: var(--white); font-size: 30px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.45);
    transition: transform .25s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ========================================
   MODAL & TOAST (injected by JS)
   ======================================== */
.custom-modal {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center; padding: 16px;
    animation: fadeIn .25s ease;
}
.custom-modal.closing { opacity: 0; transition: opacity .25s; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(6px); }
.modal-content {
    position: relative; width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto;
    background: var(--black-3); border: 1px solid var(--border); border-top: 4px solid var(--red);
    border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.8);
    animation: slideUp .3s ease;
}
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 22px 26px 16px; border-bottom: 1px solid var(--border); }
.modal-header h2 { font-size: 22px; font-weight: 900; }
.modal-close { background: none; border: none; color: var(--gray); font-size: 30px; cursor: pointer; line-height: 1; transition: color .2s; }
.modal-close:hover { color: var(--red); }
.modal-body { padding: 24px 26px; }
.modal-plan {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--black); border: 2px solid var(--red); border-radius: 10px;
    padding: 12px 16px; margin-bottom: 20px;
}
.modal-plan strong { font-size: 18px; }
.modal-plan .price-value { font-size: 22px; min-width: 80px; }

.notification-toast {
    position: fixed; top: 96px; right: 20px; z-index: 10001;
    display: flex; align-items: center; gap: 12px;
    background: var(--black-3); color: var(--white);
    border: 1px solid var(--border); border-right: 4px solid var(--red);
    padding: 16px 22px; border-radius: 12px; max-width: 380px;
    font-weight: 700; box-shadow: 0 12px 30px rgba(0,0,0,.6);
    animation: toastIn .3s ease, toastOut .3s ease 3.2s forwards;
}
.notification-toast i { color: var(--red); font-size: 22px; }
.notification-toast.success { border-right-color: #25D366; }
.notification-toast.success i { color: #25D366; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastIn { from { transform: translateX(-30px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes toastOut { to { transform: translateX(-30px); opacity: 0; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    section { padding: 80px 0; }
    .nav-menu { gap: 20px; }
    .nav-cta { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-columns { grid-template-columns: 1fr; }
    .about-grid, .opening-grid, .contact-grid { gap: 40px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .nav-menu {
        position: fixed; top: var(--nav-h); right: 0; left: 0;
        flex-direction: column; gap: 0;
        background: rgba(10,10,10,.98); border-bottom: 1px solid var(--border);
        max-height: 0; overflow: hidden; transition: max-height .35s ease;
    }
    .nav-menu.active { max-height: 420px; }
    .nav-menu li { border-top: 1px solid var(--border); }
    .nav-menu a { display: block; padding: 16px 24px; font-size: 17px; }
    .nav-menu a::after { display: none; }
    .hamburger { display: flex; }
    .nav-logo-text { display: none; }

    .about-grid, .opening-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-visual { max-width: 420px; margin: 0 auto; }
    .about-stamp { left: 10px; }
    .opening-poster { max-width: 400px; margin: 0 auto; }
    .opening-poster img { transform: none; }
    .countdown { justify-content: center; }
    .footer-brand p { text-align: right; }
}

@media (max-width: 600px) {
    :root { --nav-h: 66px; }
    section { padding: 64px 0; }
    .section-container { padding: 0 16px; }
    .nav-logo img { width: 42px; height: 42px; }
    .hero-logo { width: 240px; }
    .hero-cta .btn { width: 100%; }
    .hero-tags { font-size: 14px; gap: 10px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-block { padding: 20px 14px; }
    .pricing-block-title { font-size: 20px; padding: 8px 20px; }
    .price-row { grid-template-columns: 38px 1fr auto; gap: 10px; padding: 10px 12px; }
    .price-icon { width: 38px; height: 38px; font-size: 17px; }
    .price-name { font-size: 17px; gap: 6px; }
    .old-price { font-size: 13px; }
    .price-value { font-size: 22px; min-width: 76px; padding: 3px 12px; }
    .pricing-slogan { font-size: 32px; }
    .opening-details { grid-template-columns: 1fr; }
    .count-item { min-width: 0; flex: 1; padding: 10px 4px; }
    .count-item span { font-size: 28px; }
    .opening-cta .btn { width: 100%; }
    .contact-form { padding: 26px 18px; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { justify-content: center; text-align: center; }
    .whatsapp-float { width: 52px; height: 52px; font-size: 26px; bottom: 18px; left: 18px; }
    .notification-toast { right: 12px; left: 12px; max-width: none; }
}
