:root {
    --green: #22c55e;
    --green-dark: #16a34a;
    --yellow: #eab308;
    --ink: #0f172a;
    --paper: #ffffff;
    --mist: #f8fafc;
    --muted: #64748b;
    --line: #e2e8f0;
    --shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    --shadow-hover: 0 30px 60px -15px rgba(0,0,0,0.15);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 30px 60px -15px rgba(15, 23, 42, 0.18);
    --shadow-glow: 0 12px 40px -10px rgba(34, 197, 94, 0.35);
    --shadow-glow-yellow: 0 12px 40px -10px rgba(234, 179, 8, 0.35);
    --shadow-glow-orange: 0 12px 40px -10px rgba(249, 115, 22, 0.35);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', system-ui, sans-serif; }
body { color: var(--ink); background: var(--mist); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', system-ui, sans-serif; }
a { text-decoration: none; color: inherit; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 15px 0; border-bottom: 1px solid var(--line); }
.nav-shell { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 40px; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { font-weight: 700; font-size: 14px; text-transform: uppercase; }
.menu-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--ink); transition: var(--transition-smooth); outline: none; padding: 5px; align-items: center; justify-content: center; }
.menu-toggle:hover { color: var(--green); transform: scale(1.08); }
.menu-toggle:active { transform: scale(0.95); }

/* Hero */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #000; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3)); }
.hero-grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr 400px; gap: 50px; align-items: center; color: white; animation: fadeInUp 1s ease-out; }
.hero-copy h1 { font-size: clamp(40px, 6vw, 75px); font-weight: 900; line-height: 1.05; margin: 15px 0; letter-spacing: -1px; }
.hero-copy p { font-size: 22px; margin-bottom: 35px; color: rgba(255,255,255,0.95); font-weight: 400; }
.eyebrow { font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; display: inline-block; padding: 6px 12px; background: rgba(255,255,255,0.1); border-radius: 20px; backdrop-filter: blur(5px); }
.hero-actions { display: flex; gap: 15px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 50px; font-weight: 800; cursor: pointer; transition: 0.3s; }
.btn-cta { background: var(--green); color: white; }
.btn-cta:hover { background: var(--green-dark); transform: translateY(-3px); }
.btn-light { background: white; color: var(--ink); }
.btn-primary { background: var(--ink); color: white; padding: 10px 20px; border-radius: 12px; }

