/* /assets/css/style.css */
/* GYMBEEM V3 - Mobile First */

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
:root {
    --bg: #090909;
    --bg-card: #171717;
    --bg-surface: #1A1A1A;
    --primary: #E53935;
    --primary-dark: #C62828;
    --primary-light: #FF6B6B;
    --text: #FFFFFF;
    --text-secondary: #AAAAAA;
    --text-muted: #666666;
    --border: #2A2A2A;
    --radius: 24px;
    --radius-sm: 12px;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px;
    -webkit-font-smoothing: antialiased;
}
::selection { background: var(--primary); color: white; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

.container { max-width: 100%; padding: 0 20px; margin: 0 auto; }
.section { padding: 60px 0; }

.section-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 400px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--text);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary:hover { background: var(--primary-dark); transform: scale(1.02); }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-small { padding: 12px 24px; font-size: 14px; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}
#preloader.hidden { opacity: 0; pointer-events: none; }
.loader {
    width: 48px; height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-surface) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ===== HEADER ===== */
header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 12px 20px;
    background: rgba(9,9,9,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 2px;
}
.logo span { color: var(--primary); }
.header-btn {
    background: none; border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}
.header-btn:hover { color: var(--text); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0 40px;
}
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(9,9,9,0.2) 0%, rgba(9,9,9,0.7) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 500px;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(229,57,53,0.2);
    border: 1px solid rgba(229,57,53,0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 0.95;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title .highlight { color: var(--primary); }
.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
}

/* ===== LIVE STATUS ===== */
.live-status {
    background: var(--bg-surface);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.status-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.status-left { display: flex; align-items: center; gap: 14px; }
.status-indicator {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.status-indicator.open {
    background: #4CAF50;
    box-shadow: 0 0 20px rgba(76,175,80,0.3);
    animation: pulse-green 2s infinite;
}
.status-indicator.closed { background: #EF5350; }
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 20px rgba(76,175,80,0.3); }
    50% { box-shadow: 0 0 40px rgba(76,175,80,0.6); }
}
.status-text { font-weight: 600; font-size: 15px; }
.status-text .open { color: #4CAF50; }
.status-text .closed { color: #EF5350; }
.status-time { font-size: 12px; color: var(--text-muted); }
.status-crowd { text-align: right; }
.status-crowd-label { font-size: 11px; color: var(--text-muted); }
.status-crowd-value { font-weight: 600; font-size: 14px; }
.status-best-time { font-size: 11px; color: var(--text-secondary); }
.status-best-time .highlight { color: #FFD166; }

/* ===== WHY GYMBEEM ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}
.why-item {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.why-item:active { transform: scale(0.97); }
.why-item .icon { font-size: 32px; margin-bottom: 8px; }
.why-item h3 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.why-item p { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ===== MEMBERSHIP ===== */
.membership-section { background: var(--bg-surface); }
.price-toggle {
    display: flex;
    gap: 10px;
    margin: 16px 0 20px;
    justify-content: center;
}
.price-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 40px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.price-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text);
}
.price-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--text);
}
.membership-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.membership-scroll::-webkit-scrollbar { display: none; }
.membership-card {
    min-width: 260px;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    scroll-snap-align: start;
    flex-shrink: 0;
}
.membership-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-card), rgba(229,57,53,0.08));
}
.membership-card .badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--text);
    font-size: 10px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.membership-card .name {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text);
}
.membership-card .price {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--text);
    margin: 8px 0 4px;
}
.membership-card .price small {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}
.membership-card .duration {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.membership-card .features { list-style: none; margin-bottom: 20px; }
.membership-card .features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.membership-card .features li i { color: var(--primary); font-size: 12px; }
.membership-card .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 14px;
}

