/*
Theme Name: FIL Trading - Scooter Rental
Theme URI: https://filtrading.co.uk
Author: SEO-Consultant.co
Author URI: https://seo-consultant.co
Description: Professional WordPress theme for 125cc scooter and moped rental business in London.
Version: 1.0.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fil-trading
Tags: business, rental, scooter, moped, responsive

FIL Trading Theme, Copyright 2026 FIL Trading Ltd
Developed by SEO-Consultant.co
*/

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

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

:root {
    --cream: #F5F1E8;
    --cream-dark: #E8DCC8;
    --brown: #8B6F47;
    --brown-dark: #6B5D4F;
    --brown-light: #A68B5B;
    --text-dark: #4A3F2E;
    --text-medium: #6B5D4F;
    --white: #FFFFFF;
    --gold: #C9A961;
    --red: #B85450;
    --whatsapp: #25D366;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Hide WP page titles */
.page .entry-title,
.single .entry-title,
article > h1.entry-title,
.entry-header .entry-title {
    display: none !important;
}

/* ========================================
   HEADER (matching plumbing theme pattern)
======================================== */
.header {
    background: var(--white);
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    transition: all 0.3s ease;
    will-change: box-shadow;
}

.header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 10000;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--brown);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.15rem;
    font-family: 'Lora', serif;
    line-height: 1.2;
}

.logo-sub {
    color: var(--brown);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

/* Mobile Toggle - hidden on desktop */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
    position: relative;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--brown);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brown);
    transition: width 0.3s ease;
}

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

.nav-phone {
    display: none;
}

.nav-cta {
    background: var(--brown);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

body.menu-open {
    overflow: hidden;
}

/* ========================================
   HERO
======================================== */
.hero {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    padding: 20px 30px 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,111,71,0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,169,97,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brown);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 28px;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.25);
    animation: fadeInDown 0.6s ease;
}

.hero-price span {
    font-weight: 400;
    font-size: 14px;
    opacity: 0.9;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-family: 'Lora', serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    padding: 0 30px;
}

.hero h1 span {
    display: block;
    font-size: 30px;
    font-weight: 400;
    color: var(--text-medium);
    margin-top: 8px;
}

.hero-subtitle {
    max-width: 920px;
    margin: 0 auto 40px;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.85;
    text-align: left;
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 111, 71, 0.08);
}

.hero-subtitle strong {
    color: var(--text-dark);
}

/* ========================================
   SECTIONS
======================================== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--white);
}

.section .container {
    padding-left: 30px;
    padding-right: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    color: var(--brown);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: 'Lora', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-medium);
    font-size: 16px;
}

/* ========================================
   SERVICES GRID (Hero icons)
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.service-icon-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-icon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brown);
}

.service-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 12px;
}

.service-icon-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.service-icon-card p {
    font-size: 12px;
    color: var(--text-medium);
}

/* ========================================
   TRUST BADGES
======================================== */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(139,111,71,0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.trust-badge-icon {
    color: var(--brown);
    font-weight: 700;
}

/* ========================================
   STATS GRID
======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 35px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brown);
}

.stat-number {
    font-family: 'Lora', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--brown);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 500;
}

.stat-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 14px;
    color: var(--text-medium);
}

/* ========================================
   PRICING
======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border-color: var(--brown);
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brown);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-card h3 {
    font-family: 'Lora', serif;
    font-size: 22px;
    margin-bottom: 5px;
}

.pricing-description {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 15px;
}

.price {
    font-family: 'Lora', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--brown);
    margin: 10px 0;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-medium);
}

.price-note {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 20px 0 25px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--cream);
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brown);
    font-weight: 700;
}

.pricing-features li.not-included {
    color: var(--red);
    opacity: 0.7;
}

.pricing-features li.not-included::before {
    content: '✕';
    color: var(--red);
}

/* ========================================
   PRODUCTS GRID
======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.product-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-family: 'Lora', serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    text-align: left;
    margin: 15px 0 20px;
}

.product-features li {
    padding: 6px 0;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
    color: var(--text-medium);
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--brown);
    font-weight: 700;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-full {
    display: block;
    width: 100%;
    background: var(--brown);
    color: var(--white);
    box-shadow: 0 3px 12px rgba(139, 111, 71, 0.2);
}

.btn-full:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(139, 111, 71, 0.3);
    color: var(--white);
}

/* ========================================
   DEPOSIT NOTE
======================================== */
.deposit-note {
    background: rgba(139, 111, 71, 0.06);
    border: 1px solid rgba(139, 111, 71, 0.15);
    border-radius: 16px;
    padding: 24px 30px;
    margin-top: 36px;
    text-align: center;
}

.deposit-note p {
    font-size: 14px;
    color: var(--text-medium);
}

/* ========================================
   FAQ
======================================== */
.faq-item {
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--brown);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(139, 111, 71, 0.03);
}

