/* ==========================================================================
   Base & Variables
   ========================================================================== */
:root {
    /* Colors - Premium Palette */
    --primary: #f03e3e;
    /* Modern Premium Red */
    --primary-hover: #e03131;
    --primary-glow: rgba(240, 62, 62, 0.3);

    --accent-blue: #0ea5e9;
    --accent-green: #10b981;

    --bg-main: #f8fafc;
    /* Brighter modern background */
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --bg-darker: #0b0f19;
    --bg-footer: #080c14;

    --text-dark: #0f172a;
    --text-body: #475569;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout & Styling */
    --container-width: 1240px;
    --border-radius-lg: 24px;
    /* Adjusted for organic soft look */
    --border-radius-md: 16px;
    --border-radius-sm: 8px;

    /* Transitions & Shadows */
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);

    /* Diffused shadows for premium look */
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 12px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.12), 0 12px 24px -8px rgba(15, 23, 42, 0.06);
    --shadow-glow: 0 0 20px var(--primary-glow);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
    background: var(--bg-main);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Gradient Text Effect */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8787 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Hover Physics for Cards */
.feature-card,
.info-card,
.review-card {
    transition: var(--transition);
}

.feature-card:hover,
.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(15, 23, 42, 0.05);
    border-color: rgba(240, 62, 62, 0.4) !important;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 2000;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(to right, #ef4444, #fca5a5);
    width: 0%;
    transition: width 0.1s;
}

/* Scroll Indicator Bouncing Arrow */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.7;
    z-index: 10;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.03em;
    /* Sleeker heading typography */
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #fa5252 100%);
    color: white;
    box-shadow: 0 8px 20px 0 var(--primary-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fa5252 0%, var(--primary-hover) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px 0 rgba(240, 62, 62, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(1px) scale(0.98);
}

.btn-white {
    background-color: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 255, 255, 0.4);
    color: var(--primary-hover);
}

.btn-white:active {
    transform: translateY(1px) scale(0.98);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

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

.navbar.scrolled .logo {
    color: var(--text-dark);
}

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

.nav-links a {
    font-weight: 500;
    color: white;
    font-size: 1rem;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text-body);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.nav-mobile-btn {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.navbar.scrolled .nav-mobile-btn {
    color: var(--text-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 5rem;
}

.hero h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: 0 0 40px var(--primary-glow);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
    padding: 6rem 0;
    background-color: var(--bg-main);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-darker));
    color: white;
    padding: 2.5rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle highlight */
    border-bottom: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(15, 23, 42, 0.1);
    border-color: rgba(240, 62, 62, 0.4) !important;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.icon-blue {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-blue);
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* ==========================================================================
   Services Banner
   ========================================================================== */
.services-banner {
    background: linear-gradient(135deg, var(--bg-darker) 0%, #3b0a0a 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(240, 62, 62, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.banner-text h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: var(--bg-footer);
    color: var(--text-light);
    padding-top: 5rem;
}

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

.brand-col p {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 350px;
}

.footer-logo {
    color: white;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.links-col ul li {
    margin-bottom: 0.75rem;
}

.links-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.legal-links a {
    color: var(--text-muted);
}

.legal-links a:hover {
    color: white;
}

.divider {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    padding: 1.5rem 0;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    justify-content: center;
}

#cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 900px) {
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }

    .cookie-buttons {
        flex-wrap: nowrap;
    }
}

@media (max-width: 900px) {

    body,
    html {
        overflow-x: hidden;
    }

    .container {
        padding: 0 1.25rem;
    }

    /* === Navbar === */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        display: flex;
        gap: 3rem;
        box-shadow: none;
    }

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

    .nav-links a {
        font-size: 2.2rem;
        color: white;
        font-weight: 500;
        opacity: 0.7;
        padding: 0;
        border: none;
        transition: all 0.3s ease;
    }

    .navbar.scrolled .nav-links a { color: white; }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary) !important;
        opacity: 1;
        transform: scale(1.1);
    }

    .nav-mobile-btn {
        display: block;
        z-index: 1001;
        position: relative;
        font-size: 2.2rem;
        color: #fff;
    }

    /* === Hero === */
    .hero {
        min-height: 90vh;
        padding-top: 5rem;
        background-attachment: scroll !important;
    }

    .hero h1 {
        font-size: 2.6rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding-top: 2rem;
        max-width: 100%;
    }

    /* === Buttons === */
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1.1rem;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    /* === Section Titles === */
    .section-title h2 { font-size: 1.9rem !important; }
    .section-title p { font-size: 1rem; }
    h2 { font-size: 1.9rem !important; }

    /* === Services Section === */
    .services-section { padding: 4rem 0; }
    .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .service-card { padding: 2rem 1.5rem; }

    /* === Features Section === */
    .features { padding: 4rem 0; }
    .features-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .feature-card { padding: 1.75rem 1.5rem; }

    /* === Stats === */
    .stats-section { padding: 3.5rem 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number-wrap { font-size: 2.8rem; }

    /* === How It Works === */
    .how-it-works { padding: 4rem 0; }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    .step-card { padding: 1.75rem 1.25rem; }
    .step-number { font-size: 2.2rem; }

    /* === Services Banner === */
    .services-banner { padding: 3.5rem 0; }
    .banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .banner-text h2 { font-size: 1.6rem; }

    /* === Footer === */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact-info li { justify-content: center; }
    .social-links { justify-content: center; }
    .links-col ul { padding: 0; }

    /* === Page headers (inner pages) === */
    .responsive-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .page-header { padding: 8rem 1rem 4rem 1rem !important; }
    .page-header h1 { font-size: 2.2rem !important; }

    section[style*="padding: 6rem"],
    section[style*="padding: 5rem"] {
        padding: 4rem 0 !important;
    }

    /* === Gallery === */
    .gallery-content { padding: 3rem 0 !important; }

    /* === Brands === */
    .brands-section-dark { padding: 3.5rem 0; }

    /* === Contact Page === */
    .contact-layout { padding: 7rem 0 4rem !important; }

    /* Tally form on mobile */
    .contact-layout iframe { height: 500px !important; }

    /* === WhatsApp button — smaller on mobile === */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .whatsapp-float .wa-tooltip { display: none; }
}


