/* Project124 Africa - Django Implementation - Screenshot Match */

:root {
    --primary-red: #8b2635;
    --secondary-orange: #f4a261;
    --accent-yellow: #f4a261;
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
}

* {
    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: #333;
}

/* Top Header Bar */
.top-header-bar {
    background-color: var(--primary-red);
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    z-index: 10;
}

.contact-text {
    color: var(--accent-yellow);
    font-weight: 500;
}

.social-icons-top {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-icon {
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-yellow);
}

/* Main Navigation - Transparent over Hero */
.main-navigation {
    background-color: transparent;
    padding: 15px 0;
    position: absolute;
    top: 50px;
    /* Height of top header bar */
    left: 0;
    right: 0;
    z-index: 100;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand-section {
    flex: 0 0 auto;
}

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

.navbar-menu-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Changed from center to flex-end */
    padding-right: 50px;
    /* Add padding to move items away from auth section */
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 50px;
    /* Increased from 40px to 50px */
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0;
    display: block;
}

.nav-link:hover {
    color: var(--accent-yellow) !important;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 10px;
    margin-left: 8px;
    opacity: 0.7;
}

.navbar-auth-section {
    flex: 0 0 auto;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-btn {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
}

.login-btn:hover {
    color: var(--accent-yellow);
}

.signup-btn {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background-color: #e76f51;
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mega Menu Styles */
.mega-dropdown {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin: 8px 24px;
    padding: 32px;
    border: none;
    min-width: auto;
    width: auto;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mega-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Contact Mega Menu Styles */
.mega-menu-content {
    padding: 0;
    margin: 0;
}

.contact-form-section {
    padding: 40px;
    background: white;
    height: 100%;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-form .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-input {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.contact-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.contact-input::placeholder {
    color: #adb5bd;
}

.contact-select {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: 40px;
    appearance: none;
}

.contact-select:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.input-group .contact-select {
    max-width: 80px;
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.input-group .contact-input {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.contact-checkbox {
    margin-right: 8px;
}

.contact-check-label {
    font-size: 0.9rem;
    color: #666;
}

.contact-submit-btn {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: #e76f51;
    color: white;
    transform: translateY(-2px);
}

/* Special Offers Section */
.special-offers-section {
    height: 100%;
    padding: 40px 30px;
    background: #f8f9fa;
}

.offers-title {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.offer-card {
    position: relative;
    background: var(--primary-red);
    border-radius: 16px;
    overflow: hidden;
    height: calc(100% - 60px);
    min-height: 500px;
}

.offer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.offer-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.9) 0%, rgba(139, 38, 53, 0.7) 100%);
    z-index: 2;
}

.offer-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.offer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.offer-logo {
    width: 60px;
    height: 60px;
}

.logo-white {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
    line-height: 1.1;
    margin-bottom: 15px;
}

.offer-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.5;
}

.offer-services {
    margin-bottom: 20px;
}

.services-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

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

.services-list li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.services-list li::before {
    content: "✓";
    color: var(--accent-yellow);
    font-weight: bold;
    margin-right: 8px;
}

.offer-contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.contact-icon {
    margin-right: 8px;
    font-size: 1rem;
}

.offer-image-container {
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 120px;
    height: 150px;
}

.advisor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.offer-cta-btn {
    background-color: var(--primary-red);
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.offer-cta-btn:hover {
    background-color: white;
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* Responsive Design for Contact Mega Menu */
@media (max-width: 992px) {
    .mega-menu-content .row {
        flex-direction: column;
    }

    .contact-form-section {
        padding: 30px;
    }

    .special-offers-section {
        padding: 30px;
    }

    .offer-card {
        min-height: 400px;
    }

    .offer-main-title {
        font-size: 2rem;
    }

    .offer-image-container {
        width: 100px;
        height: 120px;
        bottom: 70px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 20px;
    }

    .special-offers-section {
        padding: 20px;
    }

    .offer-content {
        padding: 20px;
    }

    .offer-main-title {
        font-size: 1.8rem;
    }

    .offer-image-container {
        position: relative;
        width: 80px;
        height: 100px;
        bottom: auto;
        right: auto;
        margin: 15px auto 0;
    }
}

/* Blog Mega Menu Styles */
.blog-mega-menu {
    padding: 40px;
    background: white;
    border-radius: 16px;
    min-height: 500px;
}

.mega-menu-header {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #9ca3af;
    margin-bottom: 30px;
}

/* Feature Cards */
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f3f4f6;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 20px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Promotional Banner */
.promo-banner {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Popular Courses Section */
.popular-courses-section {
    padding-left: 30px;
}

.section-header {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #9ca3af;
}

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.browser-header {
    background: #f3f4f6;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.browser-content {
    padding: 24px;
    min-height: 120px;
}

.course-placeholder {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.placeholder-line {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
}

.placeholder-line.long {
    width: 80%;
}

.placeholder-line.medium {
    width: 60%;
}

.placeholder-line.short {
    width: 40%;
}

.placeholder-icons {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.placeholder-icon {
    width: 24px;
    height: 24px;
    background: #d1d5db;
    border-radius: 4px;
}

/* Course Features */
.course-features {
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon i {
    color: white;
    font-size: 12px;
}

.feature-text {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

/* See All Link */
.see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.see-all-btn:hover {
    color: #3b82f6;
    text-decoration: none;
}

.see-all-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.see-all-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design for Blog Mega Menu */
@media (max-width: 992px) {
    .blog-mega-menu {
        padding: 30px;
    }

    .popular-courses-section {
        padding-left: 0;
        margin-top: 40px;
    }

    .feature-card {
        padding: 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .blog-mega-menu {
        padding: 20px;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .blog-mega-menu .row.g-3>* {
        margin-bottom: 16px;
    }

    .browser-content {
        padding: 16px;
        min-height: 100px;
    }

    .placeholder-icons {
        margin-top: 12px;
    }

    .placeholder-icon {
        width: 20px;
        height: 20px;
    }
}

/* About Mega Menu Styles */
.about-mega-menu {
    padding: 40px;
    background: white;
    border-radius: 16px;
    min-height: 500px;
}

/* Mission Card */
.mission-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-icon i {
    color: white;
    font-size: 20px;
}

.mission-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.mission-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Stat Cards */
.stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 4px;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

/* Leadership Section */
.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.team-member-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.team-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.team-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.team-role {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

/* About Sidebar */
.about-sidebar {
    padding-left: 30px;
}

/* Values Section */
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.value-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon.impact {
    background: var(--primary-red);
}

.value-icon.community {
    background: var(--accent-yellow);
}

.value-icon.excellence {
    background: #3b82f6;
}

.value-icon i {
    color: white;
    font-size: 14px;
}

.value-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.value-description {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

/* Quick Links */
.quick-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    text-decoration: none;
    color: #1f2937;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    color: #3b82f6;
    text-decoration: none;
}

.quick-link-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-link-content i {
    font-size: 14px;
    color: #6b7280;
}

.quick-link-content span {
    font-size: 0.9rem;
    font-weight: 500;
}

.quick-link-item i.fa-arrow-right {
    font-size: 12px;
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.quick-link-item:hover i.fa-arrow-right {
    transform: translateX(4px);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--primary-red) 0%, #bf5b00 100%);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.cta-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.cta-btn {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #e76f51;
    color: white;
    transform: translateY(-2px);
}

/* Services Mega Menu Styles */
.services-mega-menu {
    padding: 40px;
    background: white;
    border-radius: 16px;
    min-height: 600px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-category-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-category-card:hover {
    border-color: #e5e7eb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-category-card.advisory:hover {
    border-color: #fbbf24;
}

.service-category-card.funding:hover {
    border-color: #10b981;
}

.service-category-card.training:hover {
    border-color: #3b82f6;
}

.service-category-card.mentorship:hover {
    border-color: #8b5cf6;
}

.service-category-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.service-category-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-category-card.advisory .service-category-icon {
    background: #fef3c7;
    color: #d97706;
}

.service-category-card.funding .service-category-icon {
    background: #d1fae5;
    color: #059669;
}

.service-category-card.training .service-category-icon {
    background: #dbeafe;
    color: #2563eb;
}

.service-category-card.mentorship .service-category-icon {
    background: #ede9fe;
    color: #7c3aed;
}

.service-category-icon i {
    font-size: 18px;
}

.service-category-info {
    flex: 1;
}

.service-category-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.service-category-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.service-price {
    text-align: right;
}

.price-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #4b5563;
}

.service-feature i {
    color: #10b981;
    font-size: 12px;
    flex-shrink: 0;
}

/* Services Sidebar */
.services-sidebar {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Featured Service Card */
.featured-service-card {
    background: linear-gradient(135deg, var(--primary-red) 0%, #bf5b00 100%);
    border-radius: 16px;
    padding: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.featured-service-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: var(--accent-yellow);
    color: var(--primary-red);
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.featured-service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    margin-top: 12px;
}

.featured-service-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    line-height: 1.5;
}

.featured-service-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.price-period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 4px;
}

.includes-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

.includes-list i {
    color: var(--accent-yellow);
    font-size: 12px;
}

.featured-service-btn {
    background: white;
    color: var(--primary-red);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s ease;
}

.featured-service-btn:hover {
    background: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Service Testimonial Card */
.service-testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    margin-bottom: 12px;
}

.testimonial-quote i {
    font-size: 24px;
    color: var(--accent-yellow);
}

.testimonial-text {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.author-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #9ca3af;
}

.author-location i {
    font-size: 10px;
}

/* Quick Contact Card */
.quick-contact-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.contact-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.contact-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.contact-actions {
    display: flex;
    gap: 12px;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn.primary {
    background: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
}

.contact-btn.primary:hover {
    background: #7a1f2a;
    border-color: #7a1f2a;
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

.contact-btn.secondary {
    background: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.contact-btn.secondary:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-1px);
    text-decoration: none;
}

.contact-btn i {
    font-size: 12px;
}

/* Responsive Design for Services Mega Menu */
@media (max-width: 992px) {
    .services-mega-menu {
        padding: 30px;
    }

    .services-sidebar {
        padding-left: 0;
        margin-top: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-btn {
        flex: none;
    }
}

@media (max-width: 768px) {
    .services-mega-menu {
        padding: 20px;
    }

    .service-category-card {
        padding: 16px;
    }

    .featured-service-card {
        padding: 20px;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .service-testimonial-card {
        padding: 16px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .service-category-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .service-price {
        text-align: center;
    }

    .featured-service-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-bottom: 12px;
    }
}

/* Hero Section - Extended Background with Integrated Stats */
.hero-section {
    background-color: var(--primary-red);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-top: 0;
    display: flex;
    flex-direction: column;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.background-pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-main-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 120px;
    /* Space for navigation */
    padding-bottom: 20px;
}

.hero-content {
    color: white;
    padding-right: 50px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-start-journey {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
}

.btn-start-journey:hover {
    background-color: #e76f51;
    color: white;
    transform: translateY(-2px);
}

.btn-watch-story {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-watch-story:hover {
    background-color: white;
    color: var(--primary-red);
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chef-image {
    position: relative;
    z-index: 2;
}

.chef-img {
    height: 450px;
    width: auto;
    object-fit: contain;
}

/* Floating Social Cards */
.social-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    animation: float 3s ease-in-out infinite;
}

.likes-card {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.followers-card {
    top: 40%;
    left: -15%;
    animation-delay: 1s;
}

.reach-card {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.likes-card .card-icon {
    background-color: #ff6b6b;
    color: white;
}

.followers-card .card-icon {
    background-color: #4ecdc4;
    color: white;
}

.reach-card .card-icon {
    background-color: #45b7d1;
    color: white;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.card-number {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.card-growth {
    font-size: 11px;
    color: #4caf50;
    font-weight: 500;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Stats Section - Compact and Visible on Load */
.hero-stats-section {
    background-color: white;
    padding: 5px 0;
    /* Compact padding */
    position: relative;
    z-index: 3;
    margin: 0 -15px;
    /* Extend to container edges */
}

/* Ensure full width coverage beyond container */
.hero-stats-section::before {
    content: "";
    position: absolute;
    left: -100vw;
    right: -100vw;
    top: 0;
    bottom: 0;
    background-color: white;
    z-index: -1;
}

.stat-item {
    text-align: center;
    padding: 10px 5px;
    /* Compact padding */
}

.stat-number {
    font-size: 2.5rem;
    /* Reduced from 3rem */
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 5px;
    /* Reduced margin */
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    /* Slightly smaller */
    color: #666;
    font-weight: 500;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.pillars-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.pillars-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-align: center;
}

.pillars-section .section-description {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

.pillar-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    border-top: 6px solid var(--primary-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.pillar-card.visibility-card {
    border-top-color: #8b2635;
}

.pillar-card.impact-card {
    border-top-color: #d2691e;
}

.pillar-card.profitability-card {
    border-top-color: #f4a261;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 32px;
}

.pillar-icon.visibility-icon {
    background-color: #8b2635;
}

.pillar-icon.impact-icon {
    background-color: #d2691e;
}

.pillar-icon.profitability-icon {
    background-color: #f4a261;
}

.pillar-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.pillar-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pillar-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pillar-features li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    padding-left: 0;
}

.pillar-features li::before {
    content: "• ";
    color: #333;
    font-weight: bold;
    margin-right: 8px;
}

/* Partners Section */
.partners-section {
    background: white;
    padding: 80px 0;
}

.partners-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-align: center;
}

.partners-section .section-description {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 150px;
}

/* Special styling for circular logos */
.partner-logo.circular img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

/* Flagship Initiatives Section */
.flagship-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.flagship-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-align: center;
}

.flagship-section .section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

.flagship-initiatives-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.flagship-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flagship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.flagship-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 350px;
}

.flagship-card-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.flagship-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.flagship-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-annual {
    background-color: var(--primary-red);
    color: white;
}

.badge-ongoing {
    background-color: #49a847;
    color: white;
}

.flagship-text-content {
    padding: 40px;
}

.flagship-text-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.flagship-text-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.flagship-details {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.flagship-details li {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 6px;
    font-weight: 500;
}

.flagship-details li::before {
    content: "• ";
    color: var(--primary-red);
    font-weight: bold;
    margin-right: 8px;
}

.flagship-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

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

.stat-block .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    display: block;
    line-height: 1;
}

.stat-block .stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

.btn-flagship {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-flagship.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
}

.btn-flagship.btn-primary:hover {
    background-color: #e76f51;
    color: white;
    transform: translateY(-2px);
}

.btn-flagship.btn-success {
    background-color: #49a847;
    color: white;
}

.btn-flagship.btn-success:hover {
    background-color: #3d8a3b;
    transform: translateY(-2px);
}

/* Responsive Design for Flagship Section */
@media (max-width: 992px) {
    .flagship-card-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .flagship-card-content.reverse {
        grid-template-columns: 1fr;
    }

    .flagship-card-content.reverse .flagship-image {
        order: 1;
    }

    .flagship-card-content.reverse .flagship-text-content {
        order: 2;
    }

    .flagship-image {
        height: 250px;
    }

    .flagship-text-content {
        padding: 30px;
    }

    .flagship-text-content h3 {
        font-size: 1.7rem;
    }

    .flagship-stats {
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .flagship-section {
        padding: 60px 0;
    }

    .flagship-section .section-title {
        font-size: 2.2rem;
    }

    .flagship-text-content {
        padding: 25px;
    }

    .flagship-text-content h3 {
        font-size: 1.5rem;
    }

    .flagship-stats {
        gap: 15px;
        flex-direction: column;
    }

    .stat-block .stat-number {
        font-size: 2rem;
    }

    .flagship-initiatives-container {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .flagship-section {
        padding: 60px 0;
    }

    .flagship-section .section-title {
        font-size: 2.2rem;
    }

    .flagship-text-content {
        padding: 25px;
    }

    .flagship-text-content h3 {
        font-size: 1.5rem;
    }

    .flagship-stats {
        gap: 15px;
        flex-direction: column;
    }

    .stat-block .stat-number {
        font-size: 2rem;
    }

    .flagship-initiatives-container {
        gap: 30px;
    }
}

/* Sector-Focused Programs Section */
.sector-programs-section {
    background: white;
    padding: 80px 0;
}

.section-badge {
    display: inline-block;
    background-color: #49a847;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

.sector-programs-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.sector-programs-section .section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

.program-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-top: 6px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.program-card.food-program {
    border-top-color: var(--primary-red);
}

.program-card.baby-program {
    border-top-color: #d2691e;
}

.program-card.education-program {
    border-top-color: var(--accent-yellow);
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.program-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.program-features li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    padding-left: 0;
}

.program-features li::before {
    content: "• ";
    color: #333;
    font-weight: bold;
    margin-right: 8px;
}

.btn-program {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--accent-yellow);
    color: var(--primary-red);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
}

.btn-program:hover {
    background-color: #e76f51;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design for Sector Programs */
@media (max-width: 992px) {
    .sector-programs-section {
        padding: 60px 0;
    }

    .sector-programs-section .section-title {
        font-size: 2.5rem;
    }

    .program-card {
        padding: 30px 25px;
    }

    .program-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .sector-programs-section .section-title {
        font-size: 2.2rem;
    }

    .program-card {
        padding: 25px 20px;
    }

    .program-card h3 {
        font-size: 1.3rem;
    }

    .program-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .sector-programs-section {
        padding: 50px 0;
    }

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

    .program-card {
        margin-bottom: 30px;
    }
}

/* Success Stories Section */
.success-stories-section {
    background-color: var(--primary-red);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.success-stories-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.success-stories-background .background-pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.success-stories-section .container {
    position: relative;
    z-index: 2;
}

.success-stories-badge {
    display: inline-block;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.success-stories-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.success-stories-description {
    font-size: 1.2rem;
    color: white;
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

/* Testimonials Carousel */
.testimonials-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-carousel {
    overflow: hidden;
    padding: 0 20px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.testimonial-avatar {
    margin-bottom: 25px;
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 30px;
    flex: 1;
}

.testimonial-author {
    margin-top: auto;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design for Success Stories */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }

    .success-stories-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 0px);
        min-height: 300px;
    }

    .success-stories-section {
        padding: 60px 0;
    }

    .success-stories-title {
        font-size: 2.5rem;
    }

    .success-stories-description {
        font-size: 1.1rem;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonials-track {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .success-stories-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 25px 20px;
        min-height: 280px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

footer::before {
    content: "";
    background: red;
    width: 200%;
    position: absolute;
    left: 50%;
    top: -100%;
    transform: translateX(-50%);
    height: 1000%;
    border-radius: 50%;
    z-index: -1;
}

/* Footer */
.main-footer {
    background-color: var(--primary-red);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Footer Background with African Pattern */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.footer-pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    /* Increased from 0.15 to 0.25 for more intensity */
}

.main-footer .container {
    position: relative;
    z-index: 2;
}

/* Newsletter Section with Full-Width Curved Top */
.newsletter-section {
    padding: 80px 0 60px;
    position: relative;
    z-index: 2;
    margin-top: -80px;
    background-color: rgba(139, 38, 53, 0.95);
}

/* Full-width curved top edge */
.newsletter-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(139, 38, 53, 0.95);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    z-index: -1;
}

/* Remove the ::after element as it's no longer needed */
.newsletter-section::after {
    display: none;
}

.newsletter-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.newsletter-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-input-group {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #e76f51;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.4);
}

/* Footer Content */
.footer-content {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
    background-color: rgba(139, 38, 53, 0.9);
    /* Added semi-transparent overlay for more color intensity */
}

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

.footer-logo {
    height: 50px;
    width: auto;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
}

.footer-links a.arrow-link:hover {
    color: var(--accent-yellow);
}

.footer-links a i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.new-badge {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
}

.new-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    background-color: rgba(139, 38, 53, 0.9);
    /* Added semi-transparent overlay for more color intensity */
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Responsive Design for Footer */
@media (max-width: 992px) {
    .newsletter-section {
        padding: 70px 0 50px;
        margin-top: -70px;
    }

    .newsletter-section::before {
        top: -70px;
        height: 70px;
        border-radius: 0 0 50% 50% / 0 0 100% 100%;
    }

    .newsletter-section::after {
        top: -50px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0 40px;
        margin-top: -60px;
    }

    .newsletter-section::before {
        top: -60px;
        height: 60px;
        border-radius: 0 0 50% 50% / 0 0 100% 100%;
    }

    .newsletter-section::after {
        top: -40px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: 50px 0 30px;
        margin-top: -50px;
    }

    .newsletter-section::before {
        top: -50px;
        height: 50px;
        border-radius: 0 0 50% 50% / 0 0 100% 100%;
    }

    .newsletter-section::after {
        top: -35px;
        height: 50px;
    }
}

/* Join Our Community Section */
.community-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.community-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-align: center;
}

.community-section .section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

.community-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.community-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.community-card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.community-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.community-features li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    padding-left: 0;
}

.community-features li::before {
    content: "• ";
    color: #333;
    font-weight: bold;
    margin-right: 8px;
}

.community-signup {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.community-email-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.community-email-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

.btn-community {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.btn-subscribe {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
}

.btn-subscribe:hover {
    background-color: #e76f51;
    color: white;
    transform: translateY(-2px);
}

.btn-watch {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
}

.btn-watch:hover {
    background-color: #e76f51;
    color: white;
    transform: translateY(-2px);
}

.btn-join {
    background-color: var(--primary-red);
    color: white;
}

.btn-join:hover {
    background-color: #7a1f2a;
    transform: translateY(-2px);
}

/* Innovative Masterclasses Section */
.masterclasses-section {
    background: white;
    padding: 80px 0;
}

.masterclasses-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-align: center;
}

.underlined {
    text-decoration: underline;
    text-decoration-color: var(--primary-red);
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
}

.masterclasses-section .section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

.masterclass-card {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.masterclass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.masterclass-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

.masterclass-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.masterclass-card:hover .masterclass-image img {
    transform: scale(1.05);
}

.masterclass-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.masterclass-badge.interactive {
    background-color: var(--primary-red);
    color: white;
}

.masterclass-badge.online {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
}

.play-button-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 3;
    cursor: pointer;
}

.play-button-bottom:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.masterclass-text-overlay {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    max-width: 60%;
    z-index: 2;
}

.masterclass-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Masterclasses */
@media (max-width: 992px) {
    .masterclasses-section {
        padding: 60px 0;
    }

    .masterclasses-section .section-title {
        font-size: 2.5rem;
    }

    .masterclass-image {
        height: 250px;
    }

    .masterclass-title {
        font-size: 1.5rem;
    }

    .masterclass-text-overlay {
        max-width: 55%;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .masterclasses-section .section-title {
        font-size: 2.2rem;
    }

    .masterclass-image {
        height: 200px;
    }

    .masterclass-title {
        font-size: 1.3rem;
    }

    .play-button-bottom {
        width: 45px;
        height: 45px;
        font-size: 16px;
        bottom: 15px;
        left: 15px;
    }

    .masterclass-text-overlay {
        max-width: 50%;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .masterclasses-section {
        padding: 50px 0;
    }

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

    .masterclass-title {
        font-size: 1.1rem;
    }

    .play-button-bottom {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .masterclass-text-overlay {
        max-width: 45%;
    }
}

/* Responsive Design for Community and Masterclasses */
@media (max-width: 992px) {
    .community-section {
        padding: 60px 0;
    }

    .community-section .section-title,
    .masterclasses-section .section-title {
        font-size: 2.5rem;
    }

    .community-card {
        padding: 30px 25px;
    }

    .masterclasses-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {

    .community-section .section-title,
    .masterclasses-section .section-title {
        font-size: 2.2rem;
    }

    .community-card {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .community-card-title {
        font-size: 1.4rem;
    }

    .community-card-description {
        font-size: 0.95rem;
    }

    .masterclass-image {
        height: 200px;
    }

    .masterclass-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {

    .community-section,
    .masterclasses-section {
        padding: 50px 0;
    }

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

    .community-signup {
        gap: 12px;
    }

    .masterclass-content {
        padding: 20px 15px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* Animation for page load */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrolled Navigation State */
.main-navigation.scrolled {
    background-color: rgba(139, 38, 53, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Curvy Underline for Masterclasses */
.underlined-curvy {
    position: relative;
    display: inline-block;
}

.underlined-curvy::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-red);
    border-radius: 50px;
    transform: rotate(-1deg) scaleY(0.8);
}

/* Enhanced Masterclass Cards with Color Overlay */
.masterclass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(139, 38, 53, 0.6) 0%,
            rgba(244, 162, 97, 0.4) 50%,
            rgba(139, 38, 53, 0.7) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.masterclass-card:hover .masterclass-overlay {
    opacity: 0.9;
}

/* Ready to Transform Your Idea Section - Solid Colors */
.transform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 32px;
    transition: transform 0.3s ease;
}

.transform-card:hover .transform-icon {
    transform: scale(1.1);
}

.apply-icon {
    background-color: var(--accent-yellow);
}

.partner-icon {
    background-color: var(--accent-yellow);
}

.invest-icon {
    background-color: #6a994e;
}

.btn-transform {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
    min-width: 150px;
}

.btn-apply {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
}

.btn-apply:hover {
    background-color: #e76f51;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.4);
    text-decoration: none;
}

.btn-partner {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
}

.btn-partner:hover {
    background-color: #e76f51;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.4);
    text-decoration: none;
}

.btn-invest {
    background-color: #6a994e;
    color: white;
}

.btn-invest:hover {
    background-color: #52b788;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 153, 78, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Transform Section */
@media (max-width: 992px) {
    .transform-idea-section {
        padding: 60px 0;
    }

    .transform-idea-section .section-title {
        font-size: 2.5rem;
    }

    .transform-card {
        padding: 35px 25px;
    }

    .transform-card-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .transform-idea-section .section-title {
        font-size: 2.2rem;
    }

    .transform-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .transform-card-title {
        font-size: 1.5rem;
    }

    .transform-card-description {
        font-size: 0.95rem;
    }

    .transform-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .transform-idea-section {
        padding: 50px 0;
    }

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

    .transform-card {
        padding: 25px 15px;
    }

    .transform-card-title {
        font-size: 1.4rem;
    }

    .btn-transform {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* Ready to Transform Your Idea Section - Solid Colors */
.transform-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e1e5e9;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.transform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.transform-card.apply-card:hover {
    border-color: var(--accent-yellow);
}

.transform-card.partner-card:hover {
    border-color: var(--accent-yellow);
}

.transform-card.invest-card:hover {
    border-color: #6a994e;
}

.transform-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.transform-card.apply-card::before {
    background: var(--accent-yellow);
}

.transform-card.partner-card::before {
    background: var(--accent-yellow);
}

.transform-card.invest-card::before {
    background: #6a994e;
}

/* ===== WAITING LIST PAGE STYLES ===== */
.waiting-list-hero {
    background-color: var(--primary-red);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
    padding-top: 120px;
    /* Add space for navigation */
}

.waiting-list-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.waiting-list-hero .background-pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.waiting-list-hero .container {
    position: relative;
    z-index: 2;
    /* Reduce from 10 to 2 */
    flex: 1;
    display: flex;
    align-items: center;
}

.waiting-list-hero .hero-content {
    color: white;
    padding-right: 40px;
}

.waiting-list-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
}

.waiting-list-hero .rocket-3d-showcase {
    margin-left: 15px;
    height: 200px;
    width: auto;
    animation: rocket3DFloat 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    z-index: 1;
}

@keyframes rocket3DFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Remove the old rocket icon styles and replace with 3D version */
.waiting-list-hero .rocket-icon {
    display: none;
}

.waiting-list-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.waiting-list-hero .powered-by-section {
    margin-top: 60px;
}

.waiting-list-hero .powered-by-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 500;
}

.waiting-list-hero .partner-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.waiting-list-hero .partner-logo {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.waiting-list-hero .partner-logo:hover {
    opacity: 1;
}

/* Waiting List Form Styles */
.waiting-list-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.waiting-list-form .form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.waiting-list-form .form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.waiting-list-form .form-group {
    margin-bottom: 25px;
}

.waiting-list-form .form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 8px;
}

.waiting-list-form .required {
    color: #e74c3c;
}

.waiting-list-form .form-control {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.waiting-list-form .form-control:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.waiting-list-form .form-control::placeholder {
    color: #adb5bd;
}

.waiting-list-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: 40px;
    appearance: none;
    cursor: pointer;
}

.waiting-list-form .btn-submit {
    width: 100%;
    background-color: var(--primary-red);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.waiting-list-form .btn-submit:hover {
    background-color: #7a1f2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.3);
}

/* Waiting List Footer Section */
.waiting-list-hero .footer-section {
    background-color: rgba(139, 38, 53, 0.9);
    padding: 20px 0;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.waiting-list-hero .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.waiting-list-hero .footer-left p {
    margin: 0;
}

.waiting-list-hero .footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.waiting-list-hero .footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.waiting-list-hero .footer-link:hover {
    color: white;
}

.waiting-list-hero .separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Waiting List Responsive Design */
@media (max-width: 992px) {
    .waiting-list-hero {
        padding-top: 100px;
        /* Adjust for smaller screens */
    }

    .waiting-list-hero .rocket-3d-showcase {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .waiting-list-hero {
        padding-top: 80px;
    }

    .waiting-list-hero .rocket-3d-showcase {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .waiting-list-hero {
        padding-top: 60px;
    }

    .waiting-list-hero .rocket-3d-showcase {
        height: 50px;
        margin-left: 10px;
    }
}

/* Hide main navigation and footer on waiting list page */
body[data-page="waiting-list"] .top-header-bar,
body[data-page="waiting-list"] .main-navigation,
body[data-page="waiting-list"] .main-footer {
    display: none !important;
}

/* Alternative: Hide footer when waiting-list-hero section is present */
.waiting-list-hero~.main-footer,
.waiting-list-hero+.main-footer {
    display: none !important;
}

/* More specific rule for waiting list page */
.waiting-list-hero {
    /* Ensure the waiting list hero takes full viewport */
    min-height: 100vh;
}

/* Hide footer if it comes after waiting list content */
.waiting-list-hero~*:is(.main-footer, footer.main-footer) {
    display: none !important;
}