/* =========================================
   VARIABLES & BASE STYLES
   ========================================= */
:root {
    /* Color Palette - Premium Red, Deep Blacks, Sleek Grays */
    --color-primary: #d30000;      /* Deep Vibrant Red */
    --color-primary-dark: #990000; /* Richer Dark Red */
    --color-black: #080808;        /* Very Deep Black */
    --color-gray-dark: #1f1f1f;
    --color-gray-light: #f7f7f9;
    --color-white: #ffffff;
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Layout */
    --container-width: 1440px; 
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 15px 35px rgba(211, 0, 0, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-white);
    color: var(--color-gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .card-title, .h4-heading, .h3-heading {
    color: var(--color-black);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.text-red {
    color: var(--color-primary);
}

.text-white {
    color: var(--color-white);
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 10px;
}

.bg-light {
    background-color: var(--color-gray-light);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 0, 0, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--glass-border);
    transition: var(--transition);
}

.header.scrolled .nav-container {
    padding: 10px 0;
}

.header.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header.scrolled .promo-ticker {
    max-height: 0;
    padding: 0;
}

/* Promo Ticker Strip */
.promo-ticker {
    background-color: var(--color-black);
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    max-height: 40px;
    transition: var(--transition);
}

.promo-track {
    display: inline-flex;
    animation: scrollPromo 22s linear infinite;
}

.promo-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 0.82rem;
    font-weight: 600;
    margin-right: 50px;
}

.promo-track span i {
    color: var(--color-primary);
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: var(--transition);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-black);
    letter-spacing: -1px;
}

.logo-dot {
    color: var(--color-primary);
}

.logo-tagline {
    margin-top: 3px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gray-dark);
}

.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 600;
    color: var(--color-black);
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

.contact-pill {
    background-color: var(--color-gray-light);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--color-black);
    border: 1px solid #eee;
}

.contact-pill i {
    color: var(--color-primary);
    margin-right: 8px;
}

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

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 130px; /* Offset for fixed header + promo ticker */
    padding-bottom: 70px; /* Breathing room before the next section */
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(230,0,0,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 750px; /* Increased to allow wider text area */
    padding-right: 40px;
    animation: fadeUp 1s ease forwards;
}

.badge {
    display: inline-flex;
    align-items: stretch;
    margin-bottom: 20px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(230, 0, 0, 0.2);
}

.badge-tag,
.badge-highlight {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.badge-tag {
    background-color: var(--color-black);
    color: var(--color-white);
}

.badge-highlight {
    background-color: var(--color-primary);
    color: var(--color-white);
    animation: badgePulse 2.4s ease-in-out infinite;
}

.badge-highlight i {
    color: #ffd54a;
}

@keyframes badgePulse {
    0%, 100% { background-color: var(--color-primary); }
    50% { background-color: var(--color-primary-dark); }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.rotating-word {
    display: inline-block;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.rotating-word.word-swap {
    opacity: 0;
    transform: translateY(10px);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid #eaeaea;
    padding-top: 26px;
}

.stat-item {
    flex: 0 0 auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-black);
}

.stat-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    animation: fadeLeft 1s ease forwards;
}

.hero-info-card {
    position: absolute;
    left: -20px;
    bottom: 10px;
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.hero-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-black);
    white-space: nowrap;
}

.hero-info-row i {
    color: var(--color-primary);
    width: 18px;
    text-align: center;
}

.hero-scroll-card {
    position: absolute;
    top: 0;
    right: -10px;
    width: 200px;
    height: 230px;
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 2;
    padding: 12px 0;
}

.hero-scroll-card::before,
.hero-scroll-card::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 36px;
    z-index: 2;
    pointer-events: none;
}

.hero-scroll-card::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.hero-scroll-card::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.hero-scroll-track {
    display: flex;
    flex-direction: column;
    animation: scrollUp 12s linear infinite;
}

.scroll-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-black);
    white-space: nowrap;
}

