/* ==========================================================================
   Base Styles & CSS Variables
   ========================================================================== */
   :root {
        /* Colors */
    --primary: #2C7BC3;
    --primary-light: #6BA8E6;
    --primary-dark: #415A9E;
    --secondary: #F6B14A;
    --accent: #F6B14A;
    
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-dark: #0F172A;
    --bg-darker: #0B0F19;
    
    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-light: #F1F5F9;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.3);
    
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

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

.highlight-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-main);
    border: 1px solid #E2E8F0;
}

.btn-secondary:hover {
    background: #F1F5F9;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
}

.btn-outline:hover {
    background: var(--primary-light);
    color: white;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 4rem 0 3rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-white);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--primary-light);
}

.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(244, 63, 94, 0.3);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--secondary);
    margin-right: 0.25rem;
}

.visual-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Fallback gradient if no image */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(45deg, #1e1e1e, #2d2d2d);
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.element-1 { top: 10%; right: -20px; animation-delay: 0s; }
.element-2 { bottom: 20%; left: -20px; animation-delay: 2s; }
.element-3 { bottom: -20px; right: 20%; animation-delay: 4s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

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

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #F1F5F9;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* ==========================================================================
   Locations Section
   ========================================================================== */
.dark-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.light-text p {
    color: #94A3B8;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.location-card {
    background: var(--bg-darker);
    border: 1px solid #1E293B;
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.location-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.location-content .address {
    color: #94A3B8;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.location-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.status.open {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

.distance {
    font-size: 0.75rem;
    color: #94A3B8;
    padding: 0.25rem 0;
}

.location-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-light);
    font-weight: 500;
    font-family: var(--font-heading);
}

.more-locations {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-lg);
}

.more-locations p {
    color: #94A3B8;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Footer & Floating Elements
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 9999; /* Ensure it stays above everything */
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.footer {
    background: var(--bg-white);
    padding: 5rem 0 2rem;
    border-top: 1px solid #E2E8F0;
}

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

.footer-brand p {
    color: var(--text-muted);
    margin: 1rem 0 2rem;
    max-width: 300px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #F1F5F9;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

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

.footer-links h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #F1F5F9;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.active {
        max-height: 400px;
        padding: 1rem;
    }
    
    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }

    .navbar .btn-primary {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid, .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand .social-links {
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

/* ==========================================================================
   Internal Pages
   ========================================================================== */
.page-header {
    padding: 10rem 0 5rem;
    background: var(--bg-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: #94A3B8;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* ==========================================================================
   Google Review CTA Buttons
   ========================================================================== */
.review-store-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--bg-white);
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--text-main);
    font-family: var(--font-heading);
    transition: var(--transition);
    font-size: 0.9rem;
}

.review-store-btn i {
    font-size: 1.75rem;
}

.review-store-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-buttons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.review-buttons-grid .review-store-btn {
    flex: 1 1 calc(25% - 1rem); /* 4 items per row */
    min-width: 150px;
}

@media (max-width: 768px) {
    .review-buttons-grid .review-store-btn {
        flex: 1 1 calc(50% - 1rem); /* 2 items per row on mobile */
    }
}

/* ==========================================================================
   Breadcrumb Navigation
   ========================================================================== */
.breadcrumb-nav {
    background: transparent;
    border-bottom: none;
    padding: 0 0 1.5rem 0;
    margin-top: 0;
}

.breadcrumb-nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

a.breadcrumb-item:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: #F6B14A;
    font-size: 1rem;
    display: flex;
    gap: 0.2rem;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-author > div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-author strong {
    font-size: 0.95rem;
    color: var(--text-main);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.google-badge {
    width: 22px;
    height: 22px;
    margin-left: auto;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Logo Styling */
.main-logo {
    height: 50px;
    max-height: 15vh; /* Prevents overflow on short screens */
    width: auto;
    transition: var(--transition);
    border-radius: var(--radius-md);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

/* Mobile Responsiveness for Logos */
@media (max-width: 768px) {
    .main-logo {
        height: 40px; /* Mobile header size */
    }
    
    .footer-logo {
        height: 40px; /* Mobile footer size */
    }
}


/* ==========================================================================
   COMPREHENSIVE MOBILE ALIGNMENT FIXES
   ========================================================================== */
@media (max-width: 768px) {
    /* Layout & Spacing */
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .hero {
        padding: 6rem 0 2rem;
        min-height: auto;
    }
    
    .page-header {
        padding: 5rem 0 2rem;
    }

    /* Hero Section Overrides */
    .hero-container-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .hero-content-col {
        text-align: center !important;
    }
    .hero-rating {
        justify-content: center !important;
    }
    .hero-trust-row {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 2rem !important;
        padding: 1.5rem !important;
    }
    .hero-image-col img {
        height: 300px !important;
    }
    .hero-image-col > div:nth-child(2) {
        /* floating badge */
        bottom: -15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: max-content;
    }

    /* Force Grids to 1 Column */
    .services-grid, 
    .locations-grid, 
    .footer-grid, 
    .contact-grid,
    .review-store-btn {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Typography Scaling */
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header h2, .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header p, .page-header p {
        font-size: 1rem;
    }

    /* Buttons & CTAs */
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    /* Footers & Alignment */
    .footer-brand, .footer-links {
        text-align: center;
    }
    
    .footer-brand p {
        margin: 1rem auto 2rem; /* Centers the max-width container */
    }
    
    .footer-logo {
        margin: 0 auto 1rem; /* Center the logo block */
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    /* Store & Internal Pages */
    .info-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-row i {
        margin-bottom: 0.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .breadcrumb-nav .container {
        flex-wrap: wrap;
        line-height: 1.8;
    }

    /* WhatsApp floating button positioning */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}


/* ==========================================================================
   Store Specific Styles
   ========================================================================== */
.store-hero {
    padding: 8rem 0 4rem;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    min-width: 200px;
}

.hero-cta .btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}
.store-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.store-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.info-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
.info-row i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #E2E8F0;
}

@media (max-width: 768px) {
    .store-hero {
        padding: 6rem 0 3rem;
    }
    .store-details {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    .info-row {
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 1rem !important;
    }
    .store-info-card {
        padding: 1.5rem;
    }
    .store-info-card h2 {
        font-size: 1.5rem;
    }
}

/* Store Action Buttons */
.store-action-buttons {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.store-action-buttons .btn {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .store-action-buttons {
        flex-direction: column;
    }
    .store-action-buttons .btn {
        width: 100%;
        margin-left: 0;
    }
}

/* ==========================================================================
   Offers Banner / Ticker
   ========================================================================== */
.offers-banner {
    background: linear-gradient(90deg, var(--primary) 0%, #0056b3 100%);
    color: white;
    padding: 0.65rem 3rem 0.65rem 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    z-index: 999;
}

.offers-ticker {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    animation: ticker-scroll 30s linear infinite;
    font-size: 0.875rem;
    font-weight: 500;
}

.offer-item { flex-shrink: 0; }
.offer-sep { opacity: 0.4; flex-shrink: 0; }

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

.offers-banner:hover .offers-ticker { animation-play-state: paused; }

.offers-close {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.25);
    border: none;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}
.offers-close:hover { background: rgba(255,255,255,0.4); }

/* ==========================================================================
   Media Gallery
   ========================================================================== */
.media-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 1rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.media-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.media-card.large {
    grid-row: 1 / 3;
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1.5rem 1rem 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ==========================================================================
   Why Buy Section
   ========================================================================== */
.why-buy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-buy-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-buy-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.why-buy-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: white;
}

.why-buy-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.why-buy-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   Franchise Teaser Section
   ========================================================================== */
.franchise-teaser-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0a1628 100%);
    color: white;
}

.franchise-teaser-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.franchise-teaser-text h2 { color: white; font-size: 2rem; margin-bottom: 1rem; }
.franchise-teaser-text p { color: #94A3B8; margin-bottom: 1.5rem; }

.franchise-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.franchise-perks li {
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.franchise-perks li i { color: var(--secondary); font-size: 1.1rem; }

.franchise-teaser-stat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover { background: rgba(255,255,255,0.12); }

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #94A3B8;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Mobile: New Sections
   ========================================================================== */
@media (max-width: 768px) {
    .media-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    .media-card.large { grid-row: auto; }

    .why-buy-grid { grid-template-columns: 1fr; gap: 1rem; }
    .why-buy-card { text-align: left; display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem; }
    .why-buy-icon { width: 48px; height: 48px; font-size: 1.25rem; flex-shrink: 0; margin: 0; }

    .franchise-teaser-inner { grid-template-columns: 1fr; gap: 2rem; }
    .franchise-teaser-text h2 { font-size: 1.5rem; }
    .franchise-teaser-stat { grid-template-columns: 1fr 1fr; }

    .offers-banner { padding-right: 2.5rem; }
    .offers-ticker { font-size: 0.78rem; }
}

/* ==========================================================================
   Marquee Animation
   ========================================================================== */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Homepage Logo Strips (Brand & Finance Partners)
   ========================================================================== */
.logo-strip-section {
    padding: 2.75rem 0;
    background: var(--bg-white);
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.logo-strip-section.alt {
    background: var(--bg-light);
}

.logo-strip-heading {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.logo-card {
    min-height: 86px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.logo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #CBD5E1;
}

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

.finance-logo-card {
    min-height: 94px;
    justify-content: flex-start;
    gap: 0.85rem;
}

.finance-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: contain;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 0.25rem;
    flex-shrink: 0;
}

.finance-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.finance-logo-text strong {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.15;
}

.finance-logo-text span {
    font-size: 0.76rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .logo-card {
        min-height: 76px;
        padding: 0.5rem;
    }

    .brand-logo-img {
        max-width: 95%;
        max-height: 55px;
    }

    .finance-logo-card {
        align-items: center;
    }
}

/* Marquee Animation Classes */
.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0.5rem 0;
}
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}
.logo-strip-section.alt .marquee-container::before {
    background: linear-gradient(to right, #F8FAFC, transparent);
}
.logo-strip-section.alt .marquee-container::after {
    background: linear-gradient(to left, #F8FAFC, transparent);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-group {
    display: flex;
    gap: 1rem;
    padding-right: 1rem;
}
.marquee-group .logo-card {
    width: 160px;
    flex-shrink: 0;
}
.finance-logo-card {
    width: 200px !important;
}

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

/* Adjust mobile for marquee */
@media (max-width: 768px) {
    .marquee-container::before,
    .marquee-container::after {
        width: 40px;
    }
    .marquee-group .logo-card {
        width: 130px;
    }
    .finance-logo-card {
        width: 180px !important;
    }
}

/* Featured Offers Responsive Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.offers-grid > div > div:nth-child(2) {
    padding: 1rem !important; /* Smaller padding for mobile cards */
}
.offers-grid h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem !important;
}
.offers-grid p {
    font-size: 0.85rem;
    margin-bottom: 1rem !important;
}
.offers-grid .btn {
    padding: 0.5rem;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .offers-grid > div > div:nth-child(2) {
        padding: 1.5rem !important; /* Original padding for desktop */
    }
    .offers-grid h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem !important;
    }
    .offers-grid p {
        font-size: 1rem;
        margin-bottom: 1.5rem !important;
    }
    .offers-grid .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ==========================================================================
   Blog: TL;DR Box & Comparison Table (GEO / AI Citation Styles)
   ========================================================================== */
.tldr-box {
    background: linear-gradient(135deg, rgba(44, 123, 195, 0.08) 0%, rgba(246, 177, 74, 0.08) 100%);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin: 0 0 2.5rem 0;
}
.tldr-box strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.tldr-box ul { list-style: none; margin: 0; }
.tldr-box ul li {
    padding: 0.3rem 0;
    color: var(--text-main);
    font-size: 0.98rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.tldr-box ul li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Comparison Table */
.comparison-table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: white;
}
.comparison-table th {
    background: var(--bg-dark);
    color: white;
    padding: 0.9rem 1rem;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    white-space: nowrap;
}
.comparison-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #F1F5F9;
    color: var(--text-main);
    vertical-align: top;
}
.comparison-table tr:nth-child(even) td { background: #F8FAFC; }
.comparison-table tr:hover td { background: rgba(44, 123, 195, 0.04); }

/* Blog FAQ section */
.blog-faq { margin: 2.5rem 0; }
.blog-faq-item {
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.blog-faq-q {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    background: #F8FAFC;
    font-size: 1rem;
}
.blog-faq-a {
    padding: 1rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid #E2E8F0;
}
.last-updated-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: #F1F5F9;
    border-radius: 2rem;
    padding: 0.2rem 0.75rem;
}

/* ==========================================================================
   Sticky Mobile Bottom Bar
   ========================================================================== */
.mobile-bottom-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .mobile-bottom-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        color: white;
    }
    
    .mobile-bottom-call {
        background: var(--primary);
    }
    
    .mobile-bottom-whatsapp {
        background: #25D366;
    }
    
    .mobile-bottom-btn i {
        font-size: 1.25rem;
    }
    
    /* Hide floating WhatsApp if we have bottom bar */
    .floating-whatsapp {
        display: none !important;
    }
    
    /* Add padding to body so content isn't hidden behind bottom bar */
    body {
        padding-bottom: 60px;
    }
}
