/* ===== RADDYANANA REPAIR — DESIGN SYSTEM =====
   Palette: Coral Orange #E8613C, Navy #1B2A4A, Light Gray #F4F5F7, White #FFFFFF, Charcoal #333
   Fonts: System sans-serif stack (no CDN)
   Style: Bold, energetic, trustworthy — repair/service brand
   Layout: Completely different from RadyannaSuvar (dark luxury) and AnnaFurniture (warm wood)
===== */

:root {
    --coral: #E8613C;
    --coral-dark: #C94E2E;
    --coral-light: #FFF0EB;
    --navy: #1B2A4A;
    --navy-light: #2C3E6B;
    --light-bg: #F4F5F7;
    --white: #FFFFFF;
    --charcoal: #333333;
    --text: #444444;
    --text-light: #777777;
    --border: #E0E0E0;
    --shadow: 0 4px 24px rgba(27, 42, 74, 0.10);
    --shadow-hover: 0 8px 32px rgba(27, 42, 74, 0.18);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--navy); line-height: 1.25; }
h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.2rem; font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
p { margin-bottom: 1rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 2px solid var(--coral);
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo span { color: var(--coral); }
.logo-icon { width: 38px; height: 38px; object-fit: contain; }
.footer-logo-icon { width: 48px; height: 48px; object-fit: contain; margin-bottom: 8px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 6px 0;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    background: var(--coral);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-sm);
    font-weight: 700 !important;
}
.nav-cta:hover { background: var(--coral-dark); }
.nav-cta::after { display: none !important; }
.nav-phone { color: var(--navy) !important; font-weight: 700 !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ===== HERO — DIAGONAL SPLIT ===== */
.hero {
    margin-top: 70px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 55%, var(--coral) 55%);
    position: relative;
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    position: relative;
    z-index: 2;
}
.hero-text { color: var(--white); }
.hero-badge {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.hero-text h1 { color: var(--white); margin-bottom: 20px; font-size: 3.2rem; }
.hero-text h1 em { font-style: normal; color: var(--coral-light); }
.hero-text p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 30px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-img img { width: 100%; height: 500px; object-fit: cover; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ===== STATS RIBBON ===== */
.stats-ribbon {
    background: var(--coral);
    padding: 30px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    color: var(--white);
}
.stat-item h3 { font-size: 2.4rem; color: var(--white); font-weight: 800; }
.stat-item p { font-size: 0.9rem; opacity: 0.9; margin: 0; }

/* ===== SECTION STYLES ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--light-bg); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-header .label {
    display: inline-block;
    background: var(--coral-light);
    color: var(--coral);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ===== SERVICES — HORIZONTAL SCROLL CARDS ===== */
.services-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 0 30px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.services-scroll::-webkit-scrollbar { height: 6px; }
.services-scroll::-webkit-scrollbar-track { background: var(--border); border-radius: 3px; }
.services-scroll::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 3px; }
.service-card {
    min-width: 320px;
    max-width: 320px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    transition: var(--transition);
    flex-shrink: 0;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card-body p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 16px; }
.service-card-body .card-link {
    color: var(--coral);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-card-body .card-link:hover { gap: 10px; }

/* ===== WHY US — ICON BOXES IN 2-COL ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.why-box {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--coral);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.why-box:hover { transform: translateX(6px); border-left-color: var(--navy); }
.why-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--coral-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.why-content h3 { font-size: 1.1rem; margin-bottom: 6px; }
.why-content p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ===== PORTFOLIO — MASONRY GRID ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.portfolio-item img { width: 100%; height: 280px; object-fit: cover; transition: var(--transition); }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(27, 42, 74, 0.9));
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-overlay h4 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.portfolio-overlay p { font-size: 0.85rem; opacity: 0.8; margin: 0; }

/* ===== TESTIMONIALS — STACKED CARDS ===== */
.testimonials-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--coral);
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { font-style: italic; font-size: 0.95rem; color: var(--text); margin-bottom: 18px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.testimonial-info strong { display: block; font-size: 0.95rem; color: var(--navy); }
.testimonial-info span { font-size: 0.8rem; color: var(--text-light); }

/* ===== LEAD FORM ===== */
.lead-section { background: var(--navy); padding: 60px 0; }
.lead-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.lead-text { color: var(--white); }
.lead-text h2 { color: var(--white); margin-bottom: 16px; }
.lead-text p { opacity: 0.85; font-size: 1.05rem; }
.lead-form { background: var(--white); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition);
    background: var(--light-bg);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--coral);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.form-submit:hover { background: var(--coral-dark); }

/* ===== SERVICE AREAS — TAG CLOUD ===== */
.areas-section { padding: 60px 0; }
.areas-header { text-align: center; margin-bottom: 40px; }
.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.area-tag {
    padding: 10px 22px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: var(--transition);
}
.area-tag:hover { border-color: var(--coral); color: var(--coral); background: var(--coral-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; font-size: 2rem; }
.cta-banner p { opacity: 0.9; font-size: 1.1rem; margin-bottom: 30px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); font-weight: 800; margin-bottom: 14px; }
.footer-brand em { font-style: normal; color: var(--coral); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--coral); }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; font-weight: 700; }
.footer-links a {
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.footer-links a:hover { color: var(--coral); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; }
.footer-contact-item .icon { color: var(--coral); min-width: 20px; }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }

