:root {
    --primary: #FF9800; /* Orange matching the flyer */
    --primary-hover: #E68900;
    --teal: #00E5FF; /* Teal matching the footer banner */
    --teal-dark: #00BFA5;
    --dark: #111111;
    --dark-light: #222222;
    --light: #F9FAFB;
    --gray: #6B7280;
    --border: #E5E7EB;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    color: var(--gray);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
    color: var(--dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    padding: 1.5rem 0;
}

header.scrolled {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

header.scrolled .nav-links a {
    color: var(--dark);
}

header.scrolled .btn-nav {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 42px;
    width: auto;
    transition: var(--transition);
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

header.scrolled .logo-light {
    display: none;
}

header.scrolled .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--primary);
}

.btn-nav {
    padding: 0.6rem 1.25rem;
    border: 2px solid var(--white);
    border-radius: 6px;
    color: var(--white);
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--white);
    font-size: 1.5rem;
}

header.scrolled .hamburger {
    color: var(--dark);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: bgZoom 20s infinite alternate linear;
}

@keyframes bgZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 152, 0, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

/* How It Works */
#how-it-works {
    background-color: var(--light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--primary);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 152, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--primary);
    color: var(--dark);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.step-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.why-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(255,152,0,0.2), transparent);
}

.why-features {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--dark);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    margin: 0;
    font-size: 0.95rem;
}

/* Flyer Pricing Section */
.bg-orange {
    background-color: var(--primary);
    position: relative;
}

.bg-orange::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.15) 10%, transparent 10.01%);
    background-size: 40px 40px;
    pointer-events: none;
}

.pricing-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.price-card-flyer {
    background: #FFD54F; /* Light yellow matching flyer inner boxes */
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.price-card-flyer:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pkg-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pkg-letter {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

.bg-teal { background-color: var(--teal-dark); }
.text-teal { color: var(--teal-dark); }

.pkg-title-wrap h4 {
    margin: 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--dark);
}

.pkg-title-wrap .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.pkg-desc {
    color: #333;
    font-weight: 500;
    margin-bottom: 2rem;
    min-height: 48px;
}

.features-list-flyer {
    margin-bottom: 2.5rem;
}

.features-list-flyer li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.features-list-flyer li i {
    margin-top: 5px;
}

.btn-pkg {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
    width: 100%;
}

.btn-pkg:hover {
    background: var(--dark);
    color: var(--white);
}

.mt-auto {
    margin-top: auto;
}

/* Testimonials */
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.test-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.quote-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.test-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

/* Stats */
#stats {
    background: var(--primary);
    color: var(--dark);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(17, 17, 17, 0.8);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact CTA */
#contact {
    background: var(--dark);
    color: var(--white);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-info p {
    color: #9CA3AF;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
}

.form-control.error {
    border-color: #EF4444;
}

.error-text {
    color: #EF4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

#form-success {
    display: none;
    background: var(--teal-dark);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

/* Footer Banner */
.footer-banner {
    background-color: var(--teal);
    padding: 1.5rem 0;
    color: var(--dark);
}

.banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-item {
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-label {
    background: var(--dark);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: #9CA3AF;
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    max-width: 300px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid-2x2 { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .test-grid { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: -1;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        color: var(--dark);
        font-size: 1.125rem;
    }

    .btn-nav {
        color: var(--dark);
        border-color: var(--primary);
        background: var(--primary);
    }

    .hamburger { display: block; }
    .logo-img { height: 34px; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.125rem; }
    .hero-btns { flex-direction: column; }
    .btn { width: 100%; }

    .why-grid { grid-template-columns: 1fr; }
    
    .stats-grid { grid-template-columns: 1fr; gap: 3rem; }
    
    .banner-flex { flex-direction: column; align-items: flex-start; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand .logo { justify-content: center; }
    .footer-brand p { margin: 0 auto; }
}
.bg-dark-dotted {
    background-color: var(--dark);
    position: relative;
}

.bg-dark-dotted::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(255, 204, 8, 0.15) 10%, transparent 10.01%);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.bg-dark-dotted .container {
    position: relative;
    z-index: 2;
}
/* WhatsApp Floating Widget */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-5px);
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}
/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #D1D5DB;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}