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

:root {
    /* Primary Colors */
    --primary: #024751;
    --primary-color: #024751;
    --accent-color: #ff5416;
    --accent: #ff5416;

    /* Status Colors */
    --success-color: #4caf50;
    --success: #4caf50;
    --danger: #f44336;
    --warning: #ff9800;
    --info: #2196f3;

    /* Neutral Colors */
    --light-bg: #f8fafb;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-muted: #999;
    --border-color: #e5e5e5;
    --border-light: #f0f0f0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Header/Navigation */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.mobile-menu-actions {
    display: none;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* CTA Buttons */
.cta-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.cta-btn.primary:hover {
    background: #033a42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 71, 81, 0.3);
}

.cta-btn.secondary {
    background: var(--accent-color);
    color: white;
}

.cta-btn.secondary:hover {
    background: #e63f0f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 84, 22, 0.3);
}

.cta-btn.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

/* Header Actions */
.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0;
    background: #024751;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 84, 22, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(11, 201, 208, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,64 Q150,40 300,64 T600,64 T900,64 T1200,64 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/><path d="M0,80 Q200,60 400,80 T800,80 T1200,80 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)" style="animation: wave 20s linear infinite;"/></svg>');
    background-repeat: repeat-x;
    background-size: 1200px 120px;
    background-position: 0 0;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 1200px 0; }
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 71, 81, 0.5);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 750px;
    color: white;
    text-align: left;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-badge i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.5px;
    animation: fadeIn 1s ease-out 0.1s both;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 650px;
    font-weight: 300;
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero .cta-btn {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1.1rem 2.5rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.hero .cta-btn.primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e64a0e 100%);
    box-shadow: 0 8px 25px rgba(255, 84, 22, 0.35);
}

.hero .cta-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 84, 22, 0.45);
}

.hero .cta-btn.primary:active {
    transform: translateY(-2px);
}

.cta-btn.outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2.5px solid white;
    color: white;
    backdrop-filter: blur(10px);
}

.cta-btn.outline:hover {
    background: white;
    color: var(--accent-color);
    border-color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25);
}

.cta-btn.outline:active {
    transform: translateY(-2px);
}

.trust-section {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    animation: fadeIn 1s ease-out 0.4s both;
}

.availability {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.availability i {
    color: var(--accent-color);
    margin-right: 0;
    font-size: 1.05rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.8rem;
    flex-wrap: wrap;
}

.trust-badges span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
}

.trust-badges span:hover {
    color: white;
    transform: translateX(4px);
}

