/* ==============================================
   Fine Car Care - Main Stylesheet
   Theme: Red & White | Font: Poppins
   ============================================== */

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

/* CSS Variables */
:root {
    --red: #e01010;
    --red-dark: #b50e0e;
    --red-light: #ff2222;
    --black: #111111;
    --dark: #ffffff;
    --dark2: #f8f8f8;
    --dark3: #f0f0f0;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-muted: #555555;
    --border: rgba(0,0,0,0.08);
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(224,16,16,0.2);
    --shadow-dark: 0 8px 30px rgba(0,0,0,0.12);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============ UTILITY ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-red { color: var(--red); }
.text-center { text-align: center; }

.section-badge {
    display: inline-block;
    background: rgba(224,16,16,0.15);
    color: var(--red);
    border: 1px solid var(--red);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    color: var(--gray);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ============ HEADER / NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-logo {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 18px; font-weight: 800; color: var(--white); }
.brand-name-scrolled { color: var(--text); }
.brand-sub { font-size: 11px; font-weight: 500; color: var(--red); letter-spacing: 1px; text-transform: uppercase; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    transition: color var(--transition);
    position: relative;
}
.navbar.scrolled .nav-links a {
    color: var(--text);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.nav-links a:hover { color: var(--red) !important; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { background: var(--red); color: var(--white); padding: 10px 22px; border-radius: 50px; font-weight: 600; font-size: 14px; transition: var(--transition); }
.nav-cta:hover { background: var(--red-dark); }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; position: relative; width: 30px; height: 20px; justify-content: center; }
.hamburger span { width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--text); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--text); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--text); }

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    padding: 120px 0 80px;
}