/* ===== COOKIE BAR ===== */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9999;
    font-size: 0.9rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-bar a { color: var(--coral); text-decoration: underline; }
.cookie-bar button {
    padding: 8px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
}
.cookie-accept { background: var(--coral); color: var(--white); }
.cookie-decline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3) !important; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--coral); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    margin-top: 70px;
    background: var(--navy);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: 2.6rem; margin-bottom: 12px; }
.page-hero p { opacity: 0.8; font-size: 1.1rem; }
.breadcrumb { margin-top: 16px; font-size: 0.85rem; opacity: 0.6; }
.breadcrumb a { color: var(--coral); }

/* ===== SERVICES PAGE — ALTERNATING ROWS ===== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.service-detail:nth-child(even) .service-detail-img { order: -1; }
.service-detail-img { border-radius: var(--radius); overflow: hidden; }
.service-detail-img img { width: 100%; height: 350px; object-fit: cover; }
.service-detail-text h3 { font-size: 1.6rem; margin-bottom: 14px; }
.service-detail-text p { color: var(--text); margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.service-tag {
    padding: 6px 14px;
    background: var(--coral-light);
    color: var(--coral);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== HOW IT WORKS — NUMBERED STEPS ===== */
.steps-container { max-width: 800px; margin: 0 auto; }
.step-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
}
.step-content h3 { margin-bottom: 8px; }
.step-content p { color: var(--text-light); margin: 0; }

/* ===== ABOUT PAGE ===== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
}
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.company-details {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--radius);
    margin-top: 40px;
}
.company-details h3 { margin-bottom: 24px; }
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.detail-item { display: flex; gap: 10px; font-size: 0.95rem; }
.detail-item .label-text { font-weight: 700; color: var(--navy); min-width: 140px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}
.contact-info-card {
    background: var(--navy);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(232, 97, 60, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 1.2rem;
}
.contact-item-text strong { display: block; color: var(--white); margin-bottom: 2px; }
.contact-item-text span, .contact-item-text a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.contact-item-text a:hover { color: var(--coral); }

/* ===== POLICY PAGES ===== */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 24px;
}
.policy-content h2 { font-size: 1.5rem; margin: 36px 0 14px; color: var(--navy); border-bottom: 2px solid var(--coral-light); padding-bottom: 8px; }
.policy-content h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.policy-content p, .policy-content li { font-size: 0.95rem; line-height: 1.8; }
.policy-content ul { padding-left: 24px; margin-bottom: 16px; }
.policy-content ul li { list-style: disc; margin-bottom: 6px; }
.policy-meta { font-size: 0.85rem; color: var(--text-light); margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero { min-height: auto; background: var(--navy); padding: 40px 0; }
    .hero-img img { height: 350px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-list { grid-template-columns: 1fr; }
    .lead-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail { grid-template-columns: 1fr; }
    .service-detail:nth-child(even) .service-detail-img { order: 0; }
    .about-intro { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 16px;
    }
}
@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-img img { height: 260px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-item h3 { font-size: 1.8rem; }
    .service-card { min-width: 280px; max-width: 280px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-item img { height: 220px; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
    .hero-btns { flex-direction: column; }
    .cookie-bar { flex-direction: column; text-align: center; }
}
