/* ════════════════════════════════════════
   KING HOME IMPROVEMENT — SHARED STYLES
   File: /assets/css/style.css
   Brand green: #3a7a2a (logo match)
   ════════════════════════════════════════ */

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #1a1a1a; line-height: 1.6; overflow-x: hidden; background: #fff; }

/* ── BRAND COLOR TOKENS ── */
:root {
  --green:       #3a7a2a;
  --green-dark:  #2d6020;
  --green-dim:   rgba(58,122,42,0.2);
  --green-border:rgba(58,122,42,0.3);
}

/* ── HEADER ── */
header { position: fixed; top: 0; width: 100%; background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 2px solid var(--green); }
nav { max-width: 1400px; margin: 0 auto; padding: 1.2rem 1rem; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }

/* ── LOGO ── */
.logo-img { height: 52px; width: auto; display: block; }

/* ── NAV LINKS ── */
.nav-links { display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 500; font-family: 'Inter', -apple-system, sans-serif; transition: color 0.3s; }
.nav-links a:hover { color: var(--green); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.75rem; opacity: 0.7; }
.nav-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 16px; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 16px); left: 0; background: #000; border: 1px solid var(--green); border-radius: 6px; min-width: 200px; overflow: hidden; z-index: 100; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; color: #9ca3af; text-decoration: none; padding: 0.75rem 1.25rem; font-size: 0.95rem; font-weight: 500; transition: all 0.2s; white-space: nowrap; }
.dropdown-menu a:hover { background: var(--green); color: #fff; }

/* ── CTA BUTTON ── */
.cta-btn { background: var(--green); color: #fff; padding: 0.8rem 2rem; border-radius: 6px; text-decoration: none; font-weight: 600; font-family: 'Inter', -apple-system, sans-serif; transition: all 0.3s; border: 2px solid var(--green); display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
.cta-btn:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(58,122,42,0.3); }
.phone-icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ── MOBILE MENU BUTTON ── */
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; padding: 0.5rem; z-index: 1001; }