/* Hero Left */
.hero-left { padding-right: 20px; }
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.hero-eyebrow span {
    width: 40px; height: 2px;
    background: var(--red);
}
.hero-eyebrow p {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}
.hero-title .highlight {
    color: var(--red);
    display: block;
}
.hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 480px;
    line-height: 1.8;
}
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 28px; font-weight: 800; color: var(--red); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 2px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Right - Quote Form */
.hero-form-card {
    background: #ffffff;
    backdrop-filter: none;
    border: none;
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.form-title {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 6px;
    color: var(--text);
}
.form-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
    outline: none;
    width: 100%;
}
.form-group select option { background: #ffffff; color: var(--text); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaaaaa; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); background: rgba(224,16,16,0.03); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit-btn {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}
.form-submit-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.form-response { text-align: center; margin-top: 12px; font-size: 14px; display: none; }
.form-response.success { color: #1a8a3a; }
.form-response.error { color: #cc2222; }

/* ============ SERVICES SECTION ============ */
.services-section { background: #f8f8f8; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.service-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.service-card:hover .service-card-img img {
    transform: scale(1.1);
}
.service-card-body { 
    padding: 24px; 
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.service-card-title { 
    font-size: 18px; 
    font-weight: 700; 
    margin-bottom: 10px; 
    color: var(--text); 
}
.service-card-desc { 
    font-size: 13px; 
    color: var(--text-muted); 
    line-height: 1.7; 
    margin-bottom: 20px;
    flex-grow: 1;
}
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    transition: gap 0.3s ease;
}
.service-cta:hover {
    gap: 12px;
    color: var(--red-dark);
}

/* ============ RESULTS / BEFORE-AFTER SECTION ============ */
.results-section { background: #ffffff; }
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}
.result-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.result-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
}
.result-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.result-card-body { padding: 18px; }
.result-card-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.result-card-desc { font-size: 13px; color: var(--text-muted); }

/* ============ WHY CHOOSE US ============ */
.why-section { background: #f8f8f8; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.why-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: 0 12px 40px rgba(224,16,16,0.1); }
.why-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px;
}
.why-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ============ MAP SECTION ============ */
.map-section { background: #ffffff; padding: 60px 0; }
.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(224,16,16,0.3);
    box-shadow: var(--shadow);
}
.map-wrapper iframe { width: 100%; height: 420px; border: none; }
.map-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.map-info-card {
    background: #f8f8f8;
    border-radius: 14px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid rgba(0,0,0,0.08);
}
.map-info-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    background: rgba(224,16,16,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--red);
}
.map-info-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.map-info-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.map-info-text a { color: var(--red); }

/* ============ GALLERY / STUDIO SECTION ============ */
.gallery-section { background: #f8f8f8; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 20px;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.06);
}
.gallery-item.large { grid-column: span 2; height: 220px; }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(224,16,16,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    font-size: 30px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
section.gallery-section .gallery-cta-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    background: #1a1a1a !important;
    padding: 50px !important;
    border-radius: 20px;
}
.gallery-text { flex: 1; min-width: 280px; }
section.gallery-section .gallery-text h3 { font-size: 26px; font-weight: 800; margin-bottom: 10px; color: #ffffff !important; }
section.gallery-section .gallery-text p { color: #cccccc !important; font-size: 14px; line-height: 1.7; }
.gallery-hours {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 30px;
    min-width: 260px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.gallery-hours h4 { font-size: 16px; font-weight: 700; margin-bottom: 14px; color: var(--red); }
.hours-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.07); font-size: 13px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-muted); }
.hours-row .time { font-weight: 600; color: var(--text); }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: #ffffff; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.testimonial-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(224,16,16,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.quote-icon {
    font-size: 40px;
    color: var(--red);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 12px;
}
.testimonial-text { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}
.author-info h5 { font-size: 15px; font-weight: 700; color: var(--text); }
.author-info p { font-size: 12px; color: var(--text-muted); }
.stars { color: #FFD700; font-size: 13px; margin-top: 2px; }
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
    color: #FFD700;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* ============ FAQ SECTION ============ */
.faq-section { background: #f8f8f8; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.active { border-color: var(--red); box-shadow: 0 4px 20px rgba(224,16,16,0.08); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    gap: 16px;
    color: var(--text);
}
.faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    background: rgba(224,16,16,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--red);
    transition: transform var(--transition), background var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--red); color: var(--white); }
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* ============ CTA STRIP ============ */
.cta-strip {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    padding: 60px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(22px, 4vw, 36px); font-weight: 800; max-width: 600px; }
.cta-inner a { background: var(--white); color: var(--red); padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 15px; transition: var(--transition); white-space: nowrap; }
.cta-inner a:hover { background: #111111; color: var(--white); }

/* ============ FOOTER ============ */
footer {
    background: #111111;
    border-top: 3px solid var(--red);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo-area .brand { margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: #aaaaaa; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    color: #aaaaaa;
}
.social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--red); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: #aaaaaa; transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--red); }
.contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 13px; color: #aaaaaa; line-height: 1.6; }
.contact-item strong { color: #ffffff; display: block; font-size: 12px; }
.contact-item span { font-size: 18px; color: var(--red); flex-shrink: 0; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #888888;
}
.footer-bottom a { color: var(--red); }

/* ============ PHONE FLOAT BUTTON ============ */
.float-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--red);
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(224,16,16,0.5);
    animation: pulse 2s infinite;
    color: var(--white);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(224,16,16,0.5); }
    70% { box-shadow: 0 0 0 16px rgba(224,16,16,0); }
    100% { box-shadow: 0 0 0 0 rgba(224,16,16,0); }
}

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

/* ============ SCROLL TO TOP ============ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.15);
    width: 46px; height: 46px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--red); border-color: var(--red); }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .hero-content-wrapper { grid-template-columns: 1fr; }
    .hero-left { padding-right: 0; }
    .services-grid, .results-grid, .why-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large { grid-column: span 1; }
    .map-info { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.99); padding: 100px 30px 40px; gap: 25px; z-index: 999; text-align: center; }
    .nav-links.open { display: flex; overflow-y: auto; }
    .nav-links a { font-size: 20px; color: var(--text) !important; font-weight: 600; }
    .nav-cta { margin-top: 10px; width: fit-content; align-self: center; }
    .hamburger { display: flex; z-index: 1000; }
    .brand img { height: 60px !important; }
    .navbar { padding: 10px 0; background: #ffffff !important; box-shadow: 0 2px 15px rgba(0,0,0,0.1); }
    .navbar .hamburger span { background: #000000 !important; }
    .navbar.scrolled { background: rgba(255,255,255,0.98); }
    .navbar.scrolled .brand img { height: 50px !important; }
    .services-grid, .results-grid, .why-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section-padding { padding: 60px 0; }
    .gallery-cta-row { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-inner { flex-direction: column; text-align: center; }
    .hero-stats { gap: 20px; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
}
