@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&family=Oswald:wght@400;500;600;700&family=Fredoka+One:wght@400&family=Kalam:wght@400;700&display=swap');

/* Updated: January 8, 2026 - Force redeploy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0a0a;
    --secondary-color: #151515;
    --accent-color: #e63946;
    --accent-glow: rgba(230, 57, 70, 0.6);
    --gold-color: #ffd700;
    --light-text: #ffffff;
    --dark-text: #333;
    --gray-bg: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Oswald', 'Arial', sans-serif;
    background-color: var(--primary-color);
    color: var(--light-text);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

/* Premium Global Animations */
@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes premiumGlow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(230, 57, 70, 0.3); }
    50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(230, 57, 70, 0.5); }
}

@keyframes textReveal {
    from { opacity: 0; transform: translateY(50px) rotateX(-20deg); }
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

@keyframes borderGlow {
    0%, 100% { border-color: var(--accent-color); }
    50% { border-color: #ff6b6b; }
}

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

/* ===== MEGA PROMOTIONAL BANNER ===== */
.mega-promo {
    position: relative;
    width: 100%;
    min-height: 140px;
    background: linear-gradient(135deg, 
        #0d0d0d 0%, 
        #1a0a0a 20%,
        #2d0f0f 40%,
        #3d1515 50%,
        #2d0f0f 60%,
        #1a0a0a 80%,
        #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 4px solid #e63946;
    box-shadow: 0 10px 60px rgba(230, 57, 70, 0.5),
                0 0 100px rgba(230, 57, 70, 0.2),
                inset 0 0 150px rgba(230, 57, 70, 0.1);
}

.mega-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(230, 57, 70, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 107, 107, 0.15) 0%, transparent 50%);
    animation: bgPulse 4s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.mega-promo-lightning {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 100%);
    animation: lightningMove 3s ease-in-out infinite;
}

@keyframes lightningMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.mega-promo-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.03), transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: shineRotate 10s linear infinite;
    pointer-events: none;
}

@keyframes shineRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mega-promo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mega-promo-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff6b6b;
    border-radius: 50%;
    box-shadow: 0 0 10px #e63946, 0 0 20px #e63946, 0 0 40px #e63946;
    animation: sparkle 3s ease-in-out infinite;
}

.mega-promo-particles span:nth-child(1) { left: 5%; top: 20%; animation-delay: 0s; }
.mega-promo-particles span:nth-child(2) { left: 15%; top: 70%; animation-delay: 0.3s; }
.mega-promo-particles span:nth-child(3) { left: 25%; top: 30%; animation-delay: 0.6s; }
.mega-promo-particles span:nth-child(4) { left: 35%; top: 80%; animation-delay: 0.9s; }
.mega-promo-particles span:nth-child(5) { left: 45%; top: 25%; animation-delay: 1.2s; }
.mega-promo-particles span:nth-child(6) { left: 55%; top: 75%; animation-delay: 1.5s; }
.mega-promo-particles span:nth-child(7) { left: 65%; top: 20%; animation-delay: 1.8s; }
.mega-promo-particles span:nth-child(8) { left: 75%; top: 65%; animation-delay: 2.1s; }
.mega-promo-particles span:nth-child(9) { left: 85%; top: 35%; animation-delay: 2.4s; }
.mega-promo-particles span:nth-child(10) { left: 95%; top: 55%; animation-delay: 2.7s; }

@keyframes sparkle {
    0%, 100% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.5); opacity: 1; }
}

.mega-promo-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
}

.mega-promo-badge {
    background: linear-gradient(135deg, #ff6b6b, #e63946);
    padding: 6px 25px;
    border-radius: 30px;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.6);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(230, 57, 70, 0.6); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(230, 57, 70, 0.8); }
}

.badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mega-promo-main {
    display: flex;
    align-items: baseline;
    gap: 5px;
    line-height: 1;
}

