@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary-color: #1B4B8F;  /* Deep blue from logo */
    --primary-light: #2D6BC4;  /* Lighter blue */
    --secondary-color: #E31837;  /* Red from logo */
    --secondary-light: #FF4B4B;  /* Lighter red */
    --accent-color: #FFC107;  /* Gold accent */
    --accent-light: #FFE082;  /* Light gold */
    --tertiary-color: #2C3E50;  /* Dark blue-gray */
    --tertiary-light: #34495E;  /* Lighter blue-gray */
    --text-color: #2C3E50;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    --light-bg: #F7F9FC;
    --card-bg: #ffffff;
    --footer-bg: #f8f9fa;
    --border-color: #e5e5e5;
    --section-spacing: 120px;
    --gradient-overlay: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 100%);
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --heading-font: 'Clash Display', sans-serif;
    --body-font: 'General Sans', sans-serif;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Container Width */
.container {
    max-width: 1400px;
    padding: 0 2rem;
}

/* Custom Navbar */
.navbar {
    background-color: transparent !important;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.5rem;
}

.navbar-brand img {
    height: 100px !important;
    width: auto;
    margin: 0;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 80px !important;  /* Slightly smaller logo when scrolled */
    transition: all 0.3s ease;
}

.navbar-nav {
    margin-left: auto;
    gap: 1rem;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    color: white !important;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--text-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 62, 80, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-logo {
    height: 100px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    background: white;
    padding: 2px 6px;
}

/* Hero Section - Extended Background */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.hero-overlay {
    display: none;
}

.hero-image {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 120px 40px 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: var(--heading-font);
}

.hero-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--body-font);
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s backwards;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-buttons .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(5px);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero-buttons .btn-primary:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

/* Custom Store Grid */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 0;
    position: relative;
}

/* Premium stores take up more space in the grid */
.store-card.premium {
    grid-column: span 2;
    max-width: 450px;
    justify-self: center;
    margin-bottom: 2rem;
}

.store-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(77, 163, 209, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(77, 163, 209, 0.1);
    position: relative;
    overflow: hidden;
}

.store-card.premium {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid var(--secondary-color);
    padding: 4rem;
    box-shadow: 0 15px 40px rgba(77, 163, 209, 0.15);
    min-height: 400px;
}

.store-card.premium::before {
    content: 'Featured';
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(77, 163, 209, 0.2);
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.store-card:hover::before {
    opacity: 0.05;
}

/* Store Logo Container - for uniform logo display */
.store-logo-container {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.store-card.premium .store-logo-container {
    width: 280px;
    height: 160px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.store-logo-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
}

.store-card:hover .store-logo-container {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.store-card img {
    max-height: 120px;
    max-width: 200px;
    width: auto;
    height: auto;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    object-fit: contain;
    object-position: center;
    background: transparent;
    border-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
}

.store-card.premium img {
    max-height: 140px;
    max-width: 220px;
    padding: 12px;
}

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

.store-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: var(--heading-font);
    letter-spacing: -0.01em;
}

.store-card.premium h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.store-card.premium .store-phone {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.store-phone {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 400;
    font-family: var(--body-font);
    letter-spacing: 0.1px;
}

.store-links {
    margin-top: auto;
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.store-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(77, 163, 209, 0.1), rgba(255, 107, 53, 0.1));
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.store-links a:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(77, 163, 209, 0.2);
    text-decoration: none;
}

.store-links a.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.store-card.premium .store-links a {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
}

/* Custom Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0;
}

.info-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1);
    color: var(--secondary-light);
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-family: var(--heading-font);
    letter-spacing: -0.01em;
}

.info-card p {
    font-family: var(--body-font);
    font-size: 0.95rem;
    line-height: 1.6;
    letter-spacing: 0.1px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.map-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.get-directions {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.get-directions:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Custom Footer */
.footer {
    background: var(--footer-bg);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--light-bg) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content img {
    max-height: 140px;
    margin-bottom: 3rem;
}

.social-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--secondary-light);
    transform: translateY(-5px) rotate(5deg);
}

/* Section Titles - Enhanced Style */
.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1.2rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-family: var(--heading-font);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 0.9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Remove section-specific colors */
#features .section-title,
#stores .section-title,
#contact .section-title {
    color: var(--primary-color);
}

