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

:root {
    --primary: #FFD700;
    --secondary: #FFC107;
    --accent: #FFEB3B;
    --dark: #1a1a1a;
    --darker: #000000;
    --light: #FFFFFF;
    --gray: #888888;
    --light-gray: #F5F5F5;
    --border: #333333;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-top: 3px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    position: relative;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.nav-call-btn::after {
    display: none;
}

.nav-links a.nav-call-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.nav-links a.nav-call-btn i {
    margin-right: 0.5rem;
}

.nav-links a.nav-call-btn::before {
    display: none; /* Remove the ::before icon since we're using the <i> tag */
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--darker);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.model-image {
    position: absolute;
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
    z-index: 2;
    transform: translateX(50%);
}

.model-image:hover {
    transform: translateX(50%) scale(1.02);
}

.hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    z-index: 1;
}

.hero-image:hover {
    transform: scale(1.02) rotate(1deg);
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: rgba(26, 26, 26, 0.95);
    position: relative;
    backdrop-filter: blur(5px);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--light);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

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

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile-First Media Queries */
@media (max-width: 768px) {
    .hero-container {
        display: block;
        padding: 1rem;
        gap: 2rem;
        margin-top: 80px; /* Add margin to account for fixed header */
    }

    .hero-content {
        order: 2;
        text-align: center;
        padding: 1rem;
        width: 100%;
    }

    .hero-visual {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .model-image {
        width: 80%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }

    .hero-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 16px;
        margin: 0 auto;
    }

    .hero-badge {
        margin: 0 auto 1.5rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .nav {
        padding: 0.8rem 1rem;
    }

    .logo img {
        height: 35px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a::before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        width: 20px;
        text-align: center;
        color: var(--primary);
    }

    .nav-links a[href="#home"]::before,
    .nav-links a[href="index.html"]::before {
        content: "\f015"; /* home icon */
    }

    .nav-links a[href="index.html#about"]::before {
        content: "\f129"; /* info circle icon */
    }

    .nav-links a[href="franchise.html"]::before {
        content: "\f1ad"; /* store icon */
    }

    .nav-links a[href="stores.html"]::before {
        content: "\f3c5"; /* map marker icon */
    }

    .nav-links a[href="for-brands.html"]::before {
        content: "\f0c0"; /* users icon */
    }

    .nav-links a[href="index.html#contact"]::before {
        content: "\f0e0"; /* envelope icon */
    }

    .nav-links a.nav-call-btn {
        margin-top: 1rem;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: var(--darker) !important;
        padding: 1rem;
        border-radius: 12px;
        justify-content: center;
        font-weight: 600;
        width: 100%;
        text-align: center;
        border: none;
    }

    .nav-links a.nav-call-btn i {
        margin-right: 0.5rem;
    }

    .nav-links a.nav-call-btn::before {
        display: none; /* Remove the ::before icon since we're using the <i> tag */
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .footer-column {
        text-align: left;
    }

    .footer-column h3::after {
        left: 0;
        transform: none;
    }

    .contact-info li {
        justify-content: flex-start;
    }

    .social-links {
        justify-content: flex-start;
    }

    .newsletter-form {
        text-align: left;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .model-image {
        width: 90%;
    }

    .hero-image {
        width: 100%;
    }

    .hero-buttons .btn {
        font-size: 1rem;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-container {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .model-image {
        width: 60%;
    }
}

/* Tablet Devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        padding: 2rem;
    }

    .hero-content {
        padding: 2rem;
    }

    .brands-form-card {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.animated-stripe {
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(90deg, #FFD700 0 30px, #fff 30px 60px);
    background-size: 120px 3px;
    animation: stripe-move 15s linear infinite;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
}

@keyframes stripe-move {
    0% { background-position-x: 0; }
    100% { background-position-x: 120px; }
}

.intro {
    padding: 5rem 2rem 4rem 2rem;
    background: linear-gradient(120deg, rgba(26,26,26,0.98) 10%, var(--dark) 35%, var(--darker) 60%, rgba(255,215,0,0.04) 90%, rgba(26,26,26,0.98) 100%);
    position: relative;
    backdrop-filter: blur(4px);
    background-size: 300% 300%;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.intro-header {
    margin-bottom: 2.5rem;
}

.intro-title {
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.intro-title i {
    color: var(--primary);
    font-size: 2.2rem;
    vertical-align: middle;
}

.intro-description {
    color: var(--gray);
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 900px;
    text-align: justify;
}

.intro-mv {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.intro-mission, .intro-vision {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(255,215,0,0.04);
    min-width: 260px;
    max-width: 420px;
    flex: 1 1 300px;
}

.intro-mission::before, .intro-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.intro-mission:hover, .intro-vision:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.intro-mission:hover::before, .intro-vision:hover::before {
    opacity: 0.05;
}

.intro-mission h3, .intro-vision h3 {
    position: relative;
    z-index: 1;
}

.intro-mission p, .intro-vision p {
    position: relative;
    z-index: 1;
    text-align: center;
}

@media (max-width: 900px) {
    .intro-mv {
        flex-direction: column;
        gap: 1.5rem;
    }
    .intro-mission, .intro-vision {
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
}

.highlight {
    background: linear-gradient(90deg, var(--primary) 10%, var(--secondary) 90%);
    color: var(--darker);
    padding: 0.1em 0.4em;
    border-radius: 0.4em;
    font-weight: 600;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    transition: background 0.3s, color 0.3s;
}

.highlight-number {
    background: var(--secondary);
    color: var(--darker);
    padding: 0.1em 0.5em;
    border-radius: 0.4em;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(255,193,7,0.08);
}

.intro-video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    margin: 2rem auto 2rem auto;
    max-width: 900px;
    width: 100%;
}

.intro-video video {
    width: 100%;
    height: 100%;
    max-height: 400px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: #000;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: background 0.2s, transform 0.2s;
    border: 2px solid var(--primary);
    outline: none;
}

.video-play-btn:hover, .video-play-btn:focus {
    background: rgba(255, 215, 0, 0.85);
    color: var(--darker);
    transform: translate(-50%, -50%) scale(1.08);
    border-color: var(--secondary);
}

.video-play-btn i {
    margin-left: 4px;
}

#aboutVideo[controls]::-webkit-media-controls-panel {
    background: rgba(0,0,0,0.5);
}

@media (max-width: 1000px) {
    .intro-video {
        min-height: 220px;
        max-width: 100%;
    }
    .video-play-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

.testimonials {
    padding: 5rem 2rem 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    margin-bottom: 2.5rem;
}

.testimonials-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    animation: none;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonials-carousel video {
    width: 100%;
    height: 480px;
    aspect-ratio: 9/16;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    background: #000;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.carousel-arrow, .carousel-arrow.left, .carousel-arrow.right { display: none !important; }

@media (max-width: 1200px) {
    .testimonials-carousel {
        max-width: 900px;
        grid-template-columns: repeat(4, 1fr);
    }
    .testimonials-carousel video {
        height: 400px;
    }
}

@media (max-width: 900px) {
    .testimonials-carousel {
        max-width: 600px;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .testimonials-carousel video {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0.8rem;
    }
    .testimonials-carousel video {
        height: 250px;
    }
}

.testimonial-video-wrapper {
    position: relative;
    display: inline-block;
}
.mute-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(0,0,0,0.7);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
    outline: none;
}
.mute-btn:hover, .mute-btn:focus {
    background: var(--primary);
    color: var(--darker);
}
.mute-btn i {
    pointer-events: none;
} 


/* Innovation Section */
.innovation {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.innovation-container {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s;
    transform: translate(-50%, -50%);
}

.floating-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.innovation-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.innovation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(147, 51, 234, 0.9));
    color: var(--light);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.innovation-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.innovation-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.innovation-btn {
    margin-top: 1rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.innovation-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Responsive Design for Innovation Section */
@media (max-width: 768px) {
    .innovation {
        min-height: 100vh;
    }
    .innovation-container {
        height: 100vh;
    }
    .floating-icons {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
    }
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    .floating-icon img {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    .innovation-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .floating-icon {
        width: 40px;
        height: 40px;
    }
    .floating-icon img {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }
}

@keyframes rotate-circle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}


/* Footer Section */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    padding: 4rem 2rem 2rem;
    position: relative;
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray);
}

.contact-info i {
    color: var(--primary);
    font-size: 1.1rem;
}

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

.social-links a {
    color: var(--gray);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-column {
        text-align: left;
    }

    .footer-column h3::after {
        left: 0;
        transform: none;
    }

    .contact-info li {
        justify-content: flex-start;
    }

    .social-links {
        justify-content: flex-start;
    }

    .newsletter-form {
        text-align: left;
    }
}

/* Franchise Hero Section */
.franchise-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    opacity: 0.1;
    pointer-events: none;
}

.franchise-hero .hero-container {
    position: relative;
    z-index: 2;
}

.franchise-hero .hero-content {
    padding-right: 40px;
    animation: fadeInUp 1s ease-out;
}

.franchise-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.franchise-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.franchise-hero p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
}

/* Franchise Form Card */
.franchise-form-card {
    background: var(--dark);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    animation: fadeInRight 1s ease-out 0.4s both;
    margin-top: 20px;
}

.franchise-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--light);
    text-align: center;
}