.mega-percent {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 900;
    background: linear-gradient(180deg, #ffffff 0%, #ff6b6b 50%, #e63946 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(230, 57, 70, 0.8))
            drop-shadow(0 0 60px rgba(230, 57, 70, 0.5))
            drop-shadow(0 0 100px rgba(230, 57, 70, 0.3));
    animation: percentPulse 2s ease-in-out infinite;
    letter-spacing: -5px;
}

.mega-text-large {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(180deg, #ffffff 0%, #ffd700 50%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
            drop-shadow(0 0 60px rgba(255, 215, 0, 0.5));
    animation: exclusivePulse 2s ease-in-out infinite;
    letter-spacing: 8px;
    text-transform: uppercase;
}

@keyframes exclusivePulse {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 215, 0, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 50px rgba(255, 237, 78, 1))
                drop-shadow(0 0 80px rgba(255, 215, 0, 0.7));
    }
}

@keyframes percentPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(230, 57, 70, 0.8))
                drop-shadow(0 0 60px rgba(230, 57, 70, 0.5))
                drop-shadow(0 0 100px rgba(230, 57, 70, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 50px rgba(255, 107, 107, 1))
                drop-shadow(0 0 80px rgba(230, 57, 70, 0.7))
                drop-shadow(0 0 120px rgba(230, 57, 70, 0.5));
    }
}

.mega-percent-sign {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 900;
    background: linear-gradient(180deg, #ffffff 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.6));
}

.mega-off {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
                 0 0 60px rgba(230, 57, 70, 0.5);
    letter-spacing: 8px;
    margin-left: 15px;
    animation: offFlash 1.5s ease-in-out infinite;
}

@keyframes offFlash {
    0%, 100% { opacity: 1; text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(230, 57, 70, 0.5); }
    50% { opacity: 0.9; text-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 0 0 100px rgba(230, 57, 70, 0.8); }
}

.mega-promo-sub {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: -5px;
}

.mega-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e63946, transparent);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.5; width: 80px; }
    50% { opacity: 1; width: 100px; }
}

.mega-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 6px;
    text-transform: uppercase;
}

.mega-promo-cta {
    margin-top: 5px;
}

