:root {
    --primary-green: #1a5d1a;
    --secondary-green: #2e8b2e;
    --accent-gold: #d4af37;
    --dark-navy: #0a1628;
    --light-cream: #f8f5f0;
    --stadium-red: #c41e3a;
    --track-orange: #e65c00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.set img {
    height: 80px;
}

.aboutimg img {
    width: 100%;
    height: 450px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border: 4px solid var(--accent-gold);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--dark-navy), #152238);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 22, 40, 0.98);
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .stadium-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-navy);
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 60%;
}

.dropdown-menu {
    background: var(--dark-navy);
    border: 1px solid var(--accent-gold);
    border-radius: 0;
}

.dropdown-item {
    color: #fff;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--accent-gold);
    color: var(--dark-navy);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, var(--dark-navy), #1a3a5c, var(--primary-green));
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1), transparent 50%), radial-gradient(circle at 80% 20%, rgba(34, 139, 34, 0.15), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark-navy);
    padding: 8px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--accent-gold);
    display: block;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Buttons */
.btn-primary-custom {
    background: var(--accent-gold);
    color: var(--dark-navy);
    border: none;
    padding: 15px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: #e8c547;
    color: var(--dark-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid var(--accent-gold);
    padding: 13px 38px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--accent-gold);
    color: var(--dark-navy);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--dark-navy);
    color: #fff;
}

.section-light {
    background: var(--light-cream);
}

.section-green {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark-navy);
    padding: 5px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* About Section */
.about-image-container {
    position: relative;
    padding: 20px;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-left: 4px solid var(--accent-gold);
    border-top: 4px solid var(--accent-gold);
}

.about-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-right: 4px solid var(--accent-gold);
    border-bottom: 4px solid var(--accent-gold);
}

.about-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
}

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-navy);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-navy);
    flex-shrink: 0;
}

.about-feature-text {
    font-weight: 600;
    color: var(--dark-navy);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 50%;
    border: 4px solid var(--dark-navy);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-year {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--accent-gold);
    transform: scale(1.1) rotate(10deg);
}

.service-card h4 {
    font-size: 1.4rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Why Choose Cards */
.why-choose-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    height: 100%;
}

.why-choose-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.why-choose-number {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 15px;
}

.why-choose-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.why-choose-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Mission Vision Cards */
.mv-card {
    background: #fff;
    padding: 50px 40px;
    /* text-align: center; */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--accent-gold);
    position: relative;
}

.mv-icon::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px dashed var(--accent-gold);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.mv-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Staff Cards */
.staff-card {
    background: #fff;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.staff-image {
    height: 250px;
    background: linear-gradient(135deg, var(--dark-navy), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

.staff-content {
    padding: 25px;
    position: relative;
}

.staff-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--accent-gold);
}

.staff-content h4 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-top: 10px;
    margin-bottom: 5px;
}

.staff-role {
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.staff-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.staff-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.staff-social a {
    width: 35px;
    height: 35px;
    background: var(--light-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.staff-social a:hover {
    background: var(--accent-gold);
    color: #fff;
}

/* Event Cards */
.event-card {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.event-image {
    height: 200px;
    background: linear-gradient(135deg, var(--stadium-red), var(--track-orange));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: var(--dark-navy);
    padding: 10px 15px;
    text-align: center;
}

.event-date .day {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 25px;
}

.event-category {
    display: inline-block;
    background: var(--light-cream);
    color: var(--primary-green);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.event-content h4 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.event-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-meta {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 0.9rem;
}

.event-meta i {
    color: var(--accent-gold);
    margin-right: 5px;
}

/* Blog Cards */
.blog-card {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #888;
    font-size: 0.85rem;
}

.blog-meta i {
    color: var(--accent-gold);
    margin-right: 5px;
}

.blog-content h4 {
    font-size: 1.25rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h4 a:hover {
    color: var(--accent-gold);
}

.blog-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-green);
    gap: 15px;
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    height: 100%;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: var(--accent-gold);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-navy);
    font-weight: 700;
}

.testimonial-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-info span {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-top: 10px;
    color: var(--accent-gold);
}

/* Achievement Cards */
.achievement-card {
    background: linear-gradient(135deg, var(--dark-navy), #152238);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    color: #fff;
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.achievement-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.achievement-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Contact Section */
.contact-info-card {
    background: var(--dark-navy);
    padding: 40px;
    height: 100%;
    color: #fff;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-navy);
    flex-shrink: 0;
}

.contact-info-text h5 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-info-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: var(--accent-gold);
    color: var(--dark-navy);
    transform: translateY(-5px);
}

.contact-form {
    background: #fff;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin-bottom: 30px;
}

.form-control {
    background: var(--light-cream);
    border: 2px solid transparent;
    border-radius: 0;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: #fff;
    border-color: var(--accent-gold);
    box-shadow: none;
}

.form-label {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: #fff;
    padding-top: 80px;
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo span {
    width: 45px;
    height: 45px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark-navy);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 15px 20px;
    color: #fff;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: var(--accent-gold);
    color: var(--dark-navy);
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #e8c547;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 60px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-navy);
    color: var(--accent-gold);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px;
    }

    .timeline-dot {
        left: 11px !important;
        right: auto !important;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}