/* CSS Variables */
:root {
    /* Primary Colors - Blues */
    --primary-dark-blue: #1a365d;
    --primary-blue: #2c5282;

    /* Secondary Colors - Reds */
    --primary-red: #980000;
    --secondary-red: #cc0000;
    --light-red: #ea5151;
    --lightest-red: #fee2e2;
    --hover-red: #bb1010;

    /* Neutral Colors */
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light-gray: #f7fafc;
    --border-gray: #e2e8f0;

    /* Layout Variables */
    --nav-height: 72px;
    --banner-height: 48px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Navigation Placeholder */
#navigation-placeholder {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation Styles */
nav {
    background-color: var(--bg-white);
    padding: 1.2rem 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--border-gray);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--primary-dark-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a.active {
    color: var(--primary-red);
}

.nav-cta {
    background-color: var(--hover-red);
    color: var(--bg-white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.nav-cta:hover {
    background-color: var(--primary-red);
    color: var(--bg-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(187, 16, 16, 0.3);
}

.nav-cta.active {
    background-color: var(--primary-red);
    color: var(--bg-white) !important;
}

/* Mobile Navigation */
.mobile-nav-container {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-cta {
    display: inline-block !important;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    padding: 2rem 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border-gray);
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: var(--primary-dark-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.mobile-nav-links a:hover {
    background-color: var(--bg-light-gray);
    color: var(--primary-red);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--bg-white);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(152, 0, 0, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(204, 0, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-text .highlight {
    color: var(--light-red);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-button {
    display: inline-block;
    background-color: var(--hover-red);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(187, 16, 16, 0.3);
}

.primary-button:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(187, 16, 16, 0.4);
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border: 2px solid var(--bg-white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: var(--bg-white);
    color: var(--primary-dark-blue);
}

.hero-image {
    position: relative;
}

.hero-visual {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
    gap: 1rem;
    color: var(--text-dark);
}

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

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
    display: block;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--bg-light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--primary-red);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
}

.benefit-card h3 {
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Program Overview Section */
.programs,
.sports-offered {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.program-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.program-container:nth-child(even) {
    direction: rtl;
}

.program-container:nth-child(even) > * {
    direction: ltr;
}

.program-content {
    padding: 2rem;
}

.program-badge {
    display: inline-block;
    background-color: var(--lightest-red);
    color: var(--primary-red);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.program-content h3 {
    font-size: 2.2rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.program-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.program-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.program-image {
    background-color: var(--bg-light-gray);
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.program-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

/* Instructors Section */
.instructors {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.instructors-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    justify-content: center;
}

@media (max-width: 900px) {
    .instructors-grid {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .instructors-grid {
        grid-template-columns: 1fr;
    }
}

.instructor-card {
    text-align: center;
}

.instructor-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 4px solid var(--bg-light-gray);
    filter: saturate(10%);
}

.instructor-image-main {
    width: 250px;
    height: 250px;
}

.instructor-image:hover {
    border-color: var(--primary-blue);
    transform: scale(1.05);
    transition: all 0.3s ease;
    filter: saturate(1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}


.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark-blue);
    margin-bottom: 0.1rem;
    font-weight: 700;
}

.instructor-card h4 {
    margin: 0 0 0.75em;
}

.instructor-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-light-gray);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--border-gray);
    top: 0;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
    padding-right: 3rem;
    padding-left: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 4px 15px rgba(152, 0, 0, 0.3);
}

.step-content {
    flex: 1;
    padding-left: 3rem;
}

.step-content h4 {
    color: var(--primary-dark-blue);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Success Stories Section */
.success-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 20%, rgba(152, 0, 0, 0.1) 0%, transparent 50%);
}

.success-content {
    position: relative;
    z-index: 1;
}

.success-stories .section-title {
    color: var(--bg-white);
}

.success-stories .section-subtitle {
    color: rgba(255,255,255,0.9);
}

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

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255,255,255,0.15);
    border-color: var(--light-red);
}

.quote-icon {
    font-size: 3rem;
    color: var(--light-red);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--light-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bg-white);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--light-red);
    font-size: 1.1rem;
}

.author-role {
    font-size: 0.95rem;
    opacity: 0.9;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.impact-stat {
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--light-red);
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Enquiry Page Specific Styles */
.enquiry-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--bg-white);
    position: relative;
    margin-top: 65px;
}

.enquiry-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

/* Google Form Container */
.form-container {
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.form-container iframe {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Alternative Contact Info */
.contact-info {
    background: var(--bg-white);
    border-radius: 25px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-info h4 {
    font-size: 1.8rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.contact-method {
    padding: 2rem;
    background: var(--bg-light-gray);
    border-radius: 20px;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.contact-method:hover {
    transform: translateY(-5px);
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-red);
}

.contact-method .icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-method h5 {
    font-size: 1.3rem;
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-method p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-method a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-method a:hover {
    color: var(--secondary-red);
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s;
    font-size: 1rem;
}

.back-button:hover {
    color: var(--secondary-red);
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        width: 100%;
        justify-content: center;
    }

    .program-container,
    .program-container:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .process-timeline::before {
        left: 30px;
    }

    .step-number {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: row;
    }

    .step-content,
    .process-step:nth-child(even) .step-content {
        padding-left: 5rem;
        padding-right: 0;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-img {
        height: 250px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .program-container,
    .program-container:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .process-timeline::before {
        left: 30px;
    }

    .step-number {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: row;
    }

    .step-content,
    .process-step:nth-child(even) .step-content {
        padding-left: 5rem;
        padding-right: 0;
        text-align: left;
    }

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

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

    .form-container {
        /* padding: 2rem; */
    }

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

/* Booking Banner */
.booking-banner {
    background-color: var(--primary-red);
    color: var(--bg-white);
    padding: 12px 0;
}

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

.banner-text {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.banner-button {
    background-color: var(--bg-white);
    color: var(--primary-red);
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.banner-button:hover {
    background-color: var(--bg-light-gray);
    transform: translateY(-1px);
}


/* Mobile responsive */
@media (max-width: 768px) {
    .booking-banner {
        padding: 10px 0;
    }

    .banner-content {
        gap: 15px;
    }

    .banner-text {
        font-size: 14px;
    }

    .banner-button {
        font-size: 13px;
        padding: 6px 16px;
    }
}

/* Footer Styles */
footer {
    background-color: var(--bg-light-gray);
    color: var(--text-dark);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-about {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-gray);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Social Media Links */
.social-links-footer {
    display: flex;
    margin-top: 1rem;
}

.social-links-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light-gray);
    transition: all 0.3s ease;
}

.social-links-footer a svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-dark-blue);
    transition: fill 0.3s ease;
}

.social-links-footer a:hover {
    background-color: var(--lightest-red);
    transform: translateY(-2px);
}

.social-links-footer a:hover svg {
    fill: var(--primary-red);
}

/* Footer Affiliates */
.footer-affiliates {
    text-align: center;
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-gray);
}

.footer-affiliates h4 {
    color: var(--primary-dark-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.affiliate-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.affiliate-logos img {
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.affiliate-logos a:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Additional Responsive Styles for Nav and Footer */
@media (max-width: 900px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-nav-container {
        display: flex;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mobile-cta {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 35px;
    }
}