/* GOP INVEST - Main Stylesheet */
/* Color Scheme: American Patriot / Republican */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0A3161;
    --primary-red: #B31942;
    --accent-gold: #C99700;
    --light-gray: #f8f9fa;
    --dark-gray: #333;
    --medium-gray: #7D7D7D;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-red);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    max-width: 640px;
    margin: 0.75rem auto 0;
    color: var(--medium-gray);
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease-out,
                transform 0.45s ease-out;
    will-change: opacity, transform;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.04s; }
.reveal-delay-2 { transition-delay: 0.08s; }
.reveal-delay-3 { transition-delay: 0.12s; }
.reveal-delay-4 { transition-delay: 0.16s; }
.reveal-delay-5 { transition-delay: 0.2s; }

body:not(.js-enabled) .reveal {
    opacity: 1;
    transform: none;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #8a1433 100%);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 4px 12px rgba(179, 25, 66, 0.3),
                0 2px 6px rgba(179, 25, 66, 0.2);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, #8a1433 0%, #6b0f27 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(179, 25, 66, 0.4),
                0 4px 12px rgba(179, 25, 66, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
                0 4px 16px rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a:hover:after {
    width: 100%;
}

/* FIXED: Login Button Text Visibility */
.login-btn {
    background: var(--primary-blue);
    color: var(--white) !important; /* Force white text */
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
}

.login-btn:hover {
    background: var(--primary-red);
    color: var(--white) !important;
}

.login-btn:after {
    display: none; /* Remove underline effect for login button */
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 49, 97, 0.85) 0%, rgba(179, 25, 66, 0.75) 100%),
                url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(179, 25, 66, 0.22) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(10, 49, 97, 0.22) 0%, transparent 50%);
    pointer-events: none;
    animation: heroGlow 14s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    right: -20%;
    top: -10%;
    width: 55%;
    height: 130%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0.35;
    transform: skewX(-18deg);
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        transform: translate3d(-10px, -10px, 0);
    }
    100% {
        transform: translate3d(10px, 10px, 0);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
                 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.6rem;
    opacity: 0.96;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero p + p {
    margin-top: 0.5rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-btns .btn {
    padding: 1rem 2rem;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-container img {
    height: 100px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 10px 30px rgba(0, 0, 0, 0.1),
                0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2),
                0 15px 40px rgba(0, 0, 0, 0.15),
                0 8px 16px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
                0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(10, 49, 97, 0.12),
                0 4px 12px rgba(10, 49, 97, 0.08);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Services Section background pattern */
.services {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10, 49, 97, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 12% 18%, rgba(10, 49, 97, 0.06) 0%, transparent 55%),
        radial-gradient(circle at 88% 82%, rgba(179, 25, 66, 0.05) 0%, transparent 55%),
        repeating-linear-gradient(135deg,
            rgba(10, 49, 97, 0.02) 0px,
            rgba(10, 49, 97, 0.02) 2px,
            transparent 2px,
            transparent 6px);
    opacity: 0.95;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}


/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9) 0%, #ffffff 45%, rgba(243, 246, 251, 1) 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06),
                0 6px 18px rgba(0, 0, 0, 0.04);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(10, 49, 97, 0.04);
    backdrop-filter: blur(8px);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 49, 97, 0.04) 0%, rgba(179, 25, 66, 0.04) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease-out;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 48px rgba(10, 49, 97, 0.12),
                0 8px 26px rgba(10, 49, 97, 0.08);
    border-color: rgba(10, 49, 97, 0.14);
}

.service-icon {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, var(--primary-blue) 0%, #0d4a7a 40%, rgba(0,0,0,0.85) 100%);
    color: var(--white);
    font-size: 2.1rem;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.26) 0%, transparent 55%);
    transition: transform 0.55s ease-out;
}

.service-card:hover .service-icon::before {
    transform: translateX(18%) scale(1.1);
}

.service-content {
    padding: 1.75rem 1.75rem 1.6rem;
    position: relative;
}

.service-meta-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--medium-gray);
    margin-bottom: 0.6rem;
}

.service-meta-label span.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
}

.service-content h3 {
    margin-bottom: 0.7rem;
}

