/* ============================================
   CSS Variables - Color Scheme
   ============================================ */
:root {
    --primary-blue: #003366;        /* Deep Blue */
    --accent-yellow: #FFD700;       /* Yellow */
    --accent-orange: #FF8C00;       /* Orange */
    --dark-blue: #001f3f;
    --light-blue: #0056b3;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #666666;
    --dark-gray: #333333;
    --font-primary: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background-color: var(--primary-blue);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-brand h1 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-yellow);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-yellow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

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

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

.btn-primary:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
}

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

.feature-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    text-align: center;
    color: var(--primary-blue);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ============================================
   Product Catalogue Section
   ============================================ */
.product-catalogue {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Category Menu */
.category-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-menu-btn {
    padding: 1rem 2rem;
    background-color: var(--light-gray);
    color: var(--primary-blue);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.category-menu-btn:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.category-menu-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--accent-yellow);
}

.category-menu-btn.active:hover {
    background-color: var(--dark-blue);
}

/* Products Display */
.products-display {
    margin-top: 2rem;
    min-height: 400px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.5s ease;
}

.product-card {
    background-color: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
}

.product-image-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-name {
    padding: 1.5rem;
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.no-products {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    padding: 3rem;
}

/* ============================================
   Our Stores Section
   ============================================ */
.our-stores {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.stores-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 2rem;
}

.stores-carousel {
    display: flex;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.store-card {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--white);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none;
}

.store-card.active {
    opacity: 1;
    transform: translateX(0);
    display: grid;
}

.store-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
}

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

.store-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-info h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.store-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.store-detail:last-child {
    border-bottom: none;
}

.store-detail:hover {
    color: var(--primary-blue);
    padding-left: 0.5rem;
}

.store-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.store-detail span:not(.store-icon):not(.store-link) {
    flex: 1;
    color: var(--gray);
    font-size: 1rem;
}

.store-link {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--accent-orange);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   Featured Brands Section
   ============================================ */
.featured-brands {
    padding: 5rem 0;
    background-color: var(--light-gray);
    overflow: hidden;
}

.brands-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.brands-slider {
    display: flex;
    gap: 2rem;
    animation: slideRight 30s linear infinite;
    width: fit-content;
}

.brands-slider:hover {
    animation-play-state: paused;
}

.brand-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    flex: 0 0 200px;
    min-width: 200px;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
    border-color: var(--accent-yellow);
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-logo-placeholder {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    padding: 0.5rem;
}

.brand-logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ============================================
   Customer Reviews Section
   ============================================ */
.customer-reviews {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.review-card {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
}

.review-stars {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.review-author {
    border-top: 2px solid var(--accent-yellow);
    padding-top: 1rem;
}

.review-author strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.review-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   About Page Styles
   ============================================ */
.mission {
    padding: 5rem 0;
    background-color: var(--white);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
}

.group-businesses {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.group-businesses h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.business-section {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
}

.business-section-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: center;
}

.business-logo-placeholder {
    width: 100%;
    height: 150px;
    background-color: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid var(--accent-yellow);
}

.business-logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.business-section-text h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.business-tagline {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.business-description {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container,
.contact-info-container {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2,
.contact-info-container h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-item:last-of-type {
    border-bottom: none;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.info-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.map-placeholder {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed #ccc;
}

.map-placeholder p:first-child {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-note {
    color: var(--gray);
    font-size: 0.9rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-brand p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.social-media {
    margin-top: 1.5rem;
}

.social-media h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

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

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

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

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

    .features-grid,
    .product-categories,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .category-menu {
        flex-direction: column;
        align-items: center;
    }

    .category-menu-btn {
        width: 100%;
        max-width: 300px;
    }

    .business-section-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .business-logo-placeholder {
        margin: 0 auto;
        max-width: 200px;
    }

    .store-card {
        grid-template-columns: 1fr;
    }

    .store-image-placeholder {
        border-radius: 15px 15px 0 0;
        min-height: 300px;
    }

    .store-info {
        padding: 2rem;
    }

    .store-info h3 {
        font-size: 1.5rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .brand-card {
        flex: 0 0 180px;
        min-width: 180px;
        padding: 1.5rem;
    }

    .brands-slider {
        animation-duration: 25s;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .cta-content h2 {
        font-size: 2rem;
    }

    .mission-content h2,
    .group-businesses h2 {
        font-size: 2rem;
    }
}

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

    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .feature-card,
    .business-card {
        padding: 2rem;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }

    .brand-card {
        flex: 0 0 150px;
        min-width: 150px;
        padding: 1.5rem;
    }

    .brands-slider {
        animation-duration: 20s;
        gap: 1.5rem;
    }
}