.mega-urgency {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffc107;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: urgencyBlink 0.8s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

@keyframes urgencyBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Mobile responsiveness for mega promo */
@media (max-width: 768px) {
    .mega-promo {
        min-height: 110px;
    }
    
    .mega-promo-content {
        padding: 12px 15px;
        gap: 6px;
    }
    
    .mega-promo-main {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .mega-text-large {
        font-size: 28px;
        letter-spacing: 4px;
    }
    
    .mega-percent {
        font-size: 65px;
        letter-spacing: -3px;
    }
    
    .mega-percent-sign {
        font-size: 35px;
    }
    
    .mega-off {
        font-size: 28px;
        letter-spacing: 4px;
        margin-left: 8px;
    }
    
    .mega-promo-sub {
        gap: 10px;
    }
    
    .mega-text {
        font-size: 11px;
        letter-spacing: 2px;
        text-align: center;
    }
    
    .mega-line {
        width: 30px;
    }
    
    .mega-promo-badge {
        padding: 5px 15px;
    }
    
    .badge-text {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .mega-urgency {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .mega-promo {
        min-height: 100px;
    }
    
    .mega-promo-content {
        gap: 4px;
        padding: 10px 10px;
    }
    
    .mega-promo-main {
        gap: 5px;
    }
    
    .mega-text-large {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .mega-percent {
        font-size: 45px;
    }
    
    .mega-percent-sign {
        font-size: 24px;
    }
    
    .mega-off {
        font-size: 22px;
        letter-spacing: 2px;
        margin-left: 5px;
    }
    
    .mega-promo-sub {
        gap: 8px;
    }
    
    .mega-text {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .mega-line {
        display: none;
    }
    
    .mega-promo-badge {
        padding: 4px 12px;
    }
    
    .badge-text {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .mega-urgency {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(34, 34, 34, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3),
                0 0 40px rgba(230, 57, 70, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

.logo-text {
    color: var(--light-text);
    font-family: 'Playfair Display', serif;
    position: relative;
    font-weight: 800;
    line-height: 1;
    font-size: 32px;
    letter-spacing: 1px;
}

.logo-capital {
    color: var(--accent-color);
    font-size: 36px;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(230, 57, 70, 0.6);
}



.logo i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(20, 20, 20, 0.85) 100%),
                url('WhatsApp Image 2025-11-20 at 5.29.37 PM.jpeg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(230, 57, 70, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 40%),
        radial-gradient(circle at center, rgba(230, 57, 70, 0.05) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(230, 57, 70, 0.08) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(230, 57, 70, 0.08) 50%, transparent 70%);
    animation: shimmer 6s infinite;
    z-index: 1;
}

/* Animated particles for hero */
.hero .hero-content::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -150px;
    animation: floatUp 6s ease-in-out infinite;
    z-index: -1;
}

.hero .hero-content::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -100px;
    animation: floatUp 8s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

.hero-title {
    font-size: 90px;
    font-weight: 800;
    color: var(--light-text);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9),
                 0 0 30px rgba(230, 57, 70, 0.4);
    margin-bottom: 20px;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.hero-capital {
    color: var(--accent-color);
    font-size: 110px;
    font-weight: 900;
    text-shadow: 
        0 0 20px rgba(230, 57, 70, 0.8),
        0 0 40px rgba(230, 57, 70, 0.5),
        3px 3px 10px rgba(0, 0, 0, 1);
    display: inline-block;
}



@keyframes title-glow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(230, 57, 70, 1),
            0 0 20px rgba(230, 57, 70, 0.8),
            0 0 30px rgba(230, 57, 70, 0.6),
            0 0 40px rgba(230, 57, 70, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.9);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(230, 57, 70, 1),
            0 0 30px rgba(230, 57, 70, 1),
            0 0 40px rgba(230, 57, 70, 0.8),
            0 0 60px rgba(230, 57, 70, 0.6),
            2px 2px 4px rgba(0, 0, 0, 0.9);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(230, 57, 70, 0.8),
            0 0 20px rgba(230, 57, 70, 0.6),
            0 0 30px rgba(230, 57, 70, 0.4);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(230, 57, 70, 1),
            0 0 30px rgba(230, 57, 70, 0.8),
            0 0 45px rgba(230, 57, 70, 0.6);
    }
}

@keyframes stroke-glow {
    0%, 100% {
        opacity: 0.5;
        filter: blur(4px);
    }
    50% {
        opacity: 0.8;
        filter: blur(8px);
    }
}

@keyframes stroke-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),
                     0 0 20px rgba(230, 57, 70, 0.5),
                     0 0 40px rgba(230, 57, 70, 0.3);
    }
    50% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),
                     0 0 30px rgba(230, 57, 70, 0.8),
                     0 0 60px rgba(230, 57, 70, 0.6);
    }
}

.hero-subtitle {
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7),
                 0 0 10px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1.2s ease-out, subtitleGlow 3s ease-in-out infinite;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

@keyframes subtitleGlow {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.5); }
}

.cta-btn {
    background: linear-gradient(135deg, #e63946, #ff6b6b, #e63946);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 18px 60px;
    font-size: 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    letter-spacing: 3px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5),
                0 0 50px rgba(230, 57, 70, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: slideUp 1.4s ease-out, ctaGradient 3s ease-in-out infinite, ctaPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes ctaGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes ctaPulse {
    0%, 100% { 
        box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5), 0 0 50px rgba(230, 57, 70, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 10px 40px rgba(230, 57, 70, 0.7), 0 0 80px rgba(230, 57, 70, 0.5), inset 0 0 25px rgba(255, 255, 255, 0.3);
        transform: scale(1.02);
    }
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4),
                    inset 0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(230, 57, 70, 0.6),
                    inset 0 0 15px rgba(255, 255, 255, 0.4);
    }
}

