/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Lighter Aqua Theme */
    --primary-color: #22d3ee;
    --primary-dark: #06b6d4;
    --primary-light: #67e8f9;
    --secondary-color: #14b8a6;
    --accent-color: #fbbf24;
    --success-color: #34d399;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #67e8f9 0%, #22d3ee 100%);
    --gradient-secondary: linear-gradient(135deg, #a78bfa 0%, #c084fc 100%);
    --gradient-warm: linear-gradient(135deg, #fbbf24 0%, #fb923c 100%);
    --gradient-ocean: linear-gradient(135deg, #67e8f9 0%, #22d3ee 50%, #a78bfa 100%);
    --gradient-aqua: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #7dd3fc 100%);

    /* Neutral Colors - Lighter */
    --dark-bg: #f0f9ff;
    --dark-card: #ffffff;
    --dark-hover: #e0f2fe;
    --text-primary: #0c4a6e;
    --text-secondary: #075985;
    --text-muted: #0369a1;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(34, 211, 238, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Swimming Bubbles Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle, rgba(34, 211, 238, 0.15) 2px, transparent 2px),
        radial-gradient(circle, rgba(103, 232, 249, 0.1) 3px, transparent 3px),
        radial-gradient(circle, rgba(34, 211, 238, 0.12) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 100px 100px;
    background-position: 0 0, 40px 60px, 130px 270px;
    animation: bubbleFloat 20s linear infinite;
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) 0;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 2px solid rgba(34, 211, 238, 0.3);
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(34, 211, 238, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.logo-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.logo-text {
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

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

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

.btn-contact {
    background: var(--gradient-primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    color: white !important;
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #7dd3fc 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(103, 232, 249, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(167, 139, 250, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

/* Water Ripple Effect */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 4s ease-out infinite;
}

@keyframes ripple {
    0% {
        width: 300px;
        height: 300px;
        opacity: 1;
    }

    100% {
        width: 800px;
        height: 800px;
        opacity: 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M10 10 Q 50 50 90 10" stroke="rgba(14,165,233,0.1)" fill="none"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-xl);
    animation: fadeInUp 1s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(34, 211, 238, 0.15);
    border: 2px solid var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    animation: fadeIn 1s ease 0.2s backwards, swimBadge 3s ease-in-out infinite;
}

@keyframes swimBadge {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    font-family: var(--font-secondary);
    animation: fadeInUp 1s ease 0.3s backwards;
}

.gradient-text {
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease 0.5s backwards;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.hero-wave .shape-fill {
    fill: var(--dark-bg);
}

/* Animated Water Drops */
@keyframes waterDrop {
    0% {
        transform: translateY(-20px) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) scale(1);
        opacity: 0;
    }
}

.hero .water-drop {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.6), transparent);
    border-radius: 50%;
    animation: waterDrop 8s linear infinite;
}

.hero .water-drop:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.hero .water-drop:nth-child(2) {
    left: 25%;
    animation-delay: 2s;
}

.hero .water-drop:nth-child(3) {
    left: 40%;
    animation-delay: 4s;
}

.hero .water-drop:nth-child(4) {
    left: 60%;
    animation-delay: 1s;
}

.hero .water-drop:nth-child(5) {
    left: 75%;
    animation-delay: 3s;
}

.hero .water-drop:nth-child(6) {
    left: 90%;
    animation-delay: 5s;
}

/* ===== SECTION COMMON ===== */
section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #ffffff 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%2367e8f9" opacity="0.3"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--dark-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid rgba(34, 211, 238, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 40px rgba(34, 211, 238, 0.3);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
}

.service-card:hover .service-icon {
    animation: swim 1s ease-in-out infinite;
}

@keyframes swim {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(-5px) rotate(-5deg);
    }

    75% {
        transform: translateX(5px) rotate(5deg);
    }
}

.service-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(34, 211, 238, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(167, 139, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.pricing-card {
    background: var(--dark-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 2px solid rgba(34, 211, 238, 0.3);
    transition: var(--transition-normal);
    position: relative;
    box-shadow: 0 4px 30px rgba(34, 211, 238, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.2);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 50px rgba(34, 211, 238, 0.3);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.location-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: var(--spacing-md);
}

.pricing-title {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.pricing-body {
    margin-bottom: var(--spacing-lg);
}

.price-option {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
    position: relative;
}

.price-option.popular {
    border-color: var(--accent-color);
    background: rgba(245, 158, 11, 0.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: var(--spacing-md);
    background: var(--gradient-warm);
    padding: 4px 12px;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.price-option:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.price-header {
    margin-bottom: var(--spacing-md);
}

.price-header h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    font-family: var(--font-secondary);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-features {
    list-style: none;
}

.price-features li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-features li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    margin-right: var(--spacing-xs);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.1), transparent);
    border-radius: 50%;
    animation: floatBubble 6s ease-in-out infinite;
}

@keyframes floatBubble {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(100px, -100px);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-card {
    background: var(--dark-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid rgba(34, 211, 238, 0.2);
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 40px rgba(34, 211, 238, 0.3);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-secondary);
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-method {
    display: flex;
    align-items: start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    border: 2px solid rgba(34, 211, 238, 0.3);
    transition: var(--transition-normal);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.2);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-method a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-method a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-method p {
    color: var(--text-secondary);
}

.contact-form-container {
    background: var(--dark-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(34, 211, 238, 0.3);
    box-shadow: 0 8px 40px rgba(34, 211, 238, 0.2);
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(224, 242, 254, 0.5);
    border: 2px solid rgba(34, 211, 238, 0.3);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2);
}

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

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #bae6fd 0%, #7dd3fc 100%);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
    border-top: 3px solid rgba(34, 211, 238, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.footer-section p,
.footer-section li {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-lg) 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

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

@media (max-width: 480px) {

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(34, 211, 238, 0.3);
    transition: var(--transition-normal);
}

.image-placeholder:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 60px rgba(34, 211, 238, 0.4);
}

.placeholder-icon {
    font-size: 8rem;
    margin-bottom: var(--spacing-sm);
}

.image-placeholder p {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.about-text {
    max-width: 600px;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.about-details {
    margin-bottom: var(--spacing-xl);
}

.detail-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-normal);
}

.detail-item:hover {
    background: white;
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.detail-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.detail-item h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.detail-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== GALLERY CAROUSEL SECTION ===== */
.gallery {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(34, 211, 238, 0.3);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    aspect-ratio: 16/9;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.4);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
    border-color: var(--primary-light);
}

.indicator:hover {
    background: var(--primary-light);
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: linear-gradient(180deg, #e0f2fe 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: var(--dark-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.1);
    border: 2px solid rgba(34, 211, 238, 0.2);
    transition: var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--primary-light);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 40px rgba(34, 211, 238, 0.3);
    border-color: var(--primary-color);
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== FAQ SECTION ===== */
.faq {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border: 2px solid rgba(34, 211, 238, 0.2);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

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

.whatsapp-icon {
    width: 35px;
    height: 35px;
    color: white;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ===== LOGO AS DESIGN ===== */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-letters {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 2rem;
    position: relative;
}

.letter-a,
.letter-s {
    display: inline-block;
    transition: var(--transition-normal);
    position: relative;
}

.letter-a {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: letterPulse 3s ease-in-out infinite;
}

.letter-s {
    background: linear-gradient(135deg, #06b6d4 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: letterPulse 3s ease-in-out infinite 0.3s;
}

@keyframes letterPulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.1);
        filter: brightness(1.2);
    }
}

.logo-container:hover .letter-a {
    animation: letterBounce 0.6s ease;
}

.logo-container:hover .letter-s {
    animation: letterBounce 0.6s ease 0.1s;
}

@keyframes letterBounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(-5deg);
    }

    75% {
        transform: translateY(-5px) rotate(5deg);
    }
}

/* Add glow effect on hover */
.logo-container:hover .logo-letters {
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.6));
}

/* ===== TWO-COLUMN PRICING GRID ===== */
.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.price-per-class {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .pricing-grid-two {
        grid-template-columns: 1fr;
    }
}

/* ===== PACKAGE BUTTONS ===== */
.btn-package {
    width: 100%;
    margin-top: var(--spacing-md);
    font-size: 0.95rem;
    padding: var(--spacing-sm) var(--spacing-md);
}

.price-option {
    display: flex;
    flex-direction: column;
}

.price-option .btn-package {
    margin-top: auto;
}

/* ===== GALLERY IMAGES ===== */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption p {
    color: white;
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

/* ===== PROFILE IMAGE ===== */
.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.about-image:hover .profile-image {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(34, 211, 238, 0.4);
}
/* ===== CLUB NACES PROMOTION SECTION ===== */
.club-naces-promo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.club-naces-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.promo-banner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.promo-banner::after {
    content: '🏊‍♀️';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 15rem;
    opacity: 0.05;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    padding: var(--spacing-xs) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

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

.promo-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
}

.promo-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.promo-subtitle strong {
    color: #667eea;
    font-weight: 700;
}

.promo-content {
    display: grid;
    gap: var(--spacing-xl);
}

.promo-info {
    display: flex;
    gap: var(--spacing-lg);
    align-items: start;
    background: rgba(102, 126, 234, 0.05);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid #667eea;
}

.promo-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.promo-info h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.promo-location {
    font-size: 1.125rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.promo-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.promo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.promo-feature {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.promo-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

.btn-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.5);
}

.instagram-icon {
    font-size: 1.25rem;
}

.promo-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.promo-actions .btn-primary span {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .promo-info {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-icon {
        font-size: 3rem;
    }
    
    .promo-actions {
        flex-direction: column;
    }
    
    .promo-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
