:root {
    --primary-color: #32CD32;
    /* Gigs Pesa Cash Green */
    --secondary-color: #00f2ff;
    --accent-color: #FF8C00;

    /* Light Mode Tokens */
    --bg-color: #ffffff;
    --text-color: #333333;
    --card-bg: #f8f9fa;
    --border-color: #dddddd;
    --nav-bg: rgba(255, 255, 255, 0.8);
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #0a0a0a;
        --text-color: #eeeeee;
        --card-bg: #1a1a1a;
        --border-color: #333333;
        --nav-bg: rgba(10, 10, 10, 0.8);
    }
}

body.dark-mode {
    --bg-color: #0a0a0a;
    --text-color: #eeeeee;
    --card-bg: #1a1a1a;
    --border-color: #333333;
    --nav-bg: rgba(10, 10, 10, 0.8);
}

/* Base Styles */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

/* ========================================= */
/* LAYOUTS (Mobile First Approach)           */
/* ========================================= */

/* Header: Stacked by default */
/* Header: Stacked by default */
/* Header: Stacked by default */
.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 5%;
    /* Restore side padding */
    width: 100%;
    box-sizing: border-box;
}

.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
}

.logo {
    height: 65px;
    /* Visible but fits */
    width: auto;
    display: block;
}

.brand-name {
    font-size: 1.8rem;
    /* Reduced to fit */
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

.logo-text-h1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.text-tech {
    color: #00BFFF;
}

.text-net {
    color: #32CD32;
}

.text-pulse {
    color: #FF8C00;
}

.search-section {
    width: 100%;
    padding: 5px 0;
    display: flex;
    justify-content: center;
    background: transparent;
}

.search-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    outline: none;
    color: #555;
    background: transparent;
    width: 100%;
}

.search-btn {
    background: transparent;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    color: #555;
    border-left: 1px solid #eee;
}

/* Header Actions: Stacked/Wrapped */
.header-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
}

.action-buttons-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    padding: 0;
    margin-bottom: 10px;
    flex-wrap: nowrap;
    /* Force one line */
}