#features .section-title::after,
#stores .section-title::after,
#contact .section-title::after {
    background: var(--primary-color);
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    font-family: var(--body-font);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.2);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--gradient);
    border: none;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.2);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Accessibility Improvements */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section {
        min-height: 70vh;
        padding-top: 120px;
    }
    
    .hero-content {
        padding: 120px 40px 40px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content .lead {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .navbar-brand img {
        height: 70px !important;
    }

    .navbar.scrolled .navbar-brand img {
        height: 60px !important;
    }

    .premium-stores-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem;
    }

    .premium-stores-section {
        margin-bottom: 5rem;
        padding: 2.5rem 1rem;
    }

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

    .store-card.premium {
        padding: 3.5rem;
        min-height: 350px;
    }

    .store-card.premium .store-logo-container {
        width: 240px;
        height: 140px;
    }

    .store-card.premium h3 {
        font-size: 1.6rem;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        z-index: 1000;
    }

    .navbar-collapse .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .navbar-collapse .navbar-nav .nav-link {
        color: var(--text-color) !important;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar-collapse .navbar-nav .nav-link:hover {
        background: var(--primary-color);
        color: white !important;
        transform: translateX(5px);
    }

    .navbar-collapse .navbar-nav .nav-link.active {
        background: var(--secondary-color);
        color: white !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding-top: 140px;
    }
    
    .hero-content {
        padding: 140px 20px 30px;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
        margin-top: 1rem;
    }

    .hero-content .lead {
        font-size: 1.1rem;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .navbar-brand img {
        height: 80px !important;
    }

    .navbar.scrolled .navbar-brand img {
        height: 70px !important;
    }

    .navbar.scrolled {
        padding: 0.5rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .premium-stores-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .premium-stores-section {
        margin-bottom: 4rem;
        padding: 2rem 1rem;
    }

    .premium-section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .regular-section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

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

    .store-card {
        padding: 30px;
    }

    .store-card.premium {
        padding: 3rem;
        min-height: 320px;
    }

    .store-card.premium .store-logo-container {
        width: 220px;
        height: 130px;
    }

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

    .store-card h3 {
        font-size: 1.4rem;
    }

    .info-card {
        padding: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-content {
        padding: 120px 15px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-top: 0.5rem;
    }

    .hero-content .lead {
        font-size: 1rem;
    }

    .navbar-brand img {
        height: 70px !important;
    }

    .navbar.scrolled .navbar-brand img {
        height: 60px !important;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-card i {
        margin-bottom: 1rem;
    }

    .premium-stores-section {
        margin-bottom: 3rem;
        padding: 1.5rem 0.5rem;
    }

    .premium-stores-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .store-card.premium {
        padding: 2.5rem;
        min-height: 300px;
    }

    .store-card.premium .store-logo-container {
        width: 200px;
        height: 120px;
    }

    .store-card.premium h3 {
        font-size: 1.4rem;
    }
}

/* Update other elements to match new color scheme */
.feature-icon {
    background: var(--primary-color);
}

.store-card.premium::before {
    background: var(--primary-color);
    color: white;
}

.info-card::before {
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
}

.social-link {
    background: var(--secondary-color);
    color: white;
}

.social-link:hover {
    background: var(--secondary-light);
    color: white;
}

/* Update store card hover effects */
.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(77, 163, 209, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary-color);
}

/* Add gold accents for special elements */
.store-card.premium {
    border: 2px solid var(--secondary-color);
}

.store-card.premium:hover {
    border-color: var(--primary-color);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* Features Section - Enhanced Background */
.features-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 249, 250, 0.97) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(77, 163, 209, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, rgba(77, 163, 209, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 107, 53, 0.03) 25%, transparent 25%);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    animation: backgroundShift 20s ease-in-out infinite alternate;
    pointer-events: none;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 
        0 10px 30px rgba(77, 163, 209, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 
        0 20px 40px rgba(77, 163, 209, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(77, 163, 209, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
}

.feature-card:hover .feature-icon i {
    -webkit-text-fill-color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-family: var(--heading-font);
    letter-spacing: -0.2px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.85;
    margin: 0;
    font-family: var(--body-font);
    letter-spacing: 0.1px;
}

/* Update the icons in the HTML to use more modern alternatives */
.feature-card .fa-shopping-cart::before {
    content: "\f07a";  /* Shopping bag icon */
}

.feature-card .fa-car::before {
    content: "\f1b9";  /* Car icon */
}

.feature-card .fa-clock::before {
    content: "\f017";  /* Clock icon */
}

/* Store Directory Section - Enhanced Background */
.store-directory {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.97) 0%, rgba(255, 255, 255, 0.97) 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.store-directory::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(77, 163, 209, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255, 107, 53, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(77, 163, 209, 0.03) 25%, transparent 25%);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    animation: backgroundShift 20s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

.store-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 10px 30px rgba(77, 163, 209, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(77, 163, 209, 0.1);
    position: relative;
    overflow: hidden;
}

.store-card.premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border: 2px solid var(--secondary-color);
    padding: 3.5rem;
}

.store-card.premium::before {
    content: 'Featured';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(77, 163, 209, 0.2);
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(77, 163, 209, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary-color);
}

.store-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(77, 163, 209, 0.1), rgba(255, 107, 53, 0.1));
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.store-links a:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(77, 163, 209, 0.2);
    text-decoration: none;
}

/* Contact Section - Enhanced Background */
.contact-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 249, 250, 0.97) 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(77, 163, 209, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 0% 0%, rgba(255, 107, 53, 0.08) 0%, transparent 70%),
        linear-gradient(45deg, rgba(77, 163, 209, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 107, 53, 0.03) 25%, transparent 25%);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    animation: backgroundShift 20s ease-in-out infinite alternate;
    pointer-events: none;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(77, 163, 209, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(77, 163, 209, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(77, 163, 209, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(77, 163, 209, 0.12);
    border: 1px solid rgba(77, 163, 209, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .features-section::before,
    .store-directory::before,
    .contact-section::before {
        background-size: 150% 150%, 150% 150%, 40px 40px, 40px 40px;
    }

    .features-section,
    .store-directory,
    .contact-section {
        padding: 6rem 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .features-section::before,
    .store-directory::before,
    .contact-section::before {
        background-size: 200% 200%, 200% 200%, 30px 30px, 30px 30px;
    }

    .features-section,
    .store-directory,
    .contact-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

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

    .store-card.premium {
        padding: 2.5rem;
    }
}

/* Premium Stores Section */
.premium-stores-section {
    margin-bottom: 6rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.premium-stores-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(77, 163, 209, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.premium-section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-family: var(--heading-font);
    position: relative;
    z-index: 1;
}

.premium-stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Regular Stores Section */
.regular-stores-section {
    margin-top: 4rem;
}

.regular-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-family: var(--heading-font);
}

/* Update premium card styling for the new layout */
.premium-stores-grid .store-card.premium {
    grid-column: span 1;
    max-width: none;
    margin-bottom: 0;
    width: 100%;
}

/* Custom Store Grid for regular stores */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0;
    position: relative;
}