.scroll-item i {
    color: var(--color-primary);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Abstract Graphic for Hero */
.promo-banner-container {
    position: relative;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    margin: 0;
}

.promo-badge {
    background: var(--color-white);
    color: var(--color-black);
    text-align: center;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 10;
    border-bottom: 1px solid #eee;
}

.promo-actions {
    width: 100%;
    padding: 10px;
    display: flex;
    gap: 10px;
    background: var(--color-white);
    z-index: 10;
    justify-content: center;
}

.promo-btn {
    flex: 1;
    padding: 10px 5px;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.hero-image-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    display: flex;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}



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

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

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

/* =========================================
   WHOLESALE & RETAIL BANNER
   ========================================= */
.wholesale {
    background-color: var(--color-black);
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.wholesale-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.wholesale-col {
    flex: 1;
    max-width: 480px;
    text-align: center;
    color: var(--color-white);
}

.wholesale-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(230, 0, 0, 0.15);
    color: var(--color-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.wholesale-col h3, .wholesale-col .h3-heading {
    color: var(--color-white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.wholesale-col p {
    color: #bbbbbb;
    margin-bottom: 20px;
}

.wholesale-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--color-primary);
}

.wholesale-link:hover {
    color: var(--color-white);
    gap: 12px;
}

.wholesale-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* =========================================
   CATALOG SECTION
   ========================================= */
.section-header {
    margin-bottom: 60px;
}

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

.section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background-color: var(--color-white);
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(230,0,0,0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: var(--shadow-hover);
}

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

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--color-gray-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 25px;
    transition: var(--transition);
}

.product-card:hover .card-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1) rotate(-5deg);
}

.card-image-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}


.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-desc {
    color: var(--color-gray-dark);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--color-black);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    background-image: linear-gradient(45deg, #111 25%, #1a1a1a 25%, #1a1a1a 50%, #111 50%, #111 75%, #1a1a1a 75%, #1a1a1a 100%);
    background-size: 40px 40px;
}

.cta-banner-content h3, .cta-banner-content .h3-heading {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-banner-content p {
    color: #ccc;
    font-size: 1.1rem;
}

/* =========================================
   BRANDS SECTION
   ========================================= */
.brands {
    background-color: var(--color-white);
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.brands-track {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    animation: scrollBrands 38s linear infinite;
    padding: 0 40px;
}

.brand-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    color: var(--color-gray-dark);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 40px)); } /* Scroll half the track width */
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: var(--color-white);
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.why-card .info-icon {
    margin: 0 auto 20px;
}

.why-card h4, .why-card .h4-heading {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--color-gray-dark);
    font-size: 0.95rem;
}

/* =========================================
   VISIT US SECTION
   ========================================= */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.info-card:hover {
    transform: translateX(10px);
    border-left-color: var(--color-primary);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(230, 0, 0, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text h4, .info-text .h4-heading {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-text p {
    color: var(--color-gray-dark);
}

.review-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    min-height: 400px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--color-black);
    color: #a0a0a0;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer h4, .footer .h4-heading {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px 0;
    text-align: center;
}

/* =========================================
   FLOATING WHATSAPP BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulseWhatsapp 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background-color: #1ebe57;
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .wholesale-banner {
        flex-direction: column;
    }

    .wholesale-divider {
        transform: rotate(90deg);
    }

    .hero-image-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-info-card {
        position: static;
        margin: 0;
        width: fit-content;
    }

    .hero-scroll-card {
        position: static;
        margin: 0;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .promo-track span {
        font-size: 0.72rem;
        margin-right: 30px;
    }

    .badge {
        flex-direction: column;
        border-radius: 14px;
        align-items: stretch;
    }

    .badge-tag,
    .badge-highlight {
        justify-content: center;
        border-radius: 0;
    }

    .nav-menu {
        position: fixed;
        top: 106px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 106px);
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    .contact-pill {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }

    .stat-item {
        font-size: 0.9rem;
    }
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