.franchise-form .form-group {
    margin-bottom: 20px;
}

.franchise-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.franchise-form .form-row .form-group {
    margin-bottom: 0;
}

.franchise-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray);
}

.franchise-form input,
.franchise-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    transition: all 0.3s ease;
}

.franchise-form input:focus,
.franchise-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.franchise-form input::placeholder {
    color: var(--gray);
}

.franchise-form select option {
    background: var(--darker);
    color: var(--light);
}

.franchise-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 8px;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.franchise-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.franchise-form button:active {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .franchise-hero .hero-container {
        grid-template-columns: 1fr;
    }

    .franchise-hero .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .franchise-hero .hero-badge {
        margin: 0 auto 24px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .franchise-form-card {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .franchise-hero {
        padding: 60px 0;
    }

    .franchise-hero h1 {
        font-size: 2.2rem;
    }

    .franchise-form-card {
        padding: 30px 20px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .franchise-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--darker);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.fullscreen-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.fullscreen-btn:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translate(-50%, -50%) scale(1.1);
}

.fullscreen-btn i {
    transition: transform 0.3s ease;
}

.fullscreen-btn:hover i {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .video-section {
        height: 60vh;
    }
    
    .fullscreen-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    position: relative;
    text-align: center;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq .section-subtitle {
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

.faq-answer ul {
    text-align: left;
    padding-left: 20px;
    margin: 15px 0;
}

.faq-answer li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.back-to-top {
    display: block;
    text-align: center;
    margin-top: 2rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

.back-to-top i {
    margin-right: 0.5rem;
}

.scroll-to-form {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.scroll-to-form:hover {
    color: var(--secondary);
    text-decoration: underline;
}

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

.spanPrimary a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.spanPrimary a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .faq-answer p {
        padding: 1.2rem;
    }
}

/* Stores Page Styles */
.stores-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    text-align: center;
}

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

.search-box {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
    position: relative;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.search-box input::placeholder {
    color: var(--gray);
}

.search-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    color: var(--darker);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.stores-list {
    padding: 4rem 0;
    background: var(--darker);
}

.states-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.state-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.state-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--light);
    position: relative;
    padding-bottom: 1rem;
}

.state-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

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

.store-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.store-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

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

.store-info {
    position: relative;
    z-index: 1;
}

.store-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-info p {
    color: var(--gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.6;
}

.store-info i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.store-info a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.store-info a:hover {
    color: var(--primary);
}

.store-actions {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.store-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.store-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.store-actions .btn i {
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .stores-hero {
        padding: 100px 0 40px;
    }

    .search-box {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
    }

    .state-section {
        padding: 1.5rem;
    }

    .state-title {
        font-size: 1.8rem;
    }

    .stores-grid {
        grid-template-columns: 1fr;
    }

    .store-card {
        padding: 1.5rem;
    }

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

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

/* Call Button */
.call-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
    color: var(--darker);
    text-decoration: none;
}

.call-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .whatsapp-btn, .call-btn {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
        right: 20px;
    }
    
    .whatsapp-btn {
        bottom: 20px;
    }
    
    .call-btn {
        bottom: 80px;
    }
}

/* Brands Form Styles */
.brands-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brands-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.brands-form-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.brands-form label {
    display: block;
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.brands-form input,
.brands-form select,
.brands-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.brands-form input:focus,
.brands-form select:focus,
.brands-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.brands-form input::placeholder,
.brands-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.brands-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.brands-form select option {
    background: var(--dark);
    color: var(--light);
    padding: 0.8rem;
}

.brands-form select option:first-child {
    color: rgba(255, 255, 255, 0.5);
}

.brands-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.brands-form textarea {
    resize: vertical;
    min-height: 100px;
}

.brands-form button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 8px;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.brands-form button:active {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .brands-form-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .brands-form-card {
        padding: 1.5rem;
    }
    
    .brands-form-card h3 {
        font-size: 1.3rem;
    }
    
    .brands-form input,
    .brands-form select,
    .brands-form textarea {
        padding: 0.7rem 0.9rem;
    }
}

/* Mailchimp Form Response Styles */
#mce-responses {
    margin: 1rem 0;
}

#mce-error-response,
#mce-success-response {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

#mce-error-response {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
}

#mce-success-response {
    background: rgba(0, 255, 0, 0.1);
    color: #00C851;
}

/* Hidden Form Elements */
.hidden-input {
    position: absolute;
    left: -5000px;
}

/* Google Tag Manager */
.gtm-noscript {
    display: none;
    visibility: hidden;
}

/* Facebook Pixel */
.fb-pixel {
    height: 1px;
    width: 1px;
}

/* Growth Metrics Section */
.growth-metrics {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    position: relative;
    text-align: center;
}

.growth-container {
    max-width: 1400px;
    margin: 0 auto;
}

.growth-metrics .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.growth-metrics .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.growth-metrics .section-subtitle {
    text-align: center;
    margin: 0 auto;
}

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

.metric-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.metric-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.metric-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--light);
    text-align: center;
}

.graph-container {
    width: 100%;
    height: 300px;
    position: relative;
}

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

@media (max-width: 576px) {
    .growth-metrics {
        padding: 4rem 1rem;
    }
    
    .metric-card {
        padding: 1.5rem;
    }
    
    .graph-container {
        height: 250px;
    }
}