.cta-btn:hover {
    background-color: #d62e37;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.6);
}

.cta-btn:active {
    transform: translateY(-1px);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 100px 0;
    border-top: 5px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.about h2 {
    font-size: 64px;
    color: var(--light-text);
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(230, 57, 70, 0.4);
    font-family: 'Playfair Display', serif;
    position: relative;
    animation: textReveal 1s ease-out;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: borderGlow 2s ease-in-out infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #ccc;
    line-height: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(20, 20, 20, 0.9) 100%);
    padding: 35px;
    border-left: 5px solid var(--accent-color);
    text-align: center;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(230, 57, 70, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat:hover::before {
    opacity: 1;
}

.stat:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.3),
                0 0 30px rgba(230, 57, 70, 0.2);
    border-left-color: #ff6b6b;
}

.stat h3 {
    font-size: 56px;
    background: linear-gradient(180deg, #ff6b6b, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    font-weight: 900;
    filter: drop-shadow(0 0 10px rgba(230, 57, 70, 0.5));
}

.stat p {
    color: #aaa;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* ===== FACILITIES SECTION ===== */
.facilities {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.facilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 100% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.facilities h2 {
    font-size: 64px;
    color: var(--light-text);
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(230, 57, 70, 0.4);
    font-family: 'Playfair Display', serif;
    position: relative;
}

.facilities h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.facility-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-top: 5px solid var(--accent-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.1), transparent);
    transition: left 0.5s ease;
}

.facility-card:hover::before {
    left: 100%;
}

.facility-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(230, 57, 70, 0.5),
                0 0 50px rgba(230, 57, 70, 0.3),
                inset 0 0 30px rgba(230, 57, 70, 0.05);
    border-color: rgba(255, 107, 107, 0.5);
    border-top-color: #ff6b6b;
}

.facility-icon {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 15px rgba(230, 57, 70, 0.4));
}

.facility-card:hover .facility-icon {
    transform: scale(1.2) rotateY(360deg);
    text-shadow: 0 0 40px rgba(230, 57, 70, 1);
    filter: drop-shadow(0 0 25px rgba(230, 57, 70, 0.8));
}

