/* ============================================
   GYM-URMAH — GUERREROS DEL HIERRO
   Main Stylesheet — Ultra Premium Design
   Color Palette: Deep Blue, Gold, Cyan Energy
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    /* Primary Colors - Urmah Theme */
    --primary: #0a8fff;
    --primary-dark: #0066cc;
    --primary-light: #33a8ff;
    --primary-glow: rgba(10, 143, 255, 0.4);
    
    /* Gold/Accent */
    --gold: #d4a520;
    --gold-light: #f0c850;
    --gold-dark: #b8860b;
    --gold-glow: rgba(212, 165, 32, 0.4);
    
    /* Energy Cyan */
    --energy: #00d4ff;
    --energy-glow: rgba(0, 212, 255, 0.5);
    
    /* Background */
    --bg-dark: #030711;
    --bg-darker: #010409;
    --bg-card: #0a0f1e;
    --bg-card-hover: #0f1630;
    --bg-surface: rgba(10, 15, 30, 0.85);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Borders */
    --border: rgba(10, 143, 255, 0.15);
    --border-hover: rgba(10, 143, 255, 0.35);
    --border-gold: rgba(212, 165, 32, 0.3);
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;
    
    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

::selection {
    background: var(--primary);
    color: white;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Text Gradient ---- */
.text-gradient {
    background: linear-gradient(135deg, var(--energy), var(--primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    position: relative;
}

.energy-ring {
    width: 120px;
    height: 120px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: spin 1s linear infinite;
    position: relative;
}

.energy-ring.ring2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    margin-top: 10px;
    border-top-color: var(--energy);
    animation-direction: reverse;
    animation-duration: 0.7s;
}

.energy-ring.ring3 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    margin-top: 20px;
    border-top-color: var(--gold);
    animation-duration: 0.5s;
}

@keyframes spin {
    to { transform: translateX(-50%) rotate(360deg); }
}

.energy-ring:first-child {
    animation: spin-first 1s linear infinite;
}

@keyframes spin-first {
    to { transform: rotate(360deg); }
}

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.preloader-logo .logo-icon {
    font-size: 32px;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.preloader-logo .logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--energy), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preloader-sub {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 6px;
    text-transform: uppercase;
    animation: pulse-text 1.5s ease infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ---- Particles Canvas ---- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(3, 7, 17, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-shield {
    font-size: 28px;
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
    transition: var(--transition-normal);
}

.nav-logo:hover .logo-shield {
    color: var(--energy);
    text-shadow: 0 0 25px var(--energy-glow);
    transform: scale(1.1);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1;
    background: linear-gradient(135deg, #fff, var(--energy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition-normal);
    text-transform: uppercase;
}

.nav-link .nav-icon {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(10, 143, 255, 0.1);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    text-transform: uppercase;
    border: 1px solid rgba(10, 143, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--primary-glow);
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

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

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

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

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(10, 143, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(212, 165, 32, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.hero-energy-lines {
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(10, 143, 255, 0.02) 100px,
            rgba(10, 143, 255, 0.02) 101px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(10, 143, 255, 0.02) 100px,
            rgba(10, 143, 255, 0.02) 101px
        );
    animation: energyPulse 4s ease infinite;
}

@keyframes energyPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    padding: 10px 24px;
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    background: rgba(212, 165, 32, 0.05);
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 16px;
    text-shadow: 0 0 10px var(--gold-glow);
}

.hero-title {
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 6px;
}

.title-line-2 {
    font-size: clamp(40px, 7vw, 84px);
    font-weight: 900;
    letter-spacing: 4px;
    margin-top: 4px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--energy);
    display: block;
    line-height: 1;
    text-shadow: 0 0 20px var(--energy-glow);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--energy);
    text-shadow: 0 0 20px var(--energy-glow);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--border-hover), transparent);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Urmah Image */
.hero-urmah {
    position: absolute;
    right: -40px;
    bottom: -20px;
    width: clamp(350px, 40vw, 650px);
    z-index: 1;
    pointer-events: none;
}

.urmah-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(10, 143, 255, 0.3)) drop-shadow(0 0 80px rgba(0, 212, 255, 0.15));
    animation: urmahFloat 6s ease-in-out infinite;
}

