/**
 * Main Styles for Fit Booking
 * Dark theme with #eeff64 accent
 */

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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.7;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* Decorative gradients */
body::before {
    content: '';
    position: fixed;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(238, 255, 100, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(246, 45, 45, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

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

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(238, 255, 100, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-family: 'Prata', serif;
    font-size: 20px;
    color: #eeff64;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #eeff64;
}

/* Hero Section */
.hero {
    background: #0a0a0a;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(238, 255, 100, 0.15) 0%, rgba(246, 45, 45, 0.15) 100%);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #eeff64;
    border: 1px solid rgba(238, 255, 100, 0.3);
    margin-bottom: 25px;
    text-transform: uppercase;
}

h1 {
    font-family: 'Prata', serif;
    font-size: clamp(32px, 5vw, 54px);
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

h1 .highlight {
    color: #eeff64;
    display: block;
}

.subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    max-width: 700px;
    margin: 35px auto;
    text-align: left;
}

.benefits-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #eeff64;
    font-size: 22px;
    font-weight: bold;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #eeff64 0%, #f1f76f 100%);
    color: #0a0a0a;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(238, 255, 100, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 255, 100, 0.4);
}

/* Section Styles */
.section {
    padding: 80px 20px;
    position: relative;
}

.section-title {
    font-family: 'Prata', serif;
    font-size: clamp(28px, 4vw, 40px);
    text-align: center;
    margin-bottom: 50px;
    color: #eeff64;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(238, 255, 100, 0.05) 0%, rgba(246, 45, 45, 0.05) 100%);
    padding: 35px 25px;
    border-radius: 20px;
    border: 2px solid rgba(238, 255, 100, 0.15);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(238, 255, 100, 0.3);
    box-shadow: 0 15px 40px rgba(238, 255, 100, 0.15);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #eeff64;
}

.feature-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Price Box */
.price-box {
    background: linear-gradient(135deg, rgba(238, 255, 100, 0.15) 0%, rgba(246, 45, 45, 0.15) 100%);
    border: 3px solid #eeff64;
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}

.price-amount {
    font-size: 72px;
    font-weight: 800;
    color: #eeff64;
    line-height: 1;
    margin-bottom: 10px;
}

.price-info {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.price-features li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-features li::before {
    content: '\2713';
    color: #eeff64;
    font-weight: bold;
    font-size: 20px;
}

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, rgba(238, 255, 100, 0.1) 0%, rgba(246, 45, 45, 0.1) 100%);
    border: 2px solid rgba(238, 255, 100, 0.3);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #eeff64;
}

.guarantee-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Trainer Card */
.trainer-card {
    background: linear-gradient(135deg, rgba(238, 255, 100, 0.08) 0%, rgba(246, 45, 45, 0.08) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(238, 255, 100, 0.2);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.trainer-name {
    font-size: 28px;
    font-weight: 700;
    color: #eeff64;
    margin-bottom: 10px;
}

.trainer-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.trainer-bio {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 50px 20px;
    border-top: 1px solid rgba(238, 255, 100, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #eeff64;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #eeff64;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-title {
    color: #eeff64;
    font-size: 28px;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #333;
    border-radius: 12px;
    background: #1a1a1a;
    color: #fff;
    transition: all 0.3s ease;
    font-family: 'Montserrat', Arial, sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #eeff64;
    box-shadow: 0 0 20px rgba(238, 255, 100, 0.2);
}

.form-input::placeholder {
    color: #666;
}

.form-error {
    color: #f62d2d;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-error.active {
    display: block;
}

.form-button {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #eeff64 0%, #d4e652 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', Arial, sans-serif;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(238, 255, 100, 0.3);
}

.form-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading */
.loading {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(238, 255, 100, 0.2);
    border-top-color: #eeff64;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .section {
        padding: 60px 20px;
    }

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

    .price-amount {
        font-size: 56px;
    }

    .modal-content {
        padding: 30px 20px;
    }
}