.trust-badges i {
    color: var(--accent-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Hero Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 6rem 0;
        min-height: 600px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 0;
        min-height: 550px;
        align-items: flex-start;
        padding-top: 4rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero .cta-btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .hero::after {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0 3rem 0;
        min-height: 360px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .hero-content {
        padding: 0 24px;
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.4;
        margin-bottom: 2.5rem;
        font-weight: 800;
        letter-spacing: -0.5px;
        color: white;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        display: none;
    }

    .hero-badge {
        display: none;
    }

    .hero-actions {
        display: flex;
        flex-direction: row;
        gap: 10px;
        margin-bottom: 0;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero .cta-btn {
        font-size: 0.75rem;
        padding: 8px 14px;
        border-radius: 5px;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-transform: uppercase;
        letter-spacing: 0.3px;
        display: inline-block;
        max-width: fit-content;
    }

    .hero .cta-btn.primary {
        background: linear-gradient(135deg, #ff5416 0%, #ff7043 100%);
        box-shadow: 0 6px 18px rgba(255, 84, 22, 0.35);
        color: white;
    }

    .hero .cta-btn.primary:active {
        transform: scale(0.98);
        box-shadow: 0 4px 12px rgba(255, 84, 22, 0.3);
    }

    .hero .cta-btn.secondary {
        background: rgba(255, 255, 255, 0.18);
        border: 2px solid white;
        backdrop-filter: blur(10px);
        color: white;
    }

    .hero .cta-btn.secondary:active {
        background: rgba(255, 255, 255, 0.28);
        transform: scale(0.98);
    }

    .availability {
        display: none;
    }

    .trust-section {
        display: none;
    }

    .trust-badges {
        display: none;
    }

    .hero::after {
        height: 30px;
    }
}

/* Social Proof Strip */
.social-proof-strip {
    background: var(--light-bg);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.proof-text {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.proof-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.metric strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff5f0 100%);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.service-features i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.duration {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.duration i {
    color: var(--accent-color);
}

.price {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
}

.price strong {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.services-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Extra Services */
.extra-services {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.extra-services h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.extra-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.extra-item:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.extra-item i {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card,
.vision-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.core-values {
    margin-top: 3rem;
}

.core-values h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(255, 84, 22, 0.1);
}

.value-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.value-item span {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 1rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefits-list i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.about-image .image-placeholder {
    background: linear-gradient(135deg, var(--accent-color), #ff7a4a);
    border-radius: 15px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--light-bg);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.stars i {
    margin-right: 0.25rem;
}

.testimonial p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Pricing Accordion */
.pricing-accordion {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-item {
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.pricing-item.featured {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(255, 84, 22, 0.15);
}

.pricing-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
    user-select: none;
}

.pricing-item.featured .pricing-header {
    background: #fff5f0;
}

.pricing-header:hover {
    background: var(--light-bg);
}

.pricing-item.featured .pricing-header:hover {
    background: #ffe8dc;
}

.pricing-title {
    flex: 1;
}

.pricing-title h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.pricing-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.pricing-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.pricing-price {
    text-align: right;
    white-space: nowrap;
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-price strong {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.toggle-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.pricing-item.open .toggle-icon {
    transform: rotate(180deg);
}

.pricing-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--light-bg);
}

.pricing-item.open .pricing-content {
    max-height: 1000px;
}

.pricing-description {
    padding: 2rem;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-description p {
    margin: 0 0 1.5rem 0;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-description h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
}

.pricing-description ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pricing-description li {
    padding: 0.5rem 0 0.5rem 2rem;
    color: var(--text-light);
    position: relative;
}

.pricing-description li i {
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

.pricing-description .cta-btn {
    margin-top: 1rem;
}

/* Table styles (for backward compatibility) */
table {
    width: 100%;
    border-collapse: collapse;
}

table thead {
    background: var(--light-bg);
}

table th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

table tr:hover {
    background: var(--light-bg);
}

.featured-row {
    background: #fff5f0;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--light-bg);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
}

/* CTA Final Section */
.cta-final {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), #066b7e);
    color: white;
    text-align: center;
}

.cta-final h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.final-cta-buttons .cta-btn {
    margin: 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-info p {
    margin: 0;
}

.contact-info i {
    margin-right: 0.5rem;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.newsletter p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* ====================================================
   HAMBURGER MENU
   ================================================== */

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.4rem;
}

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

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

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

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

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* ====================================================
   STANDARDIZED UI COMPONENTS
   ================================================== */

/* ---- BUTTONS ---- */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

/* Primary Button */
.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover:not(:disabled) {
    background: #033a42;
    border-color: #033a42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 71, 81, 0.3);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Success Button */
.btn-success {
    background: var(--success-color);
    color: white;
    border: 2px solid var(--success-color);
}

.btn-success:hover:not(:disabled) {
    background: #45a049;
    border-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Danger Button */
.btn-danger {
    background: #f44336;
    color: white;
    border: 2px solid #f44336;
}

.btn-danger:hover:not(:disabled) {
    background: #da190b;
    border-color: #da190b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

/* Warning Button */
.btn-warning {
    background: #ff9800;
    color: white;
    border: 2px solid #ff9800;
}

.btn-warning:hover:not(:disabled) {
    background: #e68900;
    border-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Info Button */
.btn-info {
    background: #2196f3;
    color: white;
    border: 2px solid #2196f3;
}

.btn-info:hover:not(:disabled) {
    background: #0b7dda;
    border-color: #0b7dda;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

/* Small Button */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Large Button */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Block Button */
.btn-block {
    display: block;
    width: 100%;
}

/* ---- MODALS ---- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* ---- ALERTS & MESSAGES ---- */
.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-success i {
    color: #28a745;
}

.alert-error,
.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-error i,
.alert-danger i {
    color: #dc3545;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-warning i {
    color: #ffc107;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.alert-info i {
    color: #17a2b8;
}

.alert-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: inherit;
    margin-left: auto;
    padding: 0;
    transition: opacity 0.3s;
}

.alert-close:hover {
    opacity: 0.7;
}

/* ---- LOADING SPINNER ---- */
.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 15px;
}

.loading-state.hidden {
    display: none;
}

.loading-state p {
    color: var(--text-light);
    font-weight: 500;
}

/* Small Spinner */
.spinner-sm {
    width: 24px;
    height: 24px;
    border-width: 2px;
}

/* Large Spinner */
.spinner-lg {
    width: 60px;
    height: 60px;
    border-width: 5px;
}

/* ---- FORMS ---- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(2, 71, 81, 0.1);
}

.form-group input:disabled,
.form-group textarea:disabled,
.form-group select:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
}

.form-help-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ---- CARDS ---- */
.card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

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

.card-header {
    padding: 0 0 15px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.card-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.card-body {
    margin-bottom: 15px;
}

.card-footer {
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

.card-success {
    background: #d4edda;
    border-color: #c3e6cb;
}

.card-danger {
    background: #f8d7da;
    border-color: #f5c6cb;
}

.card-warning {
    background: #fff3cd;
    border-color: #ffeeba;
}

.card-info {
    background: #d1ecf1;
    border-color: #bee5eb;
}

/* ---- BADGES ---- */
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.badge-success {
    background: var(--success-color);
    color: white;
}

.badge-danger {
    background: #f44336;
    color: white;
}

.badge-warning {
    background: #ff9800;
    color: white;
}

.badge-info {
    background: #2196f3;
    color: white;
}

/* ---- HIDDEN CLASS ---- */
.hidden {
    display: none !important;
}

/* ---- VISIBILITY HELPERS ---- */
.show {
    display: block !important;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

/* ---- TEXT UTILITIES ---- */
.text-center {
    text-align: center;
}

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

.text-left {
    text-align: left;
}

.text-muted {
    color: var(--text-light);
}

.text-success {
    color: var(--success-color);
}

.text-danger {
    color: #f44336;
}

.text-warning {
    color: #ff9800;
}

.text-info {
    color: #2196f3;
}

.text-primary {
    color: var(--primary-color);
}

/* ---- SPACING UTILITIES ---- */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 550px;
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .hero-actions .cta-btn {
        width: 100%;
        text-align: center;
        padding: 0.85rem 2rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .trust-badges span {
        font-size: 0.8rem;
    }

    .proof-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .metric strong {
        font-size: 1.3rem;
    }

    .metric span {
        font-size: 0.7rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .value-item {
        padding: 1.25rem;
    }

    .value-item i {
        font-size: 1.8rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .final-cta-buttons .cta-btn {
        padding: 0.85rem 2rem;
        width: 100%;
    }

    .logo img {
        height: 35px;
    }

    .services-grid,
    .steps-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .about-image .image-placeholder {
        height: 250px;
    }

    .image-placeholder i {
        font-size: 3rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        min-width: auto;
        width: 100%;
        padding: 0.8rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Pricing accordion mobile styles */
    .pricing-item {
        margin-bottom: 0.75rem;
    }

    .pricing-header {
        padding: 1.25rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .pricing-right {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .pricing-price {
        text-align: left;
    }

    .pricing-title h3 {
        font-size: 1.1rem;
    }

    .pricing-description {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        gap: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-link {
        padding: 16px 20px;
        border-bottom: 1px solid #f0f0f0;
        color: var(--text-dark);
        font-weight: 500;
        display: block;
    }

    .nav-link:hover {
        background: var(--light-bg);
    }

    .hamburger {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-actions {
        padding: 15px 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        border-top: 1px solid #f0f0f0;
        margin-top: 10px;
    }

    .mobile-menu-actions .cta-btn {
        padding: 10px 15px !important;
        font-size: 13px !important;
        border-radius: 6px;
    }

    .cta-btn.large {
        width: 100%;
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }

    .hero {
        min-height: 480px;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .hero-actions {
        margin-bottom: 1.25rem;
    }

    .trust-section {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .availability {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .trust-badges {
        gap: 0.5rem;
    }

    .trust-badges span {
        font-size: 0.7rem;
    }

    .proof-text {
        font-size: 0.95rem;
    }

    .metric strong {
        font-size: 1.5rem;
    }

    .metric span {
        font-size: 0.75rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-desc {
        font-size: 0.85rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-features li {
        font-size: 0.8rem;
        padding: 0.25rem 0;
    }

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin: 0.75rem 0;
        padding-top: 0.5rem;
    }

    .duration {
        font-size: 0.75rem;
    }

    .price {
        font-size: 0.9rem;
    }

    .price strong {
        font-size: 1rem;
    }

    .extra-item {
        font-size: 0.8rem;
    }

    .extra-item i {
        font-size: 1.4rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step h3 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.8rem;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 1rem;
    }

    .mission-card p,
    .vision-card p {
        font-size: 0.85rem;
    }

    .core-values h3 {
        font-size: 1.2rem;
    }

    .value-item {
        padding: 0.85rem;
    }

    .value-item i {
        font-size: 1.5rem;
        margin-bottom: 0.35rem;
    }

    .value-item span {
        font-size: 0.75rem;
    }

    .testimonial {
        padding: 1.25rem;
    }

    .testimonial p {
        font-size: 0.85rem;
    }

    .testimonial-author strong {
        font-size: 0.9rem;
    }

    .testimonial-author span {
        font-size: 0.75rem;
    }

    table {
        font-size: 0.8rem;
    }

    table th,
    table td {
        padding: 0.5rem 0.3rem;
    }

    table th {
        font-size: 0.75rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .faq-item p {
        font-size: 0.85rem;
    }

    .cta-final h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .cta-final p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .final-cta-buttons {
        gap: 0.6rem;
        margin-bottom: 1.25rem;
    }

    .final-cta-buttons .cta-btn.large {
        padding: 0.8rem 1rem;
    }

    .contact-info p {
        font-size: 0.85rem;
    }

    .newsletter h2 {
        font-size: 1.4rem;
    }

    .newsletter p {
        font-size: 0.9rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }

    .footer-col h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer-col p {
        font-size: 0.8rem;
    }

    .footer-col ul li {
        margin-bottom: 0.3rem;
    }

    .social-links {
        gap: 0.6rem;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .services h2,
    .how-it-works h2,
    .about h2,
    .testimonials h2,
    .pricing h2,
    .faq h2,
    .newsletter h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        padding-top: 0.5rem;
        font-size: 0.75rem;
    }

}

/* ====================================================
   BECOME A CLEANING CUSTODIAN PAGE STYLES
   ================================================== */

/* Navigation Bar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo img {
    height: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu li a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.25rem;
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

.nav-menu .btn {
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

/* Hero Banner */
.cc-hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #066b7e 50%, #0a9bb5 100%);
    color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cc-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-repeat: repeat-x;
    background-size: 1200px 200px;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.hero-text h2 {
    font-size: 2.2rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
    opacity: 0.95;
}

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.85;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    opacity: 0.9;
}

/* Why Join Section */
.why-join-cc {
    padding: 5rem 0;
    background: white;
}

.why-join-cc h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.benefit-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Application Section */
.cc-application {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, #f8fafb);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.cc-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section h3 i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.section-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    margin-top: -1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(2, 71, 81, 0.1);
    background: #f8fafb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="file"] {
    padding: 1rem;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-color);
    background: #f8fafb;
}

.file-help-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0.5rem 0;
    font-style: italic;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: var(--light-bg);
}

.checkbox-label.large {
    font-weight: 500;
    gap: 1rem;
}

.checkbox-label input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.label-text {
    flex: 1;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.terms-checkbox {
    margin-top: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.submit-btn:hover {
    background: #033a42;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 71, 81, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-help-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Success Container */
.success-container {
    display: none;
}

.success-container.show {
    display: block;
}

.success-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.success-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.success-details {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.success-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.success-details i {
    color: #4caf50;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.success-content .btn {
    margin-top: 2rem;
    padding: 0.9rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
}

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

    .hero-icon {
        width: 250px;
        height: 250px;
        font-size: 6rem;
    }

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

    .hero-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0.75rem 0;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .cc-hero-banner {
        padding: 3rem 1rem;
    }

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

    .hero-text h2 {
        font-size: 1.4rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

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

    .hero-icon {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }

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

    .cc-form {
        padding: 1.5rem;
    }

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

    .benefit-card {
        padding: 1.5rem;
    }

    .why-join-cc h2,
    .form-header h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cc-hero-banner {
        padding: 2rem 1rem;
    }

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

    .hero-text h2 {
        font-size: 1.1rem;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-icon {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .benefit-card {
        padding: 1rem;
    }

    .benefit-icon {
        font-size: 2.2rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .cc-form {
        padding: 1rem;
    }

    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .form-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .success-content {
        padding: 1.5rem 1rem;
    }

    .success-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ====================================================
   ADMIN LOGIN PAGE STYLES
   ================================================== */

.admin-login-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #066b7e 100%);
}

.admin-login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.admin-login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
}

/* Branding Section */
.login-branding {
    background: linear-gradient(135deg, var(--primary-color) 0%, #066b7e 100%);
    color: white;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-branding::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.login-branding::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.brand-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.brand-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.login-branding h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.login-branding p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 3rem;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.9;
}

.feature i {
    font-size: 1.5rem;
}

.feature span {
    font-size: 0.95rem;
}

/* Login Form Section */
.login-form-wrapper {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--accent-color);
}

.form-group input {
    padding: 0.9rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(2, 71, 81, 0.1);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    flex: 1;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.login-btn {
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.login-btn:hover {
    background: #033a42;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 71, 81, 0.3);
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.divider {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.google-signin-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.google-signin-btn:hover {
    border-color: #4285F4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
}

.google-signin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.google-signin-btn i {
    color: #4285F4;
}

/* Message Displays */
.error-message,
.success-message,
.loading-message {
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef5350;
}

.error-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.success-message {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #66bb6a;
}

.success-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.loading-message {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #42a5f5;
}

.loading-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.login-footer p {
    margin: 0;
    color: var(--text-light);
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: var(--accent-color);
}

.security-notice {
    margin-top: 2rem;
    padding: 1rem;
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    border-radius: 4px;
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.security-notice i {
    color: #ff9800;
    flex-shrink: 0;
    margin-top: 2px;
}

.security-notice p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-login-container {
        grid-template-columns: 1fr;
    }

    .login-branding {
        padding: 2rem;
        min-height: 250px;
    }

    .brand-logo {
        height: 60px;
    }

    .login-branding h1 {
        font-size: 2rem;
    }

    .brand-features {
        gap: 1rem;
    }

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

    .login-form-wrapper {
        padding: 2rem;
    }

    .login-header h2 {
        font-size: 1.5rem;
    }

    .admin-login-wrapper {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .admin-login-wrapper {
        padding: 0.5rem;
    }

    .admin-login-container {
        border-radius: 10px;
    }

    .login-branding {
        padding: 1.5rem;
        min-height: 200px;
    }

    .brand-logo {
        height: 50px;
        margin-bottom: 1rem;
    }

    .login-branding h1 {
        font-size: 1.6rem;
        margin-bottom: 0.25rem;
    }

    .login-branding p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .brand-features {
        gap: 0.75rem;
    }

    .feature {
        font-size: 0.85rem;
    }

    .login-form-wrapper {
        padding: 1.5rem;
    }

    .login-card {
        max-width: 100%;
    }

    .login-header h2 {
        font-size: 1.3rem;
    }

    .login-header p {
        font-size: 0.85rem;
    }

    .form-group input {
        padding: 0.8rem 0.9rem;
        font-size: 0.9rem;
    }

    .login-btn,
    .google-signin-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .error-message,
    .success-message,
    .loading-message {
        padding: 0.8rem;
        font-size: 0.8rem;
    }

    .security-notice {
        padding: 0.75rem;
        font-size: 0.8rem;
    }

    /* Pricing accordion extra small screens */
    .pricing-header {
        padding: 1rem 0.75rem;
    }

    .pricing-title h3 {
        font-size: 1rem;
    }

    .pricing-duration {
        font-size: 0.8rem;
    }

    .toggle-icon {
        font-size: 1rem;
    }

    .pricing-description {
        padding: 1rem;
    }

    .pricing-description h4 {
        font-size: 1rem;
        margin: 1rem 0 0.75rem 0;
    }

    .pricing-description li {
        padding: 0.4rem 0 0.4rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Footer for CC Page */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

/* Responsive - Become CC Page */
@media (max-width: 768px) {
    .cc-hero h1 {
        font-size: 2rem;
    }

    .cc-hero p {
        font-size: 1rem;
    }

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

    .pricing-tables {
        grid-template-columns: 1fr;
    }

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

    .form-wrapper {
        padding: 1.5rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cc-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .cc-hero p {
        font-size: 0.9rem;
    }

    .cc-hero {
        padding: 2rem 0;
    }

    .why-join h2,
    .cc-pricing h2,
    .application-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .reason-card {
        padding: 1.25rem;
    }

    .reason-icon {
        font-size: 2rem;
    }

    .service-pricing {
        padding: 1rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.8rem;
    }

    .earning-note {
        flex-direction: column;
        gap: 0.75rem;
    }

    .earning-note i {
        margin-bottom: 0;
    }

    .form-wrapper {
        padding: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem;
    }

    .nav-menu {
        display: none;
    }

    .navbar .container {
        padding: 0.75rem 0;
    }
}