@keyframes urmahFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.urmah-glow {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40%;
    background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 3s ease infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: bounceDown 2s infinite;
    color: var(--primary);
    font-size: 18px;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: 1px solid rgba(10, 143, 255, 0.4);
}

.btn-primary .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--energy), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover .btn-bg {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--primary-glow);
}

.btn-primary i, .btn-primary span:not(.btn-bg) {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(10, 143, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(10, 143, 255, 0.15);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darker);
    border: 1px solid rgba(212, 165, 32, 0.5);
    font-weight: 800;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--gold-glow);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    font-size: 16px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---- Section Common ---- */
.section {
    position: relative;
    padding: var(--section-padding) 0;
    z-index: 1;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 10% 30%, rgba(10, 143, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 70%, rgba(212, 165, 32, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-tag i {
    font-size: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- About Cards ---- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10, 143, 255, 0.1);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(10, 143, 255, 0.15), rgba(10, 143, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
}

.icon-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover .icon-glow {
    opacity: 0.6;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ---- Facilities ---- */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.facility-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.facility-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(10, 143, 255, 0.12);
}

.facility-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
}

.facility-image {
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.facility-large .facility-image {
    min-height: 350px;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.08);
}

.facility-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(3, 7, 17, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.facility-large .facility-overlay {
    background: linear-gradient(90deg, transparent 60%, rgba(3, 7, 17, 0.9) 100%);
}

.facility-tag {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 3px;
    padding: 6px 16px;
    background: rgba(10, 143, 255, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--energy);
    font-weight: 600;
}

.facility-info {
    padding: 28px;
}

.facility-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.facility-info h3 i {
    color: var(--primary);
    font-size: 18px;
}

.facility-info p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.facility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.facility-features span {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--energy);
    display: flex;
    align-items: center;
    gap: 6px;
}

.facility-features span i {
    font-size: 10px;
}

/* ---- Pricing ---- */
.pricing {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 50%, var(--bg-dark) 100%);
}

.pricing-bg-energy {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(10, 143, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 165, 32, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    transition: color 0.3s ease;
    cursor: pointer;
}

.toggle-label.active {
    color: var(--text-primary);
}

.save-badge {
    font-size: 11px;
    padding: 3px 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darker);
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    transition: 0.4s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: var(--primary);
    border-radius: 50%;
    transition: 0.4s;
    box-shadow: 0 0 10px var(--primary-glow);
}

input:checked + .toggle-slider {
    border-color: var(--gold);
}

input:checked + .toggle-slider::before {
    transform: translateX(26px);
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pricing-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(10, 143, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(10, 143, 255, 0.1);
}

.pricing-featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(10, 143, 255, 0.08) 0%, var(--bg-card) 40%);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-legend {
    border-color: var(--border-gold);
}

.pricing-legend:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px var(--gold-glow);
}

.pricing-popular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary), var(--energy));
    color: white;
    text-transform: uppercase;
}

.pricing-featured .pricing-tier {
    margin-top: 24px;
}

.pricing-tier {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tier-icon {
    font-size: 28px;
    color: var(--primary);
}

.pricing-legend .tier-icon {
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold-glow);
}

.tier-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.pricing-amount {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
}