.faq-toggle {
    font-size: 20px;
    color: var(--brown);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   CONTACT SECTION CARDS
======================================== */
.section-alt .stat-card {
    background: var(--cream);
}

.section-alt .stat-card a {
    color: var(--brown);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.section-alt .stat-card a:hover {
    color: var(--brown-dark);
    text-decoration: underline;
}

/* ========================================
   GENERAL PAGE LINKS
======================================== */
.section a:not(.btn):not(.nav-cta) {
    transition: all 0.3s ease;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--text-dark);
    color: var(--cream);
    padding: 70px 0 30px;
}

.footer .logo-main {
    color: var(--white);
}

.footer .logo-sub {
    color: var(--gold);
}

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

.footer-brand p {
    color: var(--cream-dark);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 15px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--cream-dark);
}

.footer-links a {
    color: var(--cream-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 111, 71, 0.2);
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: var(--cream-dark);
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Media Partner Banner */
.media-partner {
    margin-top: 20px;
    padding: 16px 24px;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--cream-dark);
}

.media-partner a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.media-partner a:hover {
    color: var(--white);
}

/* ========================================
   WHATSAPP FLOAT
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ========================================
   RESPONSIVE - TABLET (max 1024px)
======================================== */
@media (max-width: 1024px) {
    .nav {
        gap: 20px;
    }

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

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

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero {
        padding: 0 24px 30px 24px;
    }

    .hero h1 {
        font-size: 38px;
        padding: 0 10px;
    }

    .hero h1 span {
        font-size: 26px;
    }

    .section .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (max 768px)
======================================== */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .header-inner {
        padding: 0 16px;
    }

    .mobile-toggle {
        display: flex;
    }

    .logo-main {
        font-size: 1rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* Mobile Navigation */
    .nav {
        display: none;
        position: fixed;
        top: 60px;
        right: 0;
        width: auto;
        min-width: 220px;
        max-width: 90%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(139, 111, 71, 0.2);
        border-radius: 12px;
        padding: 16px;
        margin: 0 16px;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(139, 111, 71, 0.1);
        font-size: 1rem;
        text-align: left;
    }

    .nav a:last-child {
        border-bottom: none;
    }

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

    .nav-phone {
        display: block;
    }

    .nav-cta {
        margin-top: 8px;
        text-align: center;
        padding: 14px 24px;
    }

    /* Content */
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 0 16px 30px 16px;
    }

    .hero h1 {
        font-size: 28px;
        padding: 0;
    }

    .hero h1 span {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 20px;
    }

    .section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-icon-card {
        padding: 20px 10px;
    }

    .service-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-badges {
        gap: 8px;
    }

    .trust-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (max 480px)
======================================== */
@media (max-width: 480px) {
    .header-inner {
        padding: 0 12px;
    }

    .logo {
        gap: 8px;
    }

    .logo-main {
        font-size: 0.9rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .container {
        padding: 0 12px;
    }

    .hero {
        padding: 0 12px 20px 12px;
    }

    .hero h1 {
        font-size: 24px;
        padding: 0;
    }

    .hero h1 span {
        font-size: 18px;
    }

    .hero-price {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-subtitle {
        padding: 16px;
    }

    .section .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .service-icon-card {
        padding: 16px 8px;
    }

    .service-icon-circle {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .service-icon-card h3 {
        font-size: 12px;
    }

    .service-icon-card p {
        font-size: 11px;
    }

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

    .stat-number {
        font-size: 28px;
    }

    .price {
        font-size: 34px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .whatsapp-float {
        width: 46px;
        height: 46px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Sticky Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Add padding to body so content doesn't hide under fixed header */
body {
    padding-top: 80px; /* Adjust based on your header height */
}

/* Optional: Smaller header on scroll */
.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header.scrolled .logo-icon {
    font-size: 2rem; /* Smaller logo */
}