.facility-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--light-text);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.facility-card p {
    color: #999;
    font-size: 15px;
    line-height: 1.8;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: linear-gradient(180deg, var(--primary-color) 0%, #0d0d0d 100%);
    padding: 100px 0;
    border-top: 5px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(230, 57, 70, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gallery h2 {
    font-size: 64px;
    color: var(--light-text);
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(230, 57, 70, 0.4);
    font-family: 'Playfair Display', serif;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(230, 57, 70, 0.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(230, 57, 70, 0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 40px;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(230, 57, 70, 0.5),
                0 0 40px rgba(230, 57, 70, 0.3);
    border-color: rgba(230, 57, 70, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(0.8);
}

/* ===== LOCATIONS SECTION ===== */
.locations {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 100px 0;
    border-top: 5px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.locations h2 {
    font-size: 64px;
    color: var(--light-text);
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(230, 57, 70, 0.4);
    font-family: 'Playfair Display', serif;
    position: relative;
}

.locations h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.location-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
    padding: 45px;
    border-radius: 25px;
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-left: 6px solid var(--accent-color);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.location-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 60px rgba(230, 57, 70, 0.4),
                0 0 40px rgba(230, 57, 70, 0.2);
    border-color: rgba(255, 107, 107, 0.4);
    border-left-color: #ff6b6b;
}

.location-card h3 {
    font-size: 28px;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.location-card p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.location-card i {
    color: var(--accent-color);
    width: 20px;
}

.view-btn {
    display: block;
    width: 100%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-align: center;
    text-decoration: none;
}

.view-btn:hover {
    background-color: #d62e37;
    transform: translateY(-2px);
}

.map-container {
    margin-top: 25px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(230, 57, 70, 0.3);
    transition: all 0.4s ease;
}

.map-container:hover {
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.4);
    border-color: rgba(230, 57, 70, 0.5);
}

.map-container iframe {
    display: block;
    border-radius: 18px;
}

/* ===== MEMBERSHIP SECTION ===== */
.membership {
    background: linear-gradient(180deg, var(--primary-color) 0%, #0d0d0d 50%, var(--primary-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.membership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.membership h2 {
    font-size: 64px;
    background: linear-gradient(135deg, #ff6b6b, var(--accent-color), #ff6b6b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 4s ease-in-out infinite;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.5));
}

.membership-subtitle {
    text-align: center;
    color: #999;
    font-size: 20px;
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.plan-selector {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.plan-type-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    color: var(--light-text);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.plan-type-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.plan-type-btn.active {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
    box-shadow: 0 10px 35px rgba(230, 57, 70, 0.5),
                0 0 30px rgba(230, 57, 70, 0.3);
    transform: scale(1.02);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    position: relative;
    z-index: 1;
    gap: 35px;
}

.membership-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.98) 0%, rgba(12, 12, 12, 0.98) 100%);
    padding: 50px 35px;
    border-radius: 25px;
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-top: 5px solid var(--accent-color);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.1), transparent);
    transition: left 0.6s ease;
}

.membership-card:hover::before {
    left: 100%;
}

.membership-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(230, 57, 70, 0.4),
                0 0 50px rgba(230, 57, 70, 0.2);
    border-color: rgba(255, 107, 107, 0.4);
}

.membership-card.featured {
    transform: scale(1.08);
    box-shadow: 0 25px 60px rgba(230, 57, 70, 0.5),
                0 0 40px rgba(230, 57, 70, 0.3);
    background: linear-gradient(145deg, rgba(40, 15, 15, 0.98) 0%, rgba(15, 10, 10, 0.98) 100%);
    border-color: rgba(255, 107, 107, 0.5);
}

.membership-card.featured:hover {
    transform: scale(1.1) translateY(-10px);
}

.badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 8px 25px;
    border-radius: 0 0 20px 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    animation: badgeGlow 2s ease-in-out infinite;
}

.badge.offer-badge {
    background: linear-gradient(135deg, #e63946, #ff4757, #e63946);
    background-size: 200% 200%;
    color: #fff;
    font-size: 14px;
    padding: 10px 30px;
    animation: offerBadgePulse 1.5s ease-in-out infinite, offerBadgeShine 3s ease-in-out infinite;
    box-shadow: 0 5px 25px rgba(230, 57, 70, 0.5);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes offerBadgePulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 0 5px 25px rgba(230, 57, 70, 0.5);
    }
    50% { 
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 8px 35px rgba(230, 57, 70, 0.7);
    }
}

@keyframes offerBadgeShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6); }
}

/* Original price strikethrough */
.original-price {
    font-size: 24px;
    color: #888;
    text-decoration: line-through;
    -webkit-text-fill-color: #888;
    margin-right: 10px;
    font-weight: 500;
    opacity: 0.7;
}

