/**
 * Fitness Centrum - Custom Stylesheet
 * Alle styling voor header, landingpage en footer
 */

/* ========================================
   CSS Variables & Reset
   ======================================== */

:root {
    --primary-green: rgb(146, 212, 0);
    --primary-gray: #616365;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-gray);
    overflow-x: hidden;
    padding-top: 0 !important;
}

/* ========================================
   HEADER STYLES
   ======================================== */

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-green) 0%, #a0d500 100%);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.promo-banner strong {
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
}

.promo-close:hover {
    opacity: 1;
    transform: translateY(-50%) rotate(90deg);
}

/* Header Wrapper */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Top Bar */
.top-bar {
    background: var(--dark-bg);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(146, 212, 0, 0.2);
    transition: all 0.3s ease;
}

.top-bar.hide {
    transform: translateY(-100%);
    opacity: 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar-item i {
    color: var(--primary-green);
}

.top-bar-item:hover {
    color: var(--primary-green);
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Main Navigation */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.navbar-brand span {
    color: var(--primary-green);
}

.navbar-brand:hover {
    color: var(--primary-green);
    transform: scale(1.05);
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: var(--primary-gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

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

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

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

/* CTA Buttons */
.header-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-header-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-header-outline:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(146, 212, 0, 0.3);
}

.btn-header-primary {
    background: var(--primary-green);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-header-primary:hover {
    background: var(--dark-bg);
    border-color: var(--dark-bg);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 8px;
    position: relative;
    width: 40px;
    height: 40px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 30px;
    height: 2px;
    background: var(--primary-gray);
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary-gray);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
    background: var(--primary-green);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
    background: var(--primary-green);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 20px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(146, 212, 0, 0.1);
    color: var(--primary-green);
    padding-left: 25px;
}

/* Hide elements on scroll */
.header-wrapper.compact .top-bar {
    display: none;
}

.header-wrapper.compact .promo-banner {
    display: none;
}

.header-wrapper.compact .navbar {
    padding: 10px 0;
}

/* ========================================
   MAIN CONTENT STYLES
   ======================================== */

/* Add padding to body to account for fixed header */
body {
    padding-top: 145px;
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/wp-content/uploads/2025/10/pexels-willpicturethis-1954524-scaled.jpg');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 300;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background: var(--primary-green);
    color: var(--dark-bg);
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(146, 212, 0, 0.3);
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: white;
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(146, 212, 0, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-green);
    animation: bounce 2s infinite;
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefit-card {
    padding: 40px;
    background: var(--light-bg);
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    border: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 1rem;
}

/* Training Section */
.training-section {
    padding: 100px 0;
    background: var(--dark-bg);
    color: white;
    position: relative;
    overflow: hidden;
}

.training-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.05;
}

.training-feature {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
    transition: all 0.3s ease;
}

.training-feature:hover {
    background: rgba(146, 212, 0, 0.1);
    transform: translateX(10px);
}

.training-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-right: 2rem;
    min-width: 80px;
}

.training-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #a0d500 100%);
}

.stat-box {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-gray);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--primary-gray);
    font-weight: 600;
    text-transform: uppercase;
}

/* Schedule Section */
.schedule-section {
    padding: 100px 0;
    background: white;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.schedule-card {
    background: var(--dark-bg);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-green);
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(146, 212, 0, 0.3);
}

.schedule-day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.schedule-time {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonial-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: var(--primary-green);
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

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

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--primary-green);
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.pricing-card {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 5px solid transparent;
}

.pricing-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: scale(1.08);
    box-shadow: 0 30px 60px rgba(146, 212, 0, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 8px 30px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.pricing-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--primary-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: var(--primary-gray);
}

.pricing-features li i {
    color: var(--primary-green);
    margin-right: 10px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #a0d500 100%);
}

.contact-info {
    background: white;
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 0.3rem;
}

.contact-item p {
    margin: 0;
    color: var(--primary-gray);
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 30px;
}

.form-control {
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(146, 212, 0, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background: var(--primary-green);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer-section {
    position: relative;
    color: white;
}

.footer-top {
    background: var(--dark-bg);
    padding: 80px 0 60px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo h3 span {
    color: var(--primary-green);
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 20px rgba(146, 212, 0, 0.3);
}

.footer-widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-green);
}

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

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: var(--primary-green);
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-right: 15px;
    margin-top: 3px;
    min-width: 20px;
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, var(--primary-green) 0%, #a0d500 100%);
    padding: 50px 0;
}

.newsletter-content {
    color: var(--dark-bg);
}

.newsletter-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-title i {
    font-size: 2rem;
}

.newsletter-text {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.newsletter-form .input-group {
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 18px 30px;
    font-size: 1rem;
    background: white;
    color: var(--primary-gray);
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.btn-newsletter {
    background: var(--dark-bg);
    color: white;
    border: none;
    padding: 18px 40px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0 50px 50px 0;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: var(--primary-gray);
    transform: translateX(-5px);
}

.btn-newsletter i {
    transition: transform 0.3s ease;
}

.btn-newsletter:hover i {
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    background: #0f0f0f;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

.footer-payment {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    color: #888;
    font-size: 0.9rem;
}

.footer-payment i {
    font-size: 1.8rem;
    color: #666;
    transition: all 0.3s ease;
}

.footer-payment i:hover {
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(146, 212, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: white;
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(146, 212, 0, 0.5);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 991px) {
    /* Header */
    .navbar-collapse {
        background: white;
        padding: 20px;
        margin-top: 15px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid #eee;
    }

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

    .nav-link:hover,
    .nav-link.active {
        background: rgba(146, 212, 0, 0.1);
        border-radius: 8px;
        border-bottom-color: transparent;
    }

    .header-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
    }

    .btn-header-outline,
    .btn-header-primary {
        width: 100%;
        text-align: center;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    /* Content */
    body {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    /* Footer */
    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
    }

    .newsletter-title {
        font-size: 1.4rem;
        justify-content: center;
        text-align: center;
    }

    .newsletter-text {
        text-align: center;
    }

    .newsletter-form .form-control {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .btn-newsletter {
        padding: 15px 25px;
        font-size: 0.85rem;
    }

    .btn-newsletter span {
        display: none;
    }

    .footer-payment {
        justify-content: center;
        flex-wrap: wrap;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    /* Header */
    .navbar-brand {
        font-size: 1.5rem;
    }

    .top-bar {
        font-size: 0.75rem;
    }

    .top-bar-item {
        font-size: 0.75rem;
    }

    /* Footer */
    .footer-social {
        justify-content: center;
    }

    .footer-widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-widget {
        text-align: center;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-contact li {
        justify-content: center;
    }
}