/* ===== TRAINERS ===== */
.trainers-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.trainers-scroll::-webkit-scrollbar { display: none; }
.trainer-card {
    min-width: 200px;
    max-width: 240px;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    scroll-snap-align: start;
    flex-shrink: 0;
}
.trainer-card .image {
    width: 100%; height: 180px;
    object-fit: cover;
    background: var(--bg-surface);
}
.trainer-card .info { padding: 16px; }
.trainer-card .name {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text);
}
.trainer-card .cert {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
}
.trainer-card .rating {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 4px 0 8px;
}
.trainer-card .rating .stars { color: #FFD166; }
.trainer-card .btn-small {
    width: 100%;
    justify-content: center;
    padding: 10px;
    font-size: 13px;
}

/* ===== PARTNER ===== */
.partner-section { background: var(--bg-surface); }
.partner-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(229,57,53,0.05));
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid rgba(229,57,53,0.15);
    text-align: center;
}
.partner-card .icon { font-size: 48px; margin-bottom: 16px; }
.partner-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 8px;
}
.partner-card h3 span { color: var(--primary); }
.partner-card p { color: var(--text-secondary); font-size: 15px; margin-bottom: 20px; }
.partner-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.partner-features span {
    font-size: 13px;
    color: var(--text-secondary);
    background: var(--bg-card);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

/* ===== SHOP ===== */
.shop-teaser {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
}
.shop-teaser .header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.shop-teaser .header .icon {
    font-size: 32px;
    color: var(--primary);
}
.shop-teaser .header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
}
.shop-teaser .items {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.shop-teaser .items span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    background: var(--bg-surface);
    padding: 6px 14px;
    border-radius: 20px;
}
.shop-teaser .items span i { color: var(--primary); font-size: 14px; }
.shop-teaser .btn-small { display: inline-flex; }

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 24px;
}
.gallery-grid .item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-card);
}
.gallery-grid .item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-grid .item:active img { transform: scale(1.05); }
.gallery-grid .item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
}

/* ===== FACILITIES ===== */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 24px;
}
.facility-item {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    text-align: center;
    border: 1px solid var(--border);
}
.facility-item img {
    width: 32px; height: 32px;
    margin-bottom: 8px;
    filter: brightness(0) invert(1);
}
.facility-item .label { font-size: 12px; color: var(--text-secondary); }

/* ===== OPENING HOURS ===== */
.hours-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
}
.hours-card .status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.hours-card .status .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.hours-card .status .dot.open { background: #4CAF50; }
.hours-card .status .dot.closed { background: #EF5350; }
.hours-card .status .label {
    font-weight: 600;
    font-size: 16px;
}
.hours-card .status .label.open { color: #4CAF50; }
.hours-card .status .label.closed { color: #EF5350; }
.hours-card .time-range {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--text);
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.hours-card .time-range small {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
}
.hours-list { margin-top: 16px; }
.hours-list .item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.hours-list .item:last-child { border-bottom: none; }
.hours-list .item .day { color: var(--text-secondary); }
.hours-list .item .time { color: var(--text); font-weight: 500; }

/* ===== RULES ===== */
.rules-preview {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
}
.rules-preview .rule-section { margin-bottom: 16px; }
.rules-preview .rule-section:last-child { margin-bottom: 0; }
.rules-preview .section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.rules-preview .section-header i {
    color: var(--primary);
    font-size: 16px;
    width: 28px;
}
.rules-preview .section-header h4 {
    font-family: var(--font-heading);
    font-size: 18px;
}
.rules-preview .rule-item {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0 4px 36px;
    position: relative;
}
.rules-preview .rule-item::before {
    content: '•';
    position: absolute;
    left: 16px;
    color: var(--primary);
}
.view-all-link { text-align: center; margin-top: 16px; }

/* ===== FAQ ===== */
.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    margin-bottom: 8px;
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    gap: 16px;
}
.faq-question i {
    font-size: 16px;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-question.active i { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
    background: var(--bg-surface);
    text-align: center;
    padding: 60px 0;
}
.cta-section .section-title { font-size: 44px; }

/* ===== FOOTER ===== */
.hub {
    background: var(--bg);
    padding: 40px 0 20px;
    border-top: 1px solid var(--border);
}
.hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.hub-column h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.hub-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: var(--transition);
}
.hub-column a:hover { color: var(--text); }
.hub-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}
.hub-bottom .social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}
.hub-bottom .social a {
    color: var(--text-muted);
    font-size: 20px;
    transition: var(--transition);
}
.hub-bottom .social a:hover { color: var(--text); }

/* ===== BOTTOM NAV ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20,20,20,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    z-index: 999;
    padding: 6px 0 env(safe-area-inset-bottom, 6px);
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    position: relative;
    min-width: 48px;
}
.bottom-nav-item i { font-size: 22px; transition: var(--transition); }
.bottom-nav-item span { font-size: 9px; letter-spacing: 0.3px; }
.bottom-nav-item:hover,
.bottom-nav-item.active { color: var(--text); }
.bottom-nav-item.active i { color: var(--primary); }
.bottom-nav-item .badge {
    position: absolute;
    top: 2px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid var(--bg-surface);
}

/* ===== BOTTOM SHEET ===== */
.bottom-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.bottom-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}
.bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    max-height: 80vh;
    background: var(--bg-card);
    border-radius: var(--radius) var(--radius) 0 0;
    z-index: 2001;
    padding: 24px 20px 40px;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.bottom-sheet.active { bottom: 0; }