.membership-card h3 {
    font-size: 28px;
    color: var(--light-text);
    margin-bottom: 20px;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.price {
    font-size: 56px;
    background: linear-gradient(180deg, #ff6b6b, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(230, 57, 70, 0.5));
}

.price span {
    font-size: 16px;
    color: #999;
}

.features {
    list-style: none;
    margin-bottom: 35px;
}

.features li {
    padding: 12px 0;
    color: #aaa;
    border-bottom: 1px solid rgba(230, 57, 70, 0.15);
    font-size: 15px;
    transition: all 0.3s ease;
}

.features li:hover {
    color: #fff;
    padding-left: 5px;
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    color: var(--accent-color);
    margin-right: 12px;
    filter: drop-shadow(0 0 5px rgba(230, 57, 70, 0.5));
}

.features li:has(.fa-times) {
    opacity: 0.5;
}

.join-btn {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 15px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.join-btn:hover::before {
    left: 100%;
}

.join-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
    border-color: transparent;
}

.featured-btn {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.featured-btn:hover {
    background-color: #d62e37;
    border-color: #d62e37;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 100px 0;
    border-top: 5px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials h2 {
    font-size: 64px;
    background: linear-gradient(135deg, #ff6b6b, var(--accent-color), #ff6b6b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
    padding: 45px;
    border-radius: 25px;
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-left: 5px solid var(--accent-color);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(230, 57, 70, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 25px 60px rgba(230, 57, 70, 0.4),
                0 0 40px rgba(230, 57, 70, 0.2);
    border-color: rgba(255, 107, 107, 0.4);
    border-left-color: #ff6b6b;
}

.stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.stars i {
    margin-right: 5px;
    animation: starTwinkle 2s ease-in-out infinite;
}

.stars i:nth-child(2) { animation-delay: 0.2s; }
.stars i:nth-child(3) { animation-delay: 0.4s; }
.stars i:nth-child(4) { animation-delay: 0.6s; }
.stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

.testimonial-card p {
    color: #bbb;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 16px;
}

.testimonial-card h4 {
    display: none;
}

.testimonial-card span {
    display: none;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(180deg, var(--primary-color) 0%, #0d0d0d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(37, 211, 102, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(230, 57, 70, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.contact h2 {
    font-size: 64px;
    background: linear-gradient(135deg, #ff6b6b, var(--accent-color), #ff6b6b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.8) 0%, rgba(15, 15, 15, 0.8) 100%);
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.2);
    transition: all 0.4s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.3);
    border-color: rgba(230, 57, 70, 0.4);
}

.info-item i {
    font-size: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(230, 57, 70, 0.5));
    transition: all 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.8));
}

.info-item h4 {
    color: var(--light-text);
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.info-item p {
    color: #999;
    font-size: 15px;
    line-height: 1.6;
}

/* WhatsApp Contact Section */
.whatsapp-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.5);
}

.whatsapp-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    animation: whatsappPulse 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

@keyframes whatsappPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-icon-large i {
    font-size: 50px;
    color: white;
}

.whatsapp-contact h3 {
    font-size: 28px;
    color: #25d366;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.whatsapp-contact p {
    color: #bbb;
    font-size: 16px;
    max-width: 300px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.whatsapp-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn-large i {
    font-size: 24px;
}

/* Map Link Button */
.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
}

.map-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.map-link-btn i {
    font-size: 14px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
    border-top: 4px solid var(--accent-color);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(230, 57, 70, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-section p {
    color: #bbb;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a::before {
    content: '→ ';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    color: var(--accent-color);
    border-radius: 50%;
    border: 2px solid rgba(230, 57, 70, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 20px;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.5);
    border-color: transparent;
}

.footer-section input {
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 2px solid rgba(230, 57, 70, 0.3);
    border-radius: 10px;
    color: var(--light-text);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-section input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
    outline: none;
}

.footer-section input::placeholder {
    color: #666;
}

.footer-section button {
    width: 100%;
    padding: 10px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-section button:hover {
    background-color: #d62e37;
}

.whatsapp-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(230, 57, 70, 0.2);
    padding-top: 30px;
    text-align: center;
    color: #777;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        padding: 20px;
        gap: 15px;
    }

    .hero {
        min-height: 90vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about h2,
    .facilities h2,
    .gallery h2,
    .locations h2,
    .membership h2,
    .testimonials h2,
    .contact h2 {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid,
    .locations-grid,
    .membership-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .membership-card.featured {
        transform: scale(1);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 36px;
        margin: 0 10px;
    }

    .hero-capital {
        font-size: 42px;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-capital {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin: 0 10px;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .about h2,
    .facilities h2,
    .locations h2,
    .membership h2,
    .testimonials h2,
    .contact h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 18px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }
}