/* Panel */
.glass-panel { background: rgba(255,255,255,0.1); backdrop-filter: blur(25px); padding: 30px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.25); box-shadow: 0 8px 32px 0 rgba(0,0,0,0.3); }
.panel-row { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.panel-row span { display: block; color: var(--yellow); font-size: 12px; text-transform: uppercase; font-weight: 800; margin-bottom: 5px; }
.panel-row strong { color: white !important; display: block; font-size: 24px; }
.hero-times { display: flex; gap: 10px; }
.hero-times span { flex: 1; padding: 15px; border-radius: 12px; font-weight: 800; text-align: center; }
.day-time { background: rgba(255,255,255,0.95); color: var(--ink); }
.night-time { background: rgba(0,0,0,0.6); color: white; border: 1px solid rgba(255,255,255,0.2); }

/* Scroll down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: white;
    font-size: 28px;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.75;
    transition: var(--transition-smooth);
}
.scroll-indicator:hover {
    opacity: 1;
    color: var(--green);
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Floating Stats Bar */
.stats-bar {
    margin-top: -50px;
    position: relative;
    z-index: 100;
    padding: 0 !important;
}
.stats-grid {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-smooth);
}
.stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    border-right: 1px solid var(--line);
    transition: var(--transition-smooth);
}
.stat-item:last-child {
    border-right: none;
}
.stat-item:hover {
    transform: translateY(-5px);
}
.stat-item h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.1;
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 12px;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Nosotros (Intro Section) */
.intro-section {
    padding: 100px 0 80px 0;
    background: var(--mist);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.intro-image-wrapper {
    position: relative;
    padding-bottom: 20px;
    padding-right: 20px;
}
.intro-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 20px 0 0 20px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: var(--radius-lg);
    z-index: 1;
    box-shadow: var(--shadow-glow);
}
.intro-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}
.intro-image-wrapper:hover img {
    transform: translate(-8px, -8px);
    box-shadow: var(--shadow-xl);
}
.img-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: var(--yellow);
    color: var(--ink);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-glow-yellow);
    z-index: 3;
    animation: pulseBadge 2.5s infinite;
    border: 2px solid white;
}
@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.intro-copy h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--ink);
    line-height: 1.15;
    margin: 15px 0 25px 0;
}
.intro-copy p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 30px;
    line-height: 1.8;
}
.reference-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--paper);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--green);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}
.reference-box i {
    font-size: 20px;
    color: var(--green);
}
.reference-box span {
    font-size: 14px;
    color: var(--muted);
}
.reference-box strong {
    color: var(--ink);
}
.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.feature-card {
    background: var(--paper);
    padding: 20px 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--green);
}
.feature-card i {
    font-size: 22px;
    color: var(--green);
    background: rgba(34, 197, 94, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.feature-card:hover i {
    background: var(--green);
    color: white;
    transform: rotate(360deg);
}
.feature-card span {
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Campaign/Promo Section */
.promo-section {
    padding: 60px 0;
    background: var(--mist);
}
.promo-card {
    position: relative;
    background: linear-gradient(135deg, #0f2d1e 0%, #064e3b 40%, #022c22 100%);
    padding: 60px 80px;
    border-radius: var(--radius-lg);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(22, 163, 74, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.promo-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.18) 0%, rgba(34, 197, 94, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}
.promo-card::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}
.promo-info {
    position: relative;
    z-index: 2;
    max-width: 65%;
}
.promo-info h2 {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.15;
    margin: 15px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.promo-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
}
.promo-icon {
    position: relative;
    z-index: 2;
    font-size: 110px;
    color: var(--yellow);
    opacity: 0.95;
    animation: floatMedal 4s ease-in-out infinite;
    text-shadow: 0 10px 30px rgba(234, 179, 8, 0.3);
}
@keyframes floatMedal {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
.btn-cta-glow {
    background: var(--green);
    color: white;
    box-shadow: var(--shadow-glow);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-cta-glow:hover {
    background: #15803d;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px -5px rgba(34, 197, 94, 0.5);
}

/* Canchas (Rooms) Section */
.rooms-section {
    padding: 100px 0;
    background: var(--paper);
}
.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.section-heading h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--ink);
    margin: 15px 0;
    line-height: 1.15;
}
.section-heading p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.room-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(34, 197, 94, 0.4);
}
.room-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.room-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.room-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}
.room-title h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--ink);
}
.room-price-tag {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green-dark);
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 14px;
    white-space: nowrap;
}
.room-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.room-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    margin-bottom: 20px;
    gap: 10px;
}
.room-meta span {
    font-size: 13px;
    color: var(--muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}
.room-meta span i {
    font-size: 15px;
}

/* Room Custom Features list */
.room-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}
.room-feature-pill {
    background: var(--mist);
    color: var(--ink);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 6px;
}
.room-feature-pill i {
    color: var(--green);
}

/* FAQ Accordion Styling */
.faq-section {
    padding: 100px 0;
    background: var(--mist);
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: var(--paper);
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-md) !important;
    border: 1px solid var(--line) !important;
    overflow: hidden !important;
    padding: 0 !important; /* Reset padding from traditional display */
    transition: var(--transition-smooth);
}
.faq-item:hover {
    border-color: rgba(34, 197, 94, 0.3) !important;
    box-shadow: var(--shadow-lg) !important;
}
.faq-item.active {
    border-color: var(--green) !important;
    box-shadow: var(--shadow-lg) !important;
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}
.faq-question {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
    margin: 0 !important;
}
.faq-item.active .faq-question {
    color: var(--green-dark);
}
.faq-question i {
    color: var(--green);
    font-size: 18px;
}
.faq-icon-wrapper {
    background: var(--mist);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}
.faq-item.active .faq-icon-wrapper {
    background: var(--green);
    color: white;
    transform: rotate(180deg);
}
.faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    padding: 0 28px;
}
.faq-item.active .faq-content {
    opacity: 1;
    padding-bottom: 22px;
}
.faq-answer {
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
    border-top: 1px solid var(--line);
    padding-top: 15px;
    margin: 0 !important;
    padding-left: 0 !important;
}