/* ── MOBILE MENU ── */
.mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 999; }
.mobile-menu-overlay.active { display: block; }
.mobile-menu { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: #000; z-index: 1000; transition: left 0.3s ease; padding: 2rem 1.5rem; border-right: 2px solid var(--green); overflow-y: auto; }
.mobile-menu.active { left: 0; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid #333; }
.mobile-menu-close { background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; padding: 0; line-height: 1; }
.mobile-nav-links { list-style: none; padding: 0; margin: 0; }
.mobile-nav-links li { margin-bottom: 0.5rem; }
.mobile-nav-links a { display: block; color: #9ca3af; text-decoration: none; font-weight: 500; font-family: 'Inter', -apple-system, sans-serif; padding: 0.9rem 1rem; border-radius: 6px; transition: all 0.3s; }
.mobile-nav-links a:hover { background: var(--green); color: #fff; }
.mobile-nav-links a.sub-link { padding-left: 2rem; font-size: 0.9rem; color: #6b7280; }
.mobile-nav-links a.sub-link:hover { background: var(--green); color: #fff; }
.mobile-section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green); padding: 0.5rem 1rem 0.25rem; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.9rem; }
.breadcrumb a { color: #9ca3af; text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: #6b7280; }

/* ── INNER HERO (about, gallery, services pages) ── */
.inner-hero { margin-top: 80px; min-height: 450px; display: flex; align-items: center; position: relative; }
.inner-hero-content { max-width: 1400px; margin: 0 auto; padding: 4rem 2rem; width: 100%; }
.inner-hero h1 { font-size: 4rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
.inner-hero .subtitle { font-size: 1.3rem; color: #d1d5db; max-width: 700px; }

/* centered variant (about, gallery) */
.inner-hero.centered .inner-hero-content { text-align: center; }
.inner-hero.centered .breadcrumb { justify-content: center; }
.inner-hero.centered .subtitle { margin: 0 auto; }

/* ── SECTION SHARED ── */
.section-title { font-size: 3rem; font-weight: 900; color: #000; margin-bottom: 2rem; text-align: center; }
.section-intro { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.section-intro h2 { font-size: 2.5rem; font-weight: 900; color: #000; margin-bottom: 1rem; }
.section-intro p { font-size: 1.2rem; color: #6b7280; }

/* ── GALLERY (shared between index and gallery page) ── */
.gallery-item { position: relative; height: 350px; border-radius: 12px; overflow: hidden; cursor: pointer; transition: all 0.4s; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.gallery-item.hidden { display: none; }
.gallery-item:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.gallery-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover .gallery-image { transform: scale(1.1); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); padding: 2rem 1.5rem; transform: translateY(20px); opacity: 0; transition: all 0.4s; }
.gallery-item:hover .gallery-overlay { transform: translateY(0); opacity: 1; }
.gallery-category { font-size: 0.9rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.3rem; }
.gallery-title { font-size: 1.3rem; font-weight: 700; color: #fff; }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 10000; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-content { position: relative; max-width: 90%; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lightbox-image { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; background: var(--green); color: #fff; border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; z-index: 10001; }
.lightbox-close:hover { background: var(--green-dark); transform: rotate(90deg); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: var(--green); color: #fff; border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.lightbox-nav:hover { background: var(--green-dark); transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-info { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.8); padding: 1rem 2rem; border-radius: 8px; color: #fff; text-align: center; }
.lightbox-category { font-size: 0.9rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.lightbox-title { font-size: 1.2rem; font-weight: 700; margin-top: 0.3rem; }

/* ── GALLERY PAGE FILTER ── */
.filter-container { background: #fff; padding: 2rem; border-radius: 12px; margin-bottom: 3rem; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.filter-btn { background: #fff; color: #4b5563; border: 2px solid #e5e7eb; padding: 0.8rem 2rem; border-radius: 8px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--green); color: #fff; border-color: var(--green); }
.filter-btn .count { font-size: 0.85rem; opacity: 0.7; margin-left: 0.3rem; }
.commercial-dropdown { position: relative; display: inline-block; }
.commercial-dropdown .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 2px solid var(--green); border-radius: 8px; margin-top: 0.5rem; min-width: 220px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); z-index: 100; }
.commercial-dropdown .dropdown-menu.show { display: block; }
.dropdown-item { padding: 1rem 1.5rem; cursor: pointer; transition: all 0.2s; border-bottom: 1px solid #f3f4f6; display: flex; justify-content: space-between; align-items: center; }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: #f0fdf4; color: var(--green); }

/* ── FOOTER ── */
footer { background: #000; color: #9ca3af; padding: 3rem 2rem 1.5rem; font-family: 'Inter', -apple-system, sans-serif; }
.footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 3rem; margin-bottom: 2rem; }
.footer-section h4 { color: #fff; font-weight: 700; margin-bottom: 1rem; font-size: 1rem; }
.footer-section p { font-size: 0.95rem; line-height: 1.7; color: #9ca3af; }
.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section ul li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-section a { color: #9ca3af; text-decoration: none; transition: color 0.3s; }
.footer-section a:hover { color: var(--green); }
.footer-section ul li strong { color: var(--green); font-weight: 600; margin-right: 0.4rem; }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid #333; text-align: center; font-size: 0.9rem; }
.footer-legal { display: flex; justify-content: center; gap: 1.5rem; margin-top: 0.75rem; }
.footer-legal a { color: #6b7280; font-size: 0.85rem; text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--green); }

/* ── ABOUT PAGE ── */
.story-section { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.story-content { font-size: 1.2rem; line-height: 1.9; color: #4b5563; max-width: 900px; margin: 0 auto; }
.story-content p { margin-bottom: 1.5rem; }
.highlight-text { color: var(--green); font-weight: 600; }
.meet-owner { background: #f9fafb; padding: 6rem 2rem; }
.meet-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 400px 1fr; gap: 4rem; align-items: center; }
.owner-photo { width: 100%; height: 500px; border-radius: 12px; overflow: hidden; border: 4px solid var(--green); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.owner-photo img { width: 100%; height: 100%; object-fit: cover; }
.owner-content h2 { font-size: 2.5rem; font-weight: 900; color: var(--green); margin-bottom: 0.5rem; }
.owner-title { font-size: 1.3rem; color: #6b7280; font-weight: 600; margin-bottom: 2rem; }
.owner-bio { font-size: 1.15rem; line-height: 1.8; color: #4b5563; margin-bottom: 1.5rem; }
.credentials-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2rem; }
.credential { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: #fff; border-radius: 8px; border-left: 3px solid var(--green); }
.credential svg { width: 24px; height: 24px; fill: var(--green); flex-shrink: 0; }
.credential-text { font-weight: 600; color: #1a1a1a; }
.values-section { max-width: 1400px; margin: 0 auto; padding: 6rem 2rem; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; margin-top: 3rem; }
.value-card { background: #fff; padding: 3rem 2rem; border-radius: 12px; text-align: center; border: 2px solid #f3f4f6; transition: all 0.3s; }
.value-card:hover { border-color: var(--green); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(58,122,42,0.1); }
.value-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--green), var(--green-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.value-icon svg { width: 35px; height: 35px; fill: #fff; }
.value-card h3 { font-size: 1.6rem; font-weight: 700; color: #000; margin-bottom: 1rem; }
.value-card p { color: #6b7280; line-height: 1.7; }
.service-area { background: #000; padding: 6rem 2rem; color: #fff; }
.service-area-content { max-width: 1200px; margin: 0 auto; text-align: center; }
.service-area h2 { font-size: 3rem; font-weight: 900; margin-bottom: 1.5rem; }
.service-area p { font-size: 1.2rem; color: #d1d5db; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.areas-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; max-width: 900px; margin: 0 auto; }
.area-item { padding: 1rem; background: var(--green-dim); border-radius: 8px; border: 1px solid var(--green-border); transition: all 0.3s; }
.area-item:hover { background: rgba(58,122,42,0.4); border-color: var(--green); }

/* ── SERVICES PAGE ── */
.services-grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px,1fr)); gap: 2rem; margin-bottom: 3rem; }
.service-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: all 0.3s; border: 2px solid transparent; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(58,122,42,0.15); border-color: var(--green); }
.service-image { width: 100%; height: 240px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.service-card:hover .service-image img { transform: scale(1.05); }
.service-content { padding: 2rem; }
.service-content h3 { font-size: 1.6rem; font-weight: 700; color: #000; margin-bottom: 1rem; }
.service-content p { color: #6b7280; line-height: 1.7; margin-bottom: 1.5rem; }
.service-features { list-style: none; margin-bottom: 1.5rem; }
.service-features li { color: #4b5563; padding: 0.4rem 0 0.4rem 1.5rem; position: relative; }
.service-features li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: bold; }
.service-link { display: inline-block; color: var(--green); font-weight: 600; text-decoration: none; transition: color 0.3s; }
.service-link:hover { color: var(--green-dark); }
.service-link::after { content: " →"; }
.meet-section { background: #f9fafb; padding: 3rem; border-radius: 12px; margin: 4rem auto; max-width: 1400px; display: grid; grid-template-columns: 200px 1fr; gap: 2.5rem; align-items: center; }
.meet-photo { width: 200px; height: 200px; border-radius: 12px; overflow: hidden; border: 4px solid var(--green); }
.meet-photo img { width: 100%; height: 100%; object-fit: cover; }
.meet-content h3 { color: var(--green); font-size: 1.8rem; margin-bottom: 0.5rem; }
.meet-content .title { color: #6b7280; font-size: 1.1rem; margin-bottom: 1rem; font-weight: 600; }
.meet-content p { margin-bottom: 1rem; color: #4b5563; line-height: 1.7; }
.credentials { display: flex; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.credential-item { display: flex; align-items: center; gap: 0.5rem; color: var(--green); font-weight: 600; }
.credential-item svg { width: 20px; height: 20px; fill: var(--green); }

/* ── CTA SECTIONS ── */
.cta-section { background: var(--green); padding: 5rem 2rem; text-align: center; color: #fff; }
.cta-section h2 { font-size: 3rem; font-weight: 900; margin-bottom: 1.5rem; }
.cta-section p { font-size: 1.3rem; margin-bottom: 2.5rem; opacity: 0.95; }
.cta-section-btn { display: inline-block; background: #000; color: #fff; padding: 1.5rem 4rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.2rem; transition: all 0.3s; }
.cta-section-btn:hover { background: #1a1a1a; transform: scale(1.05); }
.cta-section-btn.secondary { background: transparent; border: 2px solid #fff; }
.cta-section-btn.secondary:hover { background: #fff; color: var(--green); }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; }

/* ── INDEX PAGE ── */
.hero { margin-top: 80px; background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(26,26,26,0.9) 100%), url('https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1600&q=80') center/cover; position: relative; overflow: hidden; min-height: 90vh; display: flex; align-items: center; }
.hero-content { max-width: 1400px; margin: 0 auto; padding: 8rem 2rem; width: 100%; }
.hero-text { max-width: 800px; }
.hero-text h1 { font-size: 4.5rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-text h1 .highlight { color: var(--green); }
.hero-text p { font-size: 1.3rem; color: #d1d5db; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-cta { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.primary-cta { background: var(--green); color: #fff; padding: 1.2rem 3rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s; border: 2px solid var(--green); }
.primary-cta:hover { background: var(--green-dark); transform: scale(1.05); box-shadow: 0 15px 35px rgba(58,122,42,0.4); }
.secondary-cta { color: #fff; padding: 1.2rem 3rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.1rem; border: 2px solid var(--green); transition: all 0.3s; }
.secondary-cta:hover { background: var(--green); }
.hero-chicklets { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.hero-chicklet { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.07); color: #d1d5db; border: 1px solid rgba(255,255,255,0.18); padding: 0.45rem 1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: all 0.25s; white-space: nowrap; }
.hero-chicklet::before { content: '›'; color: var(--green); font-weight: 700; font-size: 1rem; }
.hero-chicklet:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-2px); }
.trust-bar { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #333; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 1rem; }
.trust-number { font-size: 2.5rem; font-weight: 900; color: var(--green); }
.trust-label { font-size: 0.9rem; color: #9ca3af; line-height: 1.3; }
.value-prop { background: #f9fafb; padding: 6rem 2rem; }
.value-prop-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.value-prop-content h2 { font-size: 2.8rem; font-weight: 900; color: #000; margin-bottom: 1.5rem; line-height: 1.2; }
.value-prop-content p { font-size: 1.15rem; color: #4b5563; line-height: 1.8; margin-bottom: 1.5rem; }
.value-points { list-style: none; margin-top: 2rem; }
.value-points li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; font-size: 1.1rem; color: #1a1a1a; }
.value-points li svg { width: 24px; height: 24px; fill: var(--green); flex-shrink: 0; margin-top: 2px; }
.value-points li strong { color: #000; }
.value-image { background: url('https://images.unsplash.com/photo-1504148455328-c376907d081c?w=800&q=80') center/cover; height: 500px; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.trust-badges { background: linear-gradient(180deg, #f9fafb 0%, #fff 100%); padding: 4rem 2rem; }
.trust-badges-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.trust-badge { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; padding: 2rem 1.5rem; background: #fff; border-radius: 16px; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 4px 6px rgba(0,0,0,0.03); position: relative; overflow: hidden; }
.trust-badge::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green), var(--green-dark)); transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.trust-badge:hover::before { transform: scaleX(1); }
.trust-badge:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(58,122,42,0.12); }
.trust-badge-icon { width: 100px; height: 100px; background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-radius: 24px; display: flex; align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 10px 30px rgba(58,122,42,0.25); }
.trust-badge:hover .trust-badge-icon { transform: scale(1.1) rotate(5deg); box-shadow: 0 20px 50px rgba(58,122,42,0.4); }
.trust-badge-icon svg { width: 50px; height: 50px; fill: #fff; transition: all 0.4s; }
.trust-badge:hover .trust-badge-icon svg { transform: scale(1.15); }
.trust-badge-text { font-weight: 700; color: #000; font-size: 1.05rem; transition: color 0.3s; }
.trust-badge:hover .trust-badge-text { color: var(--green); }
.social-proof { background: linear-gradient(135deg, var(--green), var(--green-dark)); padding: 4rem 2rem; }
.social-proof-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.social-proof-item { color: #fff; }
.social-proof-number { font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 0.5rem; }
.social-proof-label { font-size: 1.1rem; opacity: 0.9; }
.testimonials { padding: 6rem 2rem; background: #fff; }
.testimonials-container { max-width: 1200px; margin: 0 auto; }
.testimonials h2 { font-size: 3rem; font-weight: 900; text-align: center; margin-bottom: 1rem; color: #000; }
.testimonials-subtitle { text-align: center; font-size: 1.2rem; color: #6b7280; margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.testimonial-card { background: #f9fafb; padding: 2.5rem; border-radius: 12px; border: 2px solid #e5e7eb; transition: all 0.3s; }
.testimonial-card:hover { border-color: var(--green); transform: translateY(-5px); box-shadow: 0 10px 25px rgba(58,122,42,0.1); }
.stars { color: #fbbf24; font-size: 1.2rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 1.05rem; line-height: 1.7; color: #4b5563; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid #e5e7eb; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.2rem; }
.author-info { flex: 1; }
.author-name { font-weight: 700; color: #000; margin-bottom: 0.2rem; }
.author-location { font-size: 0.9rem; color: #6b7280; }
.gallery-section { padding: 6rem 2rem; background: #f9fafb; }
.gallery-container { max-width: 1400px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-header h2 { font-size: 3rem; font-weight: 900; color: #000; margin-bottom: 1rem; }
.gallery-header p { font-size: 1.2rem; color: #6b7280; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-bottom: 3rem; }
.gallery-cta { text-align: center; }
.gallery-btn { display: inline-block; background: var(--green); color: #fff; padding: 1.2rem 3rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s; }
.gallery-btn:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(58,122,42,0.3); }
.services { padding: 8rem 2rem; background: #000; }
.section-header { max-width: 900px; margin: 0 auto 5rem; text-align: center; }
.section-header h2 { font-size: 3.5rem; font-weight: 900; margin-bottom: 1.5rem; color: #fff; letter-spacing: -1px; }
.section-header p { font-size: 1.3rem; color: #9ca3af; font-weight: 300; }
.services-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--green); }
.service-card { background: #0a0a0a; padding: 3.5rem 2.5rem; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--green-dark)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.service-card:hover { background: #111; transform: translateY(-8px); }
.service-card:hover::before { transform: scaleX(1); }
.service-number { font-size: 5rem; font-weight: 900; color: rgba(58,122,42,0.1); line-height: 1; margin-bottom: 1rem; transition: all 0.4s; }
.service-card:hover .service-number { color: rgba(58,122,42,0.2); transform: scale(1.1); }
.service-card h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 1.2rem; color: #fff; letter-spacing: -0.5px; }
.service-card p { color: #9ca3af; line-height: 1.8; font-size: 1.05rem; font-weight: 300; }
.service-card a.service-link { display: inline-block; margin-top: 1rem; color: var(--green); font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: color 0.3s; }
.service-card a.service-link:hover { color: #10b981; }
.why-choose { padding: 6rem 2rem; background: linear-gradient(135deg, #000 0%, #1a1a1a 100%); color: #fff; }
.why-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 3rem; margin-top: 4rem; }
.why-item { display: flex; gap: 1.5rem; }
.why-number { font-size: 3rem; font-weight: 900; color: var(--green); line-height: 1; }
.why-content h3 { font-size: 1.5rem; margin-bottom: 0.8rem; color: #fff; }
.why-content p { color: #9ca3af; line-height: 1.7; }
.final-cta { padding: 6rem 2rem; background: var(--green); text-align: center; color: #fff; }
.final-cta h2 { font-size: 3rem; font-weight: 900; margin-bottom: 1.5rem; }
.final-cta p { font-size: 1.3rem; margin-bottom: 2.5rem; opacity: 0.95; }
.final-cta-btn { display: inline-block; background: #000; color: #fff; padding: 1.5rem 4rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.2rem; transition: all 0.3s; }
.final-cta-btn:hover { background: #1a1a1a; transform: scale(1.05); }

/* ── HANDYMAN PAGE — INTRO ── */
.hero-eyebrow { font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
.hero-sub { font-size: 1.2rem; color: #d1d5db; margin-bottom: 2rem; max-width: 700px; line-height: 1.7; }
.intro { background: #f9fafb; padding: 5rem 2rem; }
.intro-container { max-width: 900px; margin: 0 auto; }
.intro-container h2 { font-size: 2.5rem; font-weight: 900; color: #000; margin-bottom: 1.5rem; line-height: 1.2; }
.intro-container p { font-size: 1.15rem; color: #4b5563; line-height: 1.8; margin-bottom: 1.25rem; }

/* ── HANDYMAN PAGE — AREAS ── */
.areas { background: #f9fafb; padding: 5rem 2rem; }
.areas-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.areas-container h2 { font-size: 2.5rem; font-weight: 900; color: #000; margin-bottom: 1rem; }
.areas-container > p { font-size: 1.15rem; color: #4b5563; margin-bottom: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.areas-list { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2rem; }
.area-tag { display: inline-block; padding: 0.6rem 1.25rem; border-radius: 999px; border: 2px solid var(--green); color: var(--green); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; }
.area-tag:hover { background: var(--green); color: #fff; }
.area-tag.primary { background: var(--green); color: #fff; }
.areas-note { font-size: 0.95rem; color: #6b7280; }
.areas-note a { color: var(--green); font-weight: 600; text-decoration: none; }

/* ── HANDYMAN PAGE — FAQ ── */
.faq-section { padding: 5rem 2rem; background: #fff; }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-container h2 { font-size: 2.5rem; font-weight: 900; color: #000; margin-bottom: 0.75rem; text-align: center; }
.faq-sub { text-align: center; color: #6b7280; font-size: 1.1rem; margin-bottom: 2.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 2px solid #e5e7eb; border-radius: 10px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: var(--green); }
.faq-q { width: 100%; background: #fff; border: none; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 1.05rem; font-weight: 700; color: #1a1a1a; cursor: pointer; text-align: left; gap: 1rem; transition: color 0.3s; }
.faq-q:hover { color: var(--green); }
.faq-icon { font-size: 1.5rem; color: var(--green); flex-shrink: 0; transition: transform 0.3s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a.open { max-height: 400px; }
.faq-a p { padding: 0 1.5rem 1.5rem; color: #4b5563; line-height: 1.8; font-size: 1rem; }
.faq-a a { color: var(--green); font-weight: 600; text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  nav { padding: 1rem 0.8rem; }
  .logo-img { height: 38px; }
  .cta-btn { font-size: 0.85rem; padding: 0.5rem 1rem; white-space: nowrap; }
  .phone-icon { width: 14px; height: 14px; }
  .inner-hero h1 { font-size: 2.5rem; }
  .meet-container { grid-template-columns: 1fr; }
  .owner-photo { height: 400px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .meet-section { grid-template-columns: 1fr; text-align: center; padding: 2rem; }
  .meet-photo { margin: 0 auto; }
  .credentials { justify-content: center; }
  .services-grid-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
  footer { padding: 2.5rem 1.25rem 1.25rem; }
}
@media (max-width: 400px) {
  .logo-img { height: 32px; }
  .cta-btn { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
}