/* FitDzire Main Website Styles - Updated Color Palette */

:root {
    /* Brand Colors */
    --primary: #eb1c24;           /* Red */
    --primary-dark: #c91820;
    --primary-light: #ff4d54;
    --secondary: #1f1d1e;         /* Dark Gray/Black */
    --accent: #9fcd2f;            /* Lime Green */
    --accent-dark: #84ae25;
    --white: #ffffff;
    
    /* Text Colors */
    --text-dark: #1f1d1e;
    --text-light: #666666;
    --text-muted: #999999;
    
    /* Background Colors */
    --bg-light: #f7f7f7;
    --bg-dark: #1f1d1e;
    --bg-overlay: rgba(31, 29, 30, 0.85);
    
    /* Status Colors */
    --success: #9fcd2f;
    --error: #eb1c24;
    --warning: #ffa500;
    --info: #3b82f6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #eb1c24 0%, #c91820 100%);
    --gradient-accent: linear-gradient(135deg, #9fcd2f 0%, #84ae25 100%);
    --gradient-hero: linear-gradient(135deg, rgba(235, 28, 36, 0.9), rgba(31, 29, 30, 0.95));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(235, 28, 36, 0.1);
    transition: all 0.3s;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(235, 28, 36, 0.4);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(159, 205, 47, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient-hero),
                url('../images/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(to right, #fff, #9fcd2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* Programs */
.programs {
    background: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(235, 28, 36, 0.2);
    border-color: var(--primary);
}

.program-card.featured {
    border: 3px solid var(--primary);
    background: linear-gradient(to bottom, var(--white) 0%, #fff5f5 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.program-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.program-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.program-features {
    list-style: none;
    margin-bottom: 30px;
}

.program-features li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.program-price {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.program-price span {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

/* Pricing Section */
.pricing {
    background: var(--bg-light);
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(235, 28, 36, 0.25);
    border-color: var(--primary);
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(235, 28, 36, 0.2);
    background: linear-gradient(to bottom, var(--white) 0%, #fff5f5 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 30px 80px rgba(235, 28, 36, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(235, 28, 36, 0.4);
}

.pricing-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.pricing-price {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.price-currency {
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price-duration {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-per-month {
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
    margin: -10px 0 24px 0;
    padding: 8px 16px;
    background: rgba(159, 205, 47, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.pricing-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
    min-height: 80px;
    font-size: 15px;
}

.pricing-card .btn-primary {
    margin-bottom: 16px;
    font-size: 16px;
    padding: 14px 32px;
}

.pricing-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(235, 28, 36, 0.4);
}

.pricing-details-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.pricing-details-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.pricing-details-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.pricing-details-link:hover::after {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 60px;
    padding: 35px 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(235, 28, 36, 0.1);
}

.pricing-note p {
    color: var(--text-light);
    margin: 12px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

.pricing-note p:first-child {
    color: var(--text-dark);
    font-weight: 600;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-description {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: var(--bg-light);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 36px;
    flex-shrink: 0;
    color: var(--primary);
}

.feature-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.rounded-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(235, 28, 36, 0.15);
}

/* ---------------- TEAM SECTION ---------------- */

.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7f7f7 0%, #e6e6e6 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-card.featured {
    border: 3px solid var(--primary);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------------- TEAM PHOTO ---------------- */

.team-photo {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    font-weight: 700;
    color: var(--white);
    background: var(--gradient-primary);
}

/* ---------------- TEAM INFO ---------------- */

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-specialization {
    margin-bottom: 12px;
}

.specialty-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--secondary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.team-experience {
    margin-bottom: 12px;
}

.experience-badge {
    display: inline-block;
    background: #fff3cd;
    color: #856404;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.team-languages {
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 14px;
}

.team-philosophy {
    background: #ffe5e5;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--primary-dark);
    font-style: italic;
    border-left: 3px solid var(--primary);
}

/* ---------------- TOGGLE BUTTON ---------------- */

.team-details-toggle {
    margin: 15px 0;
    text-align: center;
}

.btn-view-details {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 28, 36, 0.4);
}

.btn-view-details .toggle-icon {
    transition: transform 0.3s ease;
    font-size: 10px;
}

.btn-view-details.active .toggle-icon {
    transform: rotate(180deg);
}

/* ---------------- DETAILS CONTENT ---------------- */

.team-details-content {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-section {
    margin-bottom: 20px;
}

.detail-section h4 {
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    color: var(--text-light);
    font-size: 13px;
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.6;
}

.detail-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ---------------- SOCIAL ICONS ---------------- */

.team-social {
    display: flex;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--secondary);
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(235, 28, 36, 0.3);
}

/* ---------------- CALL TO ACTION ---------------- */

.team-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-cta p {
    font-size: 18px;
    color: var(--text-dark);
    margin: 0;
}

.text-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 768px) {
    .team-section {
        padding: 50px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-photo {
        height: 300px;
    }
    
    .team-name {
        font-size: 20px;
    }
    
    .photo-placeholder {
        font-size: 60px;
    }
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: var(--bg-light);
}

.contact-icon {
    font-size: 28px;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    color: var(--white);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links-inline {
    display: flex;
    gap: 30px;
}

.footer-links-inline a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-inline a:hover {
    color: var(--white);
}

/* Utility Classes */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.bg-primary { background: var(--primary); }
.bg-accent { background: var(--accent); }
.bg-light { background: var(--bg-light); }

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 20px; }
    .hero-stats { gap: 40px; }
    .stat-number { font-size: 36px; }
    
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .section-title { font-size: 36px; }
    .programs-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active { left: 0; }
    
    .hero { height: auto; padding: 100px 0; margin-top: 70px; }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 18px; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 30px; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    
    section { padding: 60px 0; }
    
    .cta-title { font-size: 32px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .section-title { font-size: 28px; }
    .cta-title { font-size: 28px; }
    .programs-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}