.service-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.portfolio-chart-container {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08),
                0 6px 20px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(10, 49, 97, 0.08);
}

.chart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.25rem;
    align-items: center;
}

.chart-wrapper {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    height: clamp(230px, 45vw, 340px);
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.chart-legend-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 18px rgba(10, 49, 97, 0.06);
    border: 1px solid rgba(10, 49, 97, 0.06);
}

.chart-legend-label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.chart-legend-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.chart-legend-percentage {
    font-weight: 600;
    color: var(--primary-blue);
}

@media (max-width: 900px) {
    .chart-layout {
        grid-template-columns: 1fr;
    }

    .chart-legend {
        margin-top: 1.5rem;
    }

    .chart-wrapper {
        max-width: 460px;
        height: clamp(220px, 70vw, 320px);
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(10, 49, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(179, 25, 66, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

/* Featured testimonial */
.featured-testimonial {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
    gap: 2.25rem;
    margin-top: 2.5rem;
    padding: 2.25rem 2.5rem;
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.98) 0%, #ffffff 45%, rgba(243, 246, 251, 1) 100%);
    border: 1px solid rgba(10, 49, 97, 0.08);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.08),
                0 6px 20px rgba(10, 49, 97, 0.05);
    align-items: center;
}

.featured-testimonial-media {
    display: flex;
    justify-content: center;
}

.featured-testimonial-body {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.featured-testimonial-header h3 {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.featured-name-role {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.featured-name-role .name {
    font-weight: 600;
}

.featured-name-role .role {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* FAQ Section */
.faq {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    max-width: 980px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 14px;
    padding: 1.75rem 1.9rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06),
                0 6px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(10, 49, 97, 0.06);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 42px rgba(10, 49, 97, 0.12),
                0 8px 22px rgba(10, 49, 97, 0.08);
    border-color: rgba(10, 49, 97, 0.16);
}

.faq-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.faq-item p {
    margin-bottom: 0;
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-items {
        gap: 1.25rem;
    }

    .faq-item {
        padding: 1.4rem 1.5rem;
    }
}


.featured-quote-text {
    font-size: 0.98rem;
    color: var(--dark-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08),
                0 5px 20px rgba(0, 0, 0, 0.05),
                0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(10, 49, 97, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(10, 49, 97, 0.1),
                0 8px 22px rgba(10, 49, 97, 0.07);
    border-color: rgba(10, 49, 97, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(10, 49, 97, 0.2);
    overflow: hidden;
    position: relative;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.05);
    box-shadow: 0 4px 18px rgba(10, 49, 97, 0.22);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.testimonial-title {
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.testimonial-content {
    position: relative;
    padding-left: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -5px;
    left: 0;
    color: var(--primary-red);
    opacity: 0.2;
    font-size: 1.5rem;
}

.testimonial-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d4a7a 50%, #7D7D7D 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(179, 25, 66, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(10, 49, 97, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact h2, .contact h3, .contact h4 {
    color: var(--white);
}

.contact h2:after {
    background: var(--accent-gold);
}

.contact-container {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    margin-right: 1rem;
    color: var(--accent-gold);
    font-size: 1.2rem;
    min-width: 20px;
}

.contact-item h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    color: var(--white);
    font-family: Arial, sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 6px 20px rgba(201, 151, 0, 0.3),
                0 0 0 3px rgba(201, 151, 0, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact .btn {
    background: var(--accent-gold);
    color: var(--primary-blue);
    font-weight: 700;
}

.contact .btn:hover {
    background: #b8860b;
    color: var(--primary-blue);
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    list-style: none;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links li {
    margin: 0 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 800px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content, .contact-container {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .chart-wrapper {
        height: 250px;
    }

    .featured-testimonial {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
        padding: 2rem 2.1rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
        padding: 0.8rem 0;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links li {
        margin: 0.3rem 0;
    }

    .featured-testimonial {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-testimonial-body {
        align-items: center;
    }

    .featured-meta {
        flex-direction: column;
        align-items: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .chart-wrapper {
        height: 200px;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-content {
        padding-left: 0;
        text-align: center;
    }

    .quote-icon {
        position: relative;
        display: block;
        margin-bottom: 0.5rem;
    }
}