@media (max-width: 600px) {
    /* Hero */
    .hero h1 { font-size: 2rem !important; }
    .hero-content p { font-size: 0.95rem !important; }
    .scroll-indicator { display: none; }

    /* Steps → 1 column */
    .steps-grid { grid-template-columns: 1fr !important; }

    /* Stats → 2 columns smaller */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .stat-number-wrap { font-size: 2.2rem; }
    .stat-item { padding: 1.5rem 0.75rem; }

    /* Services banner */
    .banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    /* Footer bottom */
    .bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Reviews marquee */
    .review-card {
        min-width: 82vw !important;
        max-width: 82vw !important;
    }

    /* Gallery → 1 column */
    div[style*="grid-template-columns: repeat(auto-fill"] {
        grid-template-columns: 1fr !important;
    }

    /* Brands grid → 1 column */
    div[style*="repeat(auto-fit, minmax(280px"] {
        grid-template-columns: 1fr !important;
    }

    /* Page header */
    .page-header h1 { font-size: 1.9rem !important; }

    /* Section titles */
    .section-title h2 { font-size: 1.7rem !important; }
    h2 { font-size: 1.7rem !important; }

    /* Contact info cards */
    .info-card { flex-direction: column; text-align: center; }
}

/* === Extra small phones (< 400px) === */
@media (max-width: 400px) {
    .hero h1 { font-size: 1.75rem !important; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number-wrap { font-size: 1.9rem; }
    .container { padding: 0 1rem; }
    .section-title h2 { font-size: 1.5rem !important; }
    .step-number { font-size: 1.8rem; }
    .step-icon { width: 46px; height: 46px; font-size: 1.3rem; }
    .feature-card, .service-card { padding: 1.25rem 1rem; }
    .logo { font-size: 1.4rem; }
}


/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 9000;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition-fast);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2.5s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.9); opacity: 0; }
}

/* Tooltip */
.whatsapp-float .wa-tooltip {
    position: absolute;
    right: 72px;
    background: #0f172a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: var(--font-body);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

/* ==========================================================================
   Stats Counter Section
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 62, 62, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
    border-radius: var(--border-radius-lg);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 3px solid var(--primary);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-6px);
}

.stat-number-wrap {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.75rem;
}

.stat-number {
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    color: var(--primary);
}

.stat-item p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
}

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

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .stat-number-wrap {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   Services Section (Home)
   ========================================================================== */
.services-section {
    padding: 6rem 0;
    background: var(--bg-main);
}

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

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    border-bottom: 4px solid var(--primary);
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(240,62,62,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(240,62,62,0.12), rgba(240,62,62,0.06));
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), #fa5252);
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

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

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(240,62,62,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.how-it-works .section-title h2 {
    color: white;
}

.how-it-works .section-title p {
    color: #94a3b8;
}

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

/* Connecting line removed */

.step-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-6px);
    border-color: rgba(240,62,62,0.3);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), #fa5252);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(240,62,62,0.35);
}

.step-card h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid::before { display: none; }
}

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

/* ==========================================================================
   Coloured Review Avatars
   ========================================================================== */
.reviewer-avatar {
    background: var(--avatar-bg, linear-gradient(135deg, #6366f1, #8b5cf6)) !important;
    color: white !important;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border: none !important;
}

/* ==========================================================================
   Dark Brands Section (for galeria.html)
   ========================================================================== */
.brands-section-dark {
    padding: 5rem 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.brands-section-dark h2 {
    color: white !important;
}

.brands-section-dark > .container > p {
    color: #94a3b8 !important;
}

.brand-card-dark {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    background: #ffffff;
    border: none;
    border-bottom: 4px solid var(--primary);
    text-align: left;
    transition: var(--transition);
}

.brand-card-dark:hover {
    transform: translateY(-6px);
    border-color: rgba(240,62,62,0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.brand-card-dark .brand-info {
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
}

.brand-card-dark p {
    color: #94a3b8 !important;
    font-size: 0.95rem;
    margin: 0;
}