/* Contact & Maps curves */
.contact-section {
    padding: 100px 0;
    background: var(--paper);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.location-card {
    background: var(--paper);
    border-radius: var(--radius-lg) !important;
    padding: 40px !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.location-card h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--ink);
    margin: 15px 0;
}
.location-card p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 25px;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.contact-list p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 !important;
    font-size: 16px !important;
    color: var(--ink) !important;
}
.contact-list p i {
    color: var(--green);
    font-size: 20px;
    width: 24px;
    text-align: center;
}
.contact-list .reference-box {
    margin-top: 5px;
    margin-bottom: 0;
    padding: 12px 18px;
    background: var(--mist);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--yellow);
    font-size: 13px;
    box-shadow: none;
}
.btn-maps {
    align-self: flex-start;
    background: var(--green) !important;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    font-weight: 800;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-smooth);
    border: none;
}
.btn-maps:hover {
    background: var(--green-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(34, 197, 94, 0.4);
}
.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    transition: var(--transition-smooth);
    height: 400px;
}
.map-card:hover {
    box-shadow: var(--shadow-xl);
}
.map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseWsp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* WhatsApp Widget */
.wa-widget { position: fixed; bottom: 30px; right: 30px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 15px; }
.whatsapp-float-enhanced { background: #25D366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 38px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); text-decoration: none; transition: transform 0.3s; position: relative; animation: pulseWsp 2s infinite; }
.whatsapp-float-enhanced:hover { transform: scale(1.1); animation: none; }
.wa-badge { position: absolute; top: -2px; right: -2px; background: #ef4444; color: white; border-radius: 50%; width: 22px; height: 22px; font-size: 12px; display: flex; align-items: center; justify-content: center; font-weight: bold; border: 2px solid white; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.wa-bubble { display: none; }

/* Responsive */
@media (max-width: 900px) {
    .hero {
        height: auto !important;
        min-height: 100vh;
        padding: 120px 0 60px 0 !important;
    }
    .hero-grid, .intro-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 40px; }
    .hero-panel { max-width: 500px; margin: 0 auto; width: 100%; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .menu-toggle { display: flex !important; }
    
    /* Mobile Navigation Dropdown */
    .nav-links {
        display: none;
    }
    
    .nav-links.open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        padding: 25px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 2px solid var(--green);
        gap: 20px;
        align-items: center;
        z-index: 999;
        animation: slideDownMenu 0.3s ease-out;
    }
}

@keyframes slideDownMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Horizontal Room Card for Single Court */
.room-card-horizontal {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
    max-width: 900px;
    width: 100%;
    border: 1px solid var(--line);
}
.room-card-horizontal:hover {
    transform: translateY(-5px);
}
.room-card-horizontal .room-img-wrap {
    flex: 1.2;
    position: relative;
    min-height: 350px;
}
.room-card-horizontal .room-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.room-card-horizontal .room-body {
    flex: 1.5;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    /* Spacing between sections */
    .intro-section, .rooms-section, .faq-section, .contact-section {
        padding: 50px 0 !important;
    }
    .promo-section {
        padding: 35px 0 !important;
    }
    
    /* Stats Bar Mobile adjustments */
    .stats-bar {
        margin-top: 0;
        padding: 30px 0 !important;
        background: var(--paper);
    }
    .stats-grid {
        box-shadow: none;
        border: none;
        padding: 0;
        gap: 20px;
        grid-template-columns: 1fr 1fr;
    }
    .stat-item {
        border-right: none;
        padding: 5px;
    }
    .stat-item h3 {
        font-size: 24px;
    }
    
    /* Loyalty Campaign Section Mobile */
    .promo-card {
        flex-direction: column-reverse;
        padding: 40px 25px !important;
        text-align: center;
        gap: 30px;
    }
    .promo-info {
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .promo-icon {
        font-size: 80px;
        margin-bottom: 0;
        line-height: 1;
    }
    .promo-info h2 {
        font-size: 26px;
        margin: 10px 0 15px;
    }
    .promo-info p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    /* Courts stacking */
    .rooms-grid, .courts-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .room-card-horizontal {
        flex-direction: column;
    }
    .room-card-horizontal .room-img-wrap {
        min-height: 250px;
    }
    .room-card-horizontal .room-img-wrap img {
        position: relative;
        height: 250px;
    }
    .room-card-horizontal .room-body {
        padding: 25px;
    }
}