.price {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--text-primary), var(--energy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-legend .price {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 28px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.pricing-features li i {
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-features li .fa-check-circle {
    color: var(--energy);
}

.pricing-features li .fa-times-circle {
    color: var(--text-muted);
    opacity: 0.4;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features li strong {
    color: var(--text-primary);
}

.pricing-btn {
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-note i {
    color: var(--primary);
    margin-right: 6px;
}

/* ---- Schedule ---- */
.schedule-info-bar {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 260px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.info-item i {
    font-size: 28px;
    color: var(--primary);
}

.info-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.info-item span {
    font-size: 14px;
    color: var(--text-secondary);
}

.schedule-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.schedule-tab {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-tab:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.schedule-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.schedule-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.schedule-table thead {
    background: linear-gradient(135deg, rgba(10, 143, 255, 0.15), rgba(10, 143, 255, 0.05));
}

.schedule-table th {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.schedule-table td {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s ease;
}

.schedule-table tr:hover td {
    background: rgba(10, 143, 255, 0.04);
}

.schedule-table td:first-child {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    color: var(--energy);
    letter-spacing: 1px;
}

.level-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.level-todos {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.level-intermedio {
    background: rgba(255, 165, 0, 0.15);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.level-avanzado {
    background: rgba(255, 50, 50, 0.15);
    color: #ff4444;
    border: 1px solid rgba(255, 50, 50, 0.3);
}

/* ---- Trainers ---- */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.trainer-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.trainer-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(10, 143, 255, 0.12);
}

.trainer-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.08);
}

.trainer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(3, 7, 17, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trainer-card:hover .trainer-overlay {
    opacity: 1;
}

.trainer-socials {
    display: flex;
    gap: 12px;
}

.trainer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 143, 255, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50%;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.trainer-socials a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.trainer-info {
    padding: 24px;
}

.trainer-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.trainer-specialty {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--energy);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.trainer-info p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

/* ---- Testimonials ---- */
.testimonials {
    background: var(--bg-darker);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    box-sizing: border-box;
}

.testimonial-stars {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 18px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--energy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 1px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.test-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.test-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.test-dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    transform: scale(1.2);
}

/* ---- Contact ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--border-hover);
    transform: translateX(6px);
}

.contact-icon {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.contact-card a {
    color: var(--energy);
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: var(--primary);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(10, 143, 255, 0.1);
    transform: translateY(-4px);
}

/* ---- Contact Form ---- */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group label i {
    color: var(--primary);
    margin-right: 6px;
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 143, 255, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ---- Modal ---- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s ease;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 50, 50, 0.15);
    border-color: #ff4444;
    color: #ff4444;
}

.modal-icon {
    font-size: 56px;
    color: #25D366;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.modal-content > p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
}

.modal-details {
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 28px;
    text-align: left;
}

.modal-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.modal-details .detail-row:last-child {
    border-bottom: none;
    font-weight: 700;
    color: var(--energy);
    font-size: 16px;
    padding-top: 12px;
}

.modal-details .detail-row span:first-child {
    color: var(--text-muted);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ---- Footer ---- */
.footer {
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-darker);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-shield {
    font-size: 32px;
}

.footer-logo .logo-main {
    font-size: 18px;
    display: block;
}

.footer-logo .logo-sub {
    display: block;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 143, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 6px 0;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--primary);
    font-size: 14px;
    width: 16px;
}

.footer-contact a {
    color: var(--text-secondary);
}

.footer-contact a:hover {
    color: var(--energy);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-darker);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-urmah {
    font-size: 12px;
}

/* ---- Scroll Animations ---- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .hero-urmah {
        width: 300px;
        right: -20px;
        opacity: 0.4;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .pricing-featured {
        transform: none;
    }
    
    .pricing-featured:hover {
        transform: translateY(-8px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-darker);
        border-left: 1px solid var(--border);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.4s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 14px 16px;
        width: 100%;
    }
    
    .nav-link .nav-icon {
        display: inline-block;
        margin-right: 10px;
        color: var(--primary);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .facility-large {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 64px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-urmah {
        width: 200px;
        opacity: 0.2;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .testimonial-card {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        text-align: center;
        justify-content: center;
    }
    
    .modal-content {
        padding: 32px 24px;
    }
    
    .section-title {
        letter-spacing: 1px;
    }
}