.btn {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 12px 5px;
    /* Reduced padding */
    border-radius: 4px;
    font-size: 0.95rem;
    flex: 1;
    text-align: center;
    text-transform: capitalize;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-login {
    background: #007bff;
    /* Solid Blue */
}

.btn-join {
    background: #FF8C00;
    /* Solid Orange */
}

.btn-contact {
    background: #32CD32;
    /* Solid Light Green */
}

/* Slideshow: Mobile Height */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 60vh;
    /* Mobile height */
    overflow: hidden;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active-slide {
    opacity: 1;
    z-index: 10;
}

.text-container {
    position: absolute;
    top: 35%;
    /* Slightly lower for better center visibility */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    color: white;
    font-size: 2rem;
    font-weight: normal;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.anim-text {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.5s ease-out;
}

.text-container.final-state .anim-text {
    font-weight: bold;
}

.anim-text.dropped {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    position: absolute;
    bottom: 40px;
    right: auto;
    left: 50%;
    /* Center horizontally */
    text-decoration: none;
    padding: 10px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    opacity: 0;
    transform: translate(-50%, 20px);
    /* Start offset with center X */
    transition: all 0.5s ease-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.slide-btn.dropped {
    opacity: 1;
    transform: translate(-50%, 0);
}

.btn-slide-1 {
    background-color: #87CEEB;
    color: black;
}

.btn-slide-2 {
    background-color: #90EE90;
    color: black;
}

.btn-slide-3 {
    background-color: #FFA500;
    color: black;
}

/* Vision Section */
.vision-section {
    text-align: center;
    padding: 40px 5%;
    background-color: white;
}

.vision-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.6;
}

.text-enhance {
    color: #32CD32;
}

.text-falling {
    color: #FFA500;
}

.text-perfecting {
    color: #87CEEB;
}

/* Features Section */
.features-section {
    padding: 40px 5%;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 Columns for Mobile */
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 10px;
    /* Reduced padding for 2-col fit */
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 15px 0 10px 0;
    color: #333;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.icon-container {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.icon-container i {
    font-size: 3rem;
}

.icon-star-blue {
    color: #007bff;
}

.icon-badge-bg {
    color: #007bff;
}

.icon-badge-check {
    color: white;
    font-size: 1.3em;
    /* Make it bigger to fit well like the reference */
    margin-top: -2px;
    /* Slight offset if needed to center vertically */
}

.icon-flash-skyblue {
    color: #87CEEB;
}

.icon-checks-blue {
    color: #007bff;
}


/* Lectures Section */
.lectures-section {
    padding: 40px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.lectures-header {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.text-t {
    color: #87CEEB;
}

.text-n {
    color: #90EE90;
}

.text-p {
    color: #FFA500;
}

.text-online {
    color: #DAA520;
}

.lecture-card {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
}

.lecture-img {
    width: 100%;
    height: auto;
    display: block;
}

.handwritten-text {
    font-family: 'Caveat', cursive;
    color: red;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px;
    margin: 0;
    line-height: 1.4;
}

.lecture-body {
    color: black;
    font-size: 1rem;
    padding: 0 20px 20px 20px;
    line-height: 1.6;
}

.btn-start-now {
    display: inline-block;
    background-color: #90EE90;
    color: white;
    font-weight: bold;
    padding: 12px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
}


/* Store Section */
.store-section {
    padding: 40px 5%;
    text-align: center;
    background-color: white;
}

.store-header {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
}

.text-maroon {
    color: #800000;
}

.text-gpc-green {
    color: #006400;
    font-style: italic;
}

.store-subtext {
    color: #006400;
    font-size: 1rem;
    margin-bottom: 30px;
}

.store-card {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
    text-align: center;
    padding-bottom: 30px;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.store-img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-view-more {
    display: inline-block;
    position: static;
    /* Stack button for mobile default */
    margin: 10px auto;
    background-color: #2F4F2F;
    color: #FFA500;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 4px;
}

.store-content {
    padding: 20px;
}

.store-product-title {
    color: #800080;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.store-body {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-book-now {
    display: inline-block;
    background-color: #2F4F2F;
    color: #FFA500;
    padding: 12px 50px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #FFA500;
    border-radius: 5px;
}


/* Services List */
.services-list-section {
    padding: 40px 5%;
    text-align: center;
    background-color: white;
}

.services-header {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
    color: #333;
}

.services-subheader {
    color: #8B4513;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: normal;
}

.services-container {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 400px;
}

.services-overlay {
    background-color: transparent;
    /* Show image clearly */
    padding: 30px;
    height: 100%;
    /* Ensure text is readable - maybe add text-shadow if needed, but start with clear image */
}

.services-ol {
    text-align: left;
    display: inline-block;
    font-family: 'Calibri', 'Segoe UI', sans-serif;
    color: #008000;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-explore {
    display: inline-block;
    background-color: #008000;
    color: white;
    padding: 10px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}


/* Inspired Section */
.inspired-section {
    padding: 0;
    background-color: white;
    text-align: left;
}

.inspired-heading {
    color: #FFA500;
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    margin: 30px 5%;
}

.inspired-image-container {
    position: relative;
    width: 100%;
    display: block;
}

.inspired-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Overlay Content Bottom Left */
.inspired-overlay-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    text-align: center;
    width: 90%;
}

.inspired-title {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.inspired-subtitle {
    font-size: 1.5rem;
    margin: 5px 0 20px 0;
    font-weight: normal;
}

.btn-visit-overlay {
    display: inline-block;
    background-color: #00BFFF;
    /* Deep Sky Blue - Vivid */
    color: white;
    padding: 12px 60px;
    text-decoration: none !important;
    /* Force remove underline */
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


/* Careers Section */
.careers-section {
    padding: 40px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.careers-header {
    color: #007bff;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.careers-text {
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 0.95rem;
    text-align: center;
}

.btn-join-now {
    display: inline-block;
    background-color: #32CD32;
    color: white;
    padding: 12px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.image-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    /* 1 Column default */
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.grid-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.5s ease;
}


/* Support Section */
.support-section {
    padding: 40px 5%;
    background-color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* Column default */
    align-items: center;
    gap: 40px;
}

.support-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    width: 100%;
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.icon-whatsapp {
    color: #25D366;
}

.icon-location {
    color: #007bff;
}

.icon-email {
    color: #FFA500;
}

.support-card h3 {
    margin: 10px 0;
    color: #333;
}

.support-number,
.location-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
}

.space-ai-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.space-ai-icon {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}


/* Reviews Section */
.reviews-section {
    padding: 40px 5%;
    background-color: white;
    max-width: 800px;
    margin: 0 auto;
}

.review-form-container {
    background: white;
    padding: 20px;
    margin-bottom: 40px;
}

.location-heading {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.location-sub {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.rating-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars-input .star-btn {
    font-size: 1.5rem;

    /* Registration Enhancements */
    .password-wrapper {
        position: relative;
        width: 100%;
    }

    .password-wrapper input {
        width: 100%;
        padding-right: 40px;
        /* Space for eye icon */
    }

    .password-toggle {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #999;
    }

    .password-toggle:hover {
        color: #333;
    }

    .requirement-list {
        list-style: none;
        padding: 0;
        margin: 10px 0 0 0;
        font-size: 0.9em;
        background: #f9f9f9;
        padding: 10px;
        border-radius: 5px;
    }

    .requirement-item {
        color: #dc3545;
        /* Red default */
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: color 0.3s ease;
    }

    .requirement-item.valid {
        color: #28a745;
        /* Green when valid */
    }

    .requirement-item i {
        font-size: 0.8em;
    }

    .requirement-item.valid i:before {
        content: "\f00c";
        /* Checkmark */
    }

    .requirement-item i:before {
        content: "\f00d";
        /* Cross */
    }

    margin: 0 2px;
}

.star-btn.fas {
    font-weight: 900;
}

.star-btn.far {
    font-weight: 400;
}

.review-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.9rem;
}

.review-form textarea,
.review-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    /* Fix overflow */
}

.review-form textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-submit-review {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    max-width: 200px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-card {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.dynamic-review {
    background: #fafafa;
    border-left: 4px solid #FFA500;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

.review-verified i {
    font-size: 1rem;
}

.stars-display {
    color: #FFA500;
    margin-bottom: 15px;
}

.stars-display i {
    margin-right: 3px;
    font-size: 1.1rem;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.review-author {
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
}

.thanks-message {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.load-more-container {
    text-align: center;
    margin-top: 20px;
}

.btn-load-more {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
}


/* Follow Us */
.follow-us-section {
    padding: 30px 5%;
    text-align: center;
    background-color: white;
}

.follow-heading {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    color: #333;
    font-size: 2rem;
}


/* Footer */
.main-footer {
    padding: 30px 5%;
    background-color: white;
    border-top: 1px solid #eee;
    color: #333;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    text-align: left;
}

.footer-links-container {
    display: flex;
    flex-direction: row;
    /* Side-by-side on Mobile */
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.footer-links-left,
.footer-links-right {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 48%;
    /* Split width */
}

/* Right column aligned to the right? Screenshot suggests they are distinct columns. */
/* Let's keep text-align left for readability but push right column to right side if needed. */
/* Actually, screenshot: Left column has "Home...", Right column has "About Us...". */

.footer-links-left li,
.footer-links-right li {
    margin-bottom: 15px;
}

.main-footer a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    display: block;
    /* Ensure hit area */
}

/* Payment Icons: Left aligned */
.payment-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: flex-start;
    /* Left align */
    flex-wrap: wrap;
}

/* Adjust icon sizes to match screenshot (small/neat) */
.payment-icons i {
    font-size: 1.5rem !important;
    /* Override inline if any */
}

.mpesa-icon {
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid #ccc;
    padding: 2px 6px;
    border-radius: 3px;
    color: green;
}

.copyright-text {
    color: #999;
    font-size: 0.85rem;
    text-align: left;
    /* Left align to match icons */
    margin-top: 20px;
}

.fa-paypal {
    color: #00457C;
}

.fa-cc-visa {
    color: #1A1F71;
}

.fa-cc-mastercard {
    color: #EB001B;
}


/* ========================================= */
/* TABLET ENHANCEMENTS (min-width: 768px)    */
/* ========================================= */
@media (min-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .search-section {
        padding: 20px 5%;
    }

    .search-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 Columns on Tablet */
    }

    .image-grid-container {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        /* Allow full width */
        padding: 0 20px;
    }

    .footer-links-container {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        text-align: left;
    }

    .support-section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .support-card {
        width: 45%;
        min-width: 200px;
    }
}

/* ========================================= */
/* DESKTOP ENHANCEMENTS (min-width: 1024px)  */
/* ========================================= */
@media (min-width: 1024px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 5%;
        flex-wrap: nowrap;
    }

    .logo-container {
        margin-right: 20px;
    }

    .brand-name {
        font-size: 1.8rem;
    }

    .header-actions {
        width: auto;
        flex-wrap: nowrap;
    }

    .search-section {
        background: transparent;
        padding: 0;
        display: flex;
        align-items: center;
        width: auto;
        flex-grow: 1;
        margin: 0 40px;
    }

    .search-container {
        width: 100%;
        max-width: 600px;
        margin: 0;
    }

    .action-buttons-container {
        padding: 0;
        margin: 0;
    }

    .btn {
        padding: 8px 20px;
        /* Keep smaller on desktop too */
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 Columns Single Row on Desktop */
        gap: 30px;
        max-width: 1600px;
        /* Wider for desktop/4k */
        padding: 0 40px;
    }

    .image-grid-container {
        grid-template-columns: repeat(4, 1fr);
        /* 4 Columns for images */
        max-width: 100%;
        /* Full width for 4K */
        padding: 0 40px;
    }

    .footer-links-container {
        justify-content: space-between;
        gap: 50px;
    }

    .hero-slideshow {
        height: 85vh;
        /* Taller on desktop */
    }

    .text-container {
        font-size: 4rem;
        /* Larger text */
        top: 35%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 80%;
    }

    .slide-btn {
        right: auto;
        left: 50%;
        transform: translate(-50%, 0);
        font-size: 1.5rem;
        padding: 15px 40px;
    }

    .slide-btn.dropped {
        transform: translate(-50%, 0);
    }

    .inspired-overlay-content {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 80%;
    }

    .careers-text {
        text-align: center;
        max-width: 1000px;
        /* Wider text block for desktop */
    }

    .store-card {
        max-width: 900px;
        /* Wider card for desktop view if desired, or keep centered */
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .store-card .image-wrapper {
        width: 50%;
    }

    .store-card .store-content {
        width: 50%;
        padding: 40px;
    }

    .btn-view-more {
        position: absolute;
        bottom: 15px;
        right: 15px;
        left: auto;
        transform: none;
        margin: 0;
    }

    .services-container {
        max-width: 800px;
    }

    .support-section {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .support-card {
        width: auto;
        flex: 1;
        margin: 0 10px;
    }

    .payment-icons {
        justify-content: flex-start;
    }

    .copyright-text {
        text-align: left;
    }
}

/* ========================================= */
/* REGISTRATION PAGE STYLES                  */
/* ========================================= */

.registration-wrapper {
    background-color: #f8f9fa;
    padding: 20px 5%;
    display: flex;
    justify-content: center;
}

.registration-card {
    background: white;
    width: 100%;
    max-width: 600px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
}

.required {
    color: red;
    margin-left: 2px;
}

.required-star {
    color: red;
    font-size: 1.2rem;
    margin-right: 5px;
    vertical-align: top;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    /* Input fix */
    background-color: #fff;
    color: #333;
}

.form-text {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
    display: block;
}

.select-wrapper {
    position: relative;
}

.checkbox-group {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.first-cb {
    margin-top: 20px;
}

.cb-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cb-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    margin-right: 10px;
    transform: scale(1.2);
}

.profile-section {
    margin: 30px 0;
}

.profile-upload-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.profile-avatar-placeholder {
    width: 100px;
    height: 100px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #adb5bd;
}

.btn-upload {
    background: white;
    border: 1px solid #28a745;
    color: #28a745;
    padding: 8px 30px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

.inviter-box-container {
    background-color: #9eaab6;
    /* Grayish blue box */
    padding: 20px;
    margin: 0 -30px -30px -30px;
    /* Bleed to edges */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-align: center;
}

.inviter-box label {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.inviter-input {
    margin-bottom: 20px;
}

.btn-register-submit {
    background-color: white;
    color: #aaa;
    /* Gray text looks disabled until filled? or just placeholder styling */
    border: none;
    padding: 12px 60px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    width: 80%;
}

/* MODAL STYLES (Added for Coming Soon) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    animation: animatetop 0.4s;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

/* Spin Wheel Labels */
.wheel-label {
    position: absolute;
    top: 10px;
    left: 50%;
    transform-origin: 0 160px;
    width: 40px;
    margin-left: -20px;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 5;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px #ff4500;
    }

    50% {
        box-shadow: 0 0 20px #ff8c00;
    }

    100% {
        box-shadow: 0 0 5px #ff4500;
    }
}

/* --- MOBILE BOTTOM NAVIGATION --- */
.mobile-nav {
    display: none;
    /* Hidden on Desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
    border-top: 1px solid #eee;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.nav-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.nav-item.active {
    color: #008f58;
    /* GoalSeed Green */
}

.nav-item:hover {
    color: #00c07c;
}

/* Mobile Visibility */
@media screen and (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px;
        /* Space for the bar */
    }
}

/* --- SIDEBAR DRAWER STYLES --- */
.sidebar-drawer {
    position: fixed;
    top: 0;
    left: -280px; /* Hidden by default */
    width: 280px;
    height: 100%;
    background: #1a1a1a;
    color: white;
    z-index: 2050;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.sidebar-drawer.open {
    left: 0;
}

.drawer-header {
    padding: 20px;
    background: #121212;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-body {
    padding: 10px 0;
    overflow-y: auto;
    flex: 1;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
}

.drawer-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.drawer-link:hover,
.drawer-link.active {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.drawer-link.active {
    border-left: 4px solid var(--primary-color);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2049;
    display: none;
    backdrop-filter: blur(2px);
}

.drawer-overlay.visible {
    display: block;
}

body.dark-mode .sidebar-drawer {
    background: #000;
}

body.dark-mode .drawer-header {
    background: #0a0a0a;
}

/* --- MOBILE BOTTOM NAVIGATION --- */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10000;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
}

/* --- DESKTOP NAVIGATION --- */
.desktop-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

/* Header Container Desktop styles */
@media screen and (min-width: 769px) {
    .header-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 5% !important;
    }
    
    #hamburgerBtn {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
}
