:root {
    /* Bright Premium Color Palette */
    --primary-color: #ff0066; /* Vibrant Pink from mm3288 Logo */
    --secondary-color: #f8fafc; /* Very Light Blue-Gray */
    --accent-color: #0f172a; /* Slate 900 for dark accents */
    --text-main: #0f172a; /* Slate 900 */
    --text-muted: #475569; /* Slate 600 */
    --bg-main: #ffffff;
    --bg-alt: #f1f5f9; /* Slate 100 */
    
    /* Variables */
    --border-radius: 16px;
    --card-shadow: 0 20px 40px -10px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.02);
    --hover-shadow: 0 30px 60px -12px rgba(37, 99, 235, 0.15), 0 4px 6px rgba(0,0,0,0.02);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
    color: var(--text-main);
}

body {
    background-color: var(--bg-main);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Outfit', sans-serif;
}

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

/* Typography */
h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.1; letter-spacing: -1px; }
h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; }
p { font-size: 1rem; line-height: 1.6; color: var(--text-muted); }
.highlight { color: var(--primary-color); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background-color: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.btn-primary-outline {
    background: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px;
}
.btn-primary-outline:hover {
    background: var(--primary-color);
    color: white !important;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
    background-color: #0c0f1a;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* General Sections */
section {
    padding: 8rem 0;
}

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

/* Benefits Grid */
.benefits-section {
    background-color: var(--bg-main);
    position: relative;
    padding-bottom: 2rem;
}

.line-pattern {
    position: relative;
}

.line-pattern::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    border-radius: 50%;
}

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

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(37, 99, 235, 0.1);
}

.icon-wrap {
    width: 50px;
    height: 50px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.benefit-card:hover .icon-wrap {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Stores Showcase */
.stores-section {
    background-color: var(--bg-main);
    padding-top: 2rem;
}

.store-showcase {
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.store-showcase:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.store-showcase.reverse {
    flex-direction: row-reverse;
}

.store-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s ease;
}

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

.store-info {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.store-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

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

.store-desc {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.store-btn .arrow {
    margin-left: 8px;
    transition: transform 0.3s;
}

.store-btn:hover .arrow {
    transform: translateX(4px);
}

/* Footer Section */
.footer {
    background-color: #ffffff;
    color: var(--text-main);
    padding: 6rem 0 0 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

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

.footer-brand h2 {
    color: var(--text-main);
}

.footer-contact h3, .footer-office h3 {
    color: var(--text-main);
    font-size: 1.2rem;
}

.contact-methods {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary-color);
}

.contact-link .icon {
    margin-right: 12px;
}

.office-details {
    list-style: none;
    margin-top: 1.5rem;
}

.office-details li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.office-details strong {
    color: var(--text-main);
}

.footer-bottom {
    background-color: var(--bg-main);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 900px) {
    .store-showcase, .store-showcase.reverse {
        flex-direction: column;
    }
    .store-image {
        width: 100%;
        min-height: 300px;
    }
    .store-info {
        padding: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple hidden nav for mobile */
    }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-cta-group {
        flex-direction: column;
    }
    .hero { padding: 4rem 1.5rem; }
    .store-info { padding: 2rem; }
}
