/* ==========================================================================
   BorrowBanana - Complete Stylesheet (Logo 80px / 150px Sized)
   ========================================================================== */

:root {
    --primary: #ffcc00;
    --primary-light: #ffe066;
    --primary-dark: #e0b400;
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    --accent-green: #10b981;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 30px 60px -15px rgba(15, 23, 42, 0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Alignment */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    text-align: left;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    font-weight: 800;
}

/* Header & Navigation (Logo 80px) */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

#header.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

.logo-brand {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary);
    font-size: 1.02rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-dark);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-dark);
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--secondary);
}

/* Buttons Alignment */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--secondary);
    box-shadow: 0 10px 20px -5px rgba(255, 204, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(255, 204, 0, 0.6);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--secondary);
}

.btn-outline,
.btn-outline-dark,
.btn-secondary-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover,
.btn-outline-dark:hover,
.btn-secondary-outline:hover {
    background-color: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 38px;
    font-size: 1.08rem;
    border-radius: 14px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section Alignment */
.hero-section-split {
    position: relative;
    height: 100vh;
    min-height: 750px;
    background: var(--white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-visual-wrap {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--white);
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-bg-img.active-bg-img {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 2;
}

.hero-container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 60px;
}

.badge {
    background: rgba(255, 204, 0, 0.2);
    color: #856a00;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 204, 0, 0.4);
}

.scroll-text-track {
    position: relative;
    height: 180px;
    margin-bottom: 30px;
}

.hero-scroll-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.hero-scroll-slide.active-slide {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-scroll-title {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--secondary);
}

.hero-scroll-slide p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-right-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    background: var(--bg-light);
}

.hero-switching-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-switching-img.active-img {
    opacity: 1;
    transform: scale(1);
}

/* Sections & Cards Alignment */
.graphic-box {
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
    background-color: var(--bg-light);
    margin-bottom: 24px;
}

.responsive-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.brand-graphics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.ad-creative-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.ad-creative-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.ad-creative-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.visual-banner-strip {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--primary);
    padding: 24px 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

.strip-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.section {
    padding: 120px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.section-title h2 {
    font-size: 2.6rem;
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 800;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.page-header {
    padding: 180px 0 80px;
    background: var(--white);
    color: var(--secondary);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--secondary);
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.12rem;
    color: var(--text-main);
}

.mission-vision-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    border-left: 6px solid var(--primary);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.card i {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card i span {
    font-weight: 700;
    color: var(--secondary);
    font-style: normal;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.value-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 204, 0, 0.4);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 204, 0, 0.15);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 24px;
}

.value-item h3 {
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 1.25rem;
}

/* Products & Steps Grid Alignment */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.product-card-action {
    margin-top: 30px;
}

.featured-product {
    border: 2px solid var(--primary);
}

.ribbon {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.product-header i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.product-header h3 {
    font-size: 1.5rem;
    color: var(--secondary);
}

.product-desc {
    margin-bottom: 24px;
    color: var(--text-muted);
}

.product-features {
    margin-bottom: 30px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.98rem;
}

.product-features i {
    color: var(--accent-green);
    font-size: 0.9rem;
}

.target-audience {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    border-top: 5px solid var(--primary);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 16px;
}

.step-card h3 {
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 1.25rem;
}

/* FAQ & Contact Alignment */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
}

.faq-question h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    font-weight: 600;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 24px;
    background: var(--bg-light);
}

.faq-answer p {
    padding: 24px 0;
}

.contact-card-centered {
    max-width: 750px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    text-align: center;
}

.contact-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

.contact-info-box p {
    margin-bottom: 36px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--secondary);
}

.contact-list i {
    color: var(--primary-dark);
    font-size: 1.3rem;
}

/* Testimonials Section Styling */
.testimonials-section {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    border-top: 5px solid var(--primary);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.quote-icon {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.08rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 4px;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
}

/* Simplified Airtime & Data Promo Section */
.airtime-promo-section {
    background-color: var(--bg-light) !important;
}

.airtime-promo-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-premium);
}

.airtime-promo-content h2 {
    font-size: 2.4rem;
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 800;
}

.airtime-promo-content p {
    color: var(--text-muted);
    font-size: 1.12rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.supported-networks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.supported-networks span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
}

.net-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--secondary);
}

.airtime-promo-action {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .airtime-promo-card {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        text-align: center;
    }

    .supported-networks {
        align-items: center;
    }

    .airtime-promo-content h2 {
        font-size: 2rem !important;
    }
}

/* Partners Section Styling */
.partners-section {
    background-color: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
    overflow: hidden;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.partner-card {
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.partner-logo {
    max-height: 75px;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

/* Mobile Carousel Fix & Responsiveness */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-track-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 4px 20px 4px;
    }

    .partners-track-wrapper::-webkit-scrollbar {
        display: none;
    }

    .partners-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        width: max-content;
        margin-top: 20px;
        scroll-snap-type: x mandatory;
        padding-left: 4px;
        padding-right: 4px;
    }

    .partner-card {
        flex: 0 0 240px;
        width: 240px;
        height: 130px;
        scroll-snap-align: start;
    }
}

/* CTA & Footer (Footer Logo 150px) */
.cta-section {
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    padding: 130px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-container h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    font-weight: 800;
    color: #ffffff !important;
    opacity: 1 !important;
}

.cta-container p {
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 40px;
}

.btn-breathing {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--secondary);
    font-size: 1.35rem;
    font-weight: 800;
    padding: 20px 48px;
    border-radius: 50px;
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
    animation: breathingPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: transform 0.2s ease;
}

.btn-breathing:hover {
    transform: scale(1.05);
}

@keyframes breathingPulse {
    0% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 24px rgba(255, 204, 0, 0); }
    100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

footer {
    background: var(--white);
    color: var(--secondary);
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.footer-logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 12px auto;
    display: block;
}

.footer-social-contact {
    margin-top: 8px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.footer-logo p {
    color: var(--text-muted);
    margin-top: 4px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
    padding-top: 20px;
    margin-top: 10px;
}

/* Mobile Media Queries & Responsive Alignment */
@media (max-width: 992px) {
    .hero-container-split {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
    }

    .hero-right-visual {
        display: none;
    }

    .hero-bg-visual-wrap {
        display: block;
    }

    .hero-buttons {
        justify-content: center;
    }

    .scroll-text-track {
        height: 220px;
    }

    .hero-scroll-title {
        font-size: 2.2rem !important;
    }

    .section-title h2 {
        font-size: 2.1rem !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-list {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-social-contact p {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .nav-links, .nav-action {
        display: none;
    }

    .nav-links.mobile-menu-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 110px;
        left: 0;
        width: 100%;
        background: var(--white) !important;
        padding: 30px 24px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 1px solid var(--border-color);
        gap: 20px;
        z-index: 1001;
        align-items: center;
        text-align: center;
    }

    .nav-links.mobile-menu-active a {
        color: var(--secondary) !important;
        font-size: 1.15rem;
        font-weight: 600;
    }

    .hamburger {
        display: block;
        color: var(--secondary);
    }

    .section {
        padding: 80px 0;
    }

    .contact-card-centered {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-scroll-title {
        font-size: 1.8rem !important;
    }

    .section-title h2 {
        font-size: 1.75rem !important;
    }

    .cta-container h2 {
        font-size: 1.9rem !important;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
}