/* Fitness Transform - Order 95 - Custom Styles */
/* Color Palette: Orange #FF6B35, Navy #0A2463, Lime #A7FF83 */

:root {
    --primary-orange: #FF6B35;
    --primary-navy: #0A2463;
    --accent-lime: #A7FF83;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --medium-gray: #8B95A5;
    --charcoal: #2D3748;
    --dark-navy: #051638;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}

h1 {
    font-size: 56px;
    line-height: 1.2;
}

h2 {
    font-size: 42px;
    line-height: 1.25;
}

h3 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
}

h4 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
    body { font-size: 15px; }
}

/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy) !important;
}

.navbar-nav .nav-link {
    color: var(--charcoal);
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn-primary {
    background-color: var(--primary-orange);
    border: none;
    color: var(--white);
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #E55A2A;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    background-color: transparent;
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 18px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-section h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 20px;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.trust-badge i {
    color: var(--accent-lime);
    font-size: 24px;
}

.floating-stat {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

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

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 20px auto 0;
}

/* Value Proposition Cards */
.value-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-card .icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--primary-navy);
}

.value-card h4 {
    margin-bottom: 15px;
}

.value-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Service Cards */
.service-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.service-card h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 20px 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.service-features li:before {
    content: "✓";
    color: var(--accent-lime);
    font-weight: bold;
    margin-right: 10px;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.testimonial-stars {
    color: #FFB800;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-navy);
}

.testimonial-result {
    color: var(--primary-orange);
    font-weight: 500;
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 80px 0;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-lime);
    display: block;
}

.stat-label {
    font-size: 18px;
    color: var(--white);
    margin-top: 10px;
}

/* FAQ Section */
.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-navy);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-answer {
    padding: 0 30px 25px 30px;
    display: none;
    color: var(--charcoal);
    line-height: 1.7;
}

.faq-answer.active {
    display: block;
}

.faq-icon {
    color: var(--primary-orange);
    font-size: 24px;
    transition: transform 0.3s ease;
}

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

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-control {
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section .lead {
    color: var(--light-gray);
    font-size: 20px;
    margin-bottom: 40px;
}

.urgency-badge {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--primary-navy);
    color: var(--light-gray);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #E55A2A;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-consent.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Policy Pages */
.policy-page {
    padding: 80px 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .floating-stat {
        position: static;
        margin-top: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
    }
}

/* Utility Classes */
.text-orange {
    color: var(--primary-orange);
}

.text-lime {
    color: var(--accent-lime);
}

.bg-navy {
    background-color: var(--primary-navy);
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}
