/* ========================================
   FLORIDA GYM - FITNESS BOUTIQUE DESIGN
   Modern Gym Website | Energetic | Results-Focused
   ======================================== */

/* ========================================
   RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   HEADER - Clean & Professional
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    z-index: 1000;
    padding: 12px 0;
}

.header .container {
    max-width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 46px;
    width: auto;
}

.hamburger {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: #1a1a1a;
    border-radius: 10px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
}

.nav-mobile.active {
    max-height: 500px;
}

.nav-mobile a {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    color: #1a1a1a;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
}

.nav-mobile a:active {
    background: #f8f9fa;
}

.nav-desktop {
    display: none;
}

/* ========================================
   HERO SECTION - GYM FOCUSED! 💪
   ======================================== */
.hero-modern {
    padding: 90px 20px 60px;
    background: linear-gradient(165deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background Pattern */
.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(77, 166, 229, 0.03) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 153, 102, 0.03) 50%, transparent 52%);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero Badge - Premium */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(255,153,102,0.15), rgba(255,230,102,0.15));
    border: 2px solid rgba(255,153,102,0.4);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: #FFE066;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

/* Hero Headline - BOLD & POWERFUL */
.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #4DA6E5 0%, #FF9966 50%, #FFE066 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Tagline - Motivational */
.hero-tagline {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    font-weight: 400;
}

/* Hero Stats - Quick Impact Numbers */
.hero-quick-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-stat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #FF9966, #FFE066);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.quick-stat-info strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #FFE066;
    line-height: 1;
}

.quick-stat-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero CTA Buttons - Action-Focused */
.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.btn-hero-primary {
    padding: 20px 32px;
    background: linear-gradient(135deg, #FF9966 0%, #FFE066 100%);
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 800;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255,153,102,0.4);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.btn-hero-primary:active {
    transform: scale(0.97);
}

.btn-hero-secondary {
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
}

.btn-hero-secondary:active {
    background: rgba(255, 255, 255, 0.2);
}

/* Social Proof - Trust Indicators */
.hero-social-proof {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.proof-stars {
    display: flex;
    gap: 3px;
}

.proof-stars i {
    color: #FFE066;
    font-size: 16px;
}

.proof-item strong {
    font-weight: 700;
}

/* Hero Visual */
.hero-visual {
    margin-top: 40px;
    position: relative;
}

.hero-image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

/* Results Cards - Before/After Feel */
.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 190px;
}

.stat-1 {
    top: 20px;
    right: 20px;
}

.stat-2 {
    left: 20px;
    top: 48%;
}

.stat-3 {
    bottom: 20px;
    right: 20px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF9966, #FFE066);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 900;
    flex-shrink: 0;
}

.stat-info strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.stat-info span {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
    font-weight: 600;
}

/* ========================================
   SECTIONS - Fitness Themed
   ======================================== */
section {
    padding: 64px 20px;
}

.features-section {
    background: #fff;
}

.gallery-preview {
    background: #f8f9fa;
}

.services {
    background: #fff;
}

.ems-imotion {
    background: linear-gradient(180deg, #f0f8ff 0%, #e3f2fd 100%);
    position: relative;
}

.ems-imotion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4DA6E5, #FF9966, #FFE066);
}

.team {
    background: #f8f9fa;
}

.social-proof {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    position: relative;
}

.social-proof::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(77, 166, 229, 0.03) 50%, transparent 52%);
    background-size: 30px 30px;
}

.contact {
    background: #fff;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header,
.features-header {
    text-align: center;
    margin-bottom: 48px;
}

.features-label {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(255,153,102,0.12), rgba(255,230,102,0.12));
    border: 2px solid rgba(255,153,102,0.25);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #FF9966;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title,
.features-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
}

.social-proof .section-title {
    color: #fff;
}

/* ========================================
   CARDS - Fitness Style
   ======================================== */
.feature-box,
.service-card,
.servizio-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 18px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    margin-bottom: 20px;
}

.feature-box:active,
.service-card:active {
    transform: translateY(-8px);
    border-color: #FF9966;
    box-shadow: 0 12px 36px rgba(255,153,102,0.2);
}

/* Icons - Energy Colors */
.feature-icon-wrapper,
.service-icon,
.servizio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF9966 0%, #FFE066 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 32px;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(255,153,102,0.3);
}

.feature-box h3,
.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-box p,
.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 22px;
    background: linear-gradient(135deg, rgba(255,153,102,0.12), rgba(255,230,102,0.12));
    color: #FF9966;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    border: 2px solid rgba(255,153,102,0.3);
    transition: 0.3s;
}

.service-cta:active {
    background: linear-gradient(135deg, #FF9966, #FFE066);
    color: #1a1a1a;
}

/* Featured Service */
.service-card.featured {
    background: linear-gradient(135deg, rgba(255,153,102,0.08), rgba(255,230,102,0.08));
    border: 3px solid #FF9966;
}

.service-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #FF9966, #FFE066);
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255,153,102,0.4);
}

/* ========================================
   GALLERY - Modern Grid
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ========================================
   TEAM CARDS
   ======================================== */
.team-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.team-image-wrapper {
    height: 300px;
    background: #f5f5f5;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 26px 22px;
}

.team-info h3 {
    font-size: 23px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    color: #FF9966;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

/* ========================================
   SOCIAL PROOF - Dark Theme
   ======================================== */
.proof-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.proof-stat {
    background: rgba(255, 255, 255, 0.95);
    padding: 34px 26px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 32px rgba(0,0,0,0.2);
}

.proof-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF9966, #FFE066);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(255,153,102,0.4);
}

.proof-number {
    font-size: 52px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 8px;
}

.proof-label {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 20px 24px;
}

.footer-logo img {
    height: 52px;
    margin-bottom: 16px;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-fixed {
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 8px 28px rgba(37,211,102,0.5);
    z-index: 9999;
    animation: pulse 2s infinite;
}

/* ========================================
   POPUP
   ======================================== */
.promo-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.promo-popup.show {
    display: flex;
}

.popup-card {
    background: #fff;
    padding: 40px 28px;
    border-radius: 20px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.popup-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

/* ========================================
   DESKTOP
   ======================================== */
@media (min-width: 768px) {
    .hero-modern {
        padding: 120px 40px 80px;
    }
    
    .hero-content-wrapper {
        display: flex;
        align-items: center;
        gap: 60px;
    }
    
    .hero-main {
        flex: 1;
    }
    
    .hero-visual {
        flex: 1;
        margin-top: 0;
    }
    
    .hero-headline {
        font-size: 58px;
    }
    
    .hero-cta-buttons {
        flex-direction: row;
    }
    
    .hero-social-proof {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hamburger {
        display: none;
    }
    
    .nav-mobile {
        display: none;
    }
    
    .nav-desktop {
        display: flex;
        gap: 32px;
    }
    
    .nav-desktop a {
        color: #1a1a1a;
        font-weight: 500;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