.bottom-sheet .handle {
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin: 0 auto 20px;
}
.bottom-sheet .title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
}
.bottom-sheet .items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.bottom-sheet .items a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}
.bottom-sheet .items a i {
    font-size: 18px;
    color: var(--primary);
    width: 24px;
}
.bottom-sheet .items a:active { transform: scale(0.97); }

/* ===== RESPONSIVE ===== */
@media (min-width: 430px) {
    .container { padding: 0 24px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid .item:first-child { grid-column: 1 / -1; }
}

@media (min-width: 768px) {
    body { padding-bottom: 0; }
    .bottom-nav { display: none; }
    .container { padding: 0 40px; }
    .section { padding: 80px 0; }
    .section-title { font-size: 48px; }
    .hero-title { font-size: 80px; }
    .hero-buttons { flex-direction: row; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline { width: auto; }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .membership-scroll { justify-content: center; }
    .membership-card { min-width: 280px; }
    .trainers-scroll { justify-content: center; }
    .trainer-card { min-width: 220px; }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .gallery-grid .item:first-child { grid-column: 1 / 3; aspect-ratio: 16/9; }
    .hub-grid { grid-template-columns: repeat(4, 1fr); }
    .bottom-sheet .items { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .container { padding: 0 60px; }
    .hero-title { font-size: 96px; }
    .section-title { font-size: 56px; }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1440px) {
    .container { padding: 0 80px; max-width: 1400px; }
    .hero-title { font-size: 112px; }
}

@media (max-width: 380px) {
    .hero-title { font-size: 40px; }
    .section-title { font-size: 28px; }
    .membership-card { min-width: 220px; }
    .bottom-sheet .items { grid-template-columns: 1fr 1fr; }
}

@supports (padding: max(0px)) {
    .bottom-nav { padding-bottom: max(6px, env(safe-area-inset-bottom)); }
}


/* ===== FACILITIES - FIX ICON COLOR ===== */
.facility-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    /* Ubah warna gambar menjadi putih menggunakan filter */
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}
.facility-item:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(229, 57, 53, 0.3));
}

/* Alternatif jika gambar memiliki background biru */
.facility-item img[src*="towel"],
.facility-item img[src*="wifi"],
.facility-item img[src*="locker"],
.facility-item img[src*="ac"],
.facility-item img[src*="shower"] {
    filter: brightness(0) invert(1);
    background: transparent;
}

/* ===== RULES LANGUAGE SWITCH ===== */
.lang-btn {
    padding: 8px 20px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    font-family: var(--font-body);
}
.lang-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.lang-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--text);
}


/* ===== PARTNER SECTION ===== */
.partner-section {
    background: var(--bg-surface);
}
.partner-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(229, 57, 53, 0.03));
    border-radius: var(--radius);
    padding: 40px 28px;
    border: 1px solid rgba(229, 57, 53, 0.12);
    text-align: center;
}
.partner-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(229, 57, 53, 0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.partner-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.partner-heading span { color: var(--primary); }
.partner-subheading {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
}
.partner-description {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Dua Kolom */
.partner-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
    text-align: left;
}
.partner-col {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.partner-col:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}
.partner-col-icon {
    font-size: 32px;
    margin-bottom: 8px;
}
.partner-col h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.partner-benefits {
    list-style: none;
    margin-bottom: 16px;
}
.partner-benefits li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.partner-benefits li i {
    color: var(--primary);
    font-size: 14px;
    width: 18px;
}
.partner-message {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 16px;
    line-height: 1.5;
}
.partner-col .btn-small {
    width: 100%;
    justify-content: center;
}

/* CTA Utama */
.partner-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.partner-cta .btn-primary,
.partner-cta .btn-outline {
    min-width: 200px;
    justify-content: center;
}

/* Responsive Partner */
@media (max-width: 768px) {
    .partner-columns {
        grid-template-columns: 1fr;
    }
    .partner-heading {
        font-size: 28px;
    }
    .partner-card {
        padding: 30px 20px;
    }
    .partner-cta {
        flex-direction: column;
        align-items: center;
    }
    .partner-cta .btn-primary,
    .partner-cta .btn-outline {
        width: 100%;
    }
}



/* ===== PARTNER SECTION ===== */
.partner-section {
    background: var(--bg-surface);
    padding: 60px 0;
}
.partner-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(229, 57, 53, 0.03));
    border-radius: var(--radius);
    padding: 32px 20px;
    border: 1px solid rgba(229, 57, 53, 0.12);
    text-align: center;
}
.partner-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(229, 57, 53, 0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.partner-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.partner-subheading {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
}
.partner-description {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Dua Kolom - FIX MOBILE */
.partner-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
    text-align: left;
}
.partner-col {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 24px 18px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.partner-col:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}
.partner-col-icon {
    font-size: 32px;
    margin-bottom: 8px;
}
.partner-col h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.partner-benefits {
    list-style: none;
    margin-bottom: 16px;
    flex: 1;
}
.partner-benefits li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.partner-benefits li i {
    color: var(--primary);
    font-size: 14px;
    width: 18px;
    flex-shrink: 0;
}
.partner-message {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 16px;
    line-height: 1.5;
}
.partner-col-btn {
    width: 100%;
    justify-content: center;
    padding: 12px !important;
    font-size: 14px !important;
    margin-top: auto;
}

/* SATU CTA UTAMA */
.partner-cta {
    display: flex;
    justify-content: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.partner-cta .btn-primary {
    min-width: 250px;
    justify-content: center;
    font-size: 18px;
    padding: 16px 48px;
}
.partner-cta .btn-primary i {
    margin-right: 10px;
}

/* ===== RESPONSIVE PARTNER ===== */
@media (max-width: 768px) {
    .partner-columns {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .partner-col {
        padding: 20px 16px;
    }
    .partner-heading {
        font-size: 28px;
    }
    .partner-card {
        padding: 24px 16px;
    }
    .partner-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .partner-cta .btn-primary {
        width: 100%;
        min-width: unset;
        font-size: 16px;
        padding: 14px 24px;
    }
    .partner-col-btn {
        font-size: 13px !important;
        padding: 10px !important;
    }
    .partner-subheading {
        font-size: 15px;
    }
    .partner-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .partner-card {
        padding: 20px 14px;
    }
    .partner-heading {
        font-size: 24px;
    }
    .partner-col h4 {
        font-size: 18px;
    }
    .partner-benefits li {
        font-size: 13px;
        padding: 4px 0;
    }
    .partner-message {
        font-size: 12px;
    }
}


/* ===== SHOP TEASER ===== */
.shop-teaser {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1px solid var(--border);
}
.shop-teaser .header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.shop-teaser .header .icon {
    font-size: 32px;
    color: var(--primary);
    flex-shrink: 0;
}
.shop-teaser .header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text);
    margin: 0;
}
.shop-teaser .subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 14px;
}
.shop-teaser .items {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.shop-teaser .items span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    background: var(--bg-surface);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border);
}
.shop-teaser .items span i {
    color: var(--primary);
    font-size: 14px;
}
.shop-teaser .btn-small {
    display: inline-flex;
}

/* ===== RESPONSIVE SHOP ===== */
@media (max-width: 768px) {
    .shop-teaser {
        padding: 20px 16px;
    }
    .shop-teaser .header h3 {
        font-size: 20px;
    }
    .shop-teaser .items {
        gap: 8px;
    }
    .shop-teaser .items span {
        font-size: 12px;
        padding: 4px 12px;
    }
    .shop-teaser .btn-small {
        width: 100%;
        justify-content: center;
        padding: 12px !important;
    }
}

@media (max-width: 480px) {
    .shop-teaser {
        padding: 16px 14px;
    }
    .shop-teaser .header {
        gap: 10px;
    }
    .shop-teaser .header .icon {
        font-size: 28px;
    }
    .shop-teaser .header h3 {
        font-size: 18px;
    }
    .shop-teaser .items span {
        font-size: 11px;
        padding: 4px 10px;
    }
    .shop-teaser .subtitle {
        font-size: 13px;
    }
}