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

/* ============================================
   CSS VARIABLES - PREMIUM LIGHT THEME
================================================ */
:root {
  --primary: #10B981;
  --primary-dark: #059669;
  --primary-light: #ECFDF5;
  --accent: #F97316;
  --accent-dark: #EA580C;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --bg-body: #F8FAFC;
  --bg-subtle: #F1F5F9;
  --bg-card: #FFFFFF;
  --border: #E2E8F0;
  
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(16, 185, 129, 0.15);
  
  --transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE 
================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg-body); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font-head); }

h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
p { color: var(--text-muted); line-height: 1.8; }

strong[style], p[style], span[style] { color: var(--text-dark) !important; } /* Overrides inline dark mode colors from HTML */

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   BRAND LOGO
================================================ */
.brand-logo { height: 42px; width: auto; object-fit: contain; }
.footer-logo .brand-logo { height: 38px; }

/* ============================================
   NAVBAR
================================================ */
nav.navbar { position: sticky; top: 1.5rem; margin-top: 1.5rem; z-index: 1000; padding: 0; background: transparent; transition: var(--transition); pointer-events: none; }
.nav-wrapper { background: #fff; border-radius: 60px; box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: space-between; gap: 2rem; width: 92%; max-width: 1000px; margin: 0 auto; padding: 0.5rem 0.6rem 0.5rem 1.5rem; border: 1px solid rgba(0,0,0,0.05); pointer-events: auto; }

.nav-logo { display: flex; align-items: center; gap: 0.8rem; font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--text-dark) !important; }
.nav-logo span { color: var(--primary) !important; opacity: 1; }

.nav-links { display: flex; align-items: center; background: transparent; padding: 0; box-shadow: none; border-radius: 0; }
.nav-item { position: relative; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--text-dark); padding: 0.5rem 1.25rem; transition: var(--transition); }
.nav-item:hover, .nav-item.active { color: var(--primary); }
.nav-item:not(:nth-last-of-type(2))::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); height: 16px; width: 1px; background: #e2e8f0; }

.nav-dropdown { cursor: pointer; }
.nav-dropdown > a { transition: var(--transition); }
.nav-dropdown:hover > a { color: var(--primary); }
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(15px); background: #fff; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); min-width: 220px; padding: 0.5rem; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 1000; border: 1px solid rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(5px); }
.nav-dropdown::before { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 20px; }
.dropdown-menu a { padding: 0.6rem 1rem; font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; color: var(--text-dark); border-radius: 8px; transition: var(--transition); text-align: left; }
.dropdown-menu a:hover { background: var(--bg-subtle); color: var(--primary); }

.btn-nav-contact { background: var(--primary); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; padding: 0.6rem 1.6rem; border-radius: 50px; transition: var(--transition); margin-left: 0.5rem; }
.btn-nav-contact:hover { background: var(--primary-dark); box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 6px; pointer-events: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: var(--transition); }
.mobile-menu { display: none; margin: 1rem auto 0; width: 92%; max-width: 1000px; background: #fff; border-radius: var(--radius-lg); padding: 1rem; border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15); pointer-events: auto; max-height: calc(100vh - 110px); overflow-y: auto; }
.mobile-menu.open { display: block; }

/* ============================================
   BUTTONS
================================================ */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-weight: 700; padding: 0.85rem 1.75rem; border-radius: var(--radius-lg); transition: var(--transition); font-size: 0.95rem; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-yellow { background: var(--accent); color: #fff; box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2); }
.btn-yellow:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--text-dark); border: 2px solid var(--text-dark); }
.btn-outline-white:hover { background: var(--text-dark); color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ============================================
   SECTION LABELS
================================================ */
.section-label { display: inline-flex; align-items: center; background: var(--primary-light); color: var(--primary-dark); font-family: var(--font-head); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: var(--radius-lg); margin-bottom: 1rem; }
.section-head-center { text-align: center; margin-bottom: 3rem; }
.section-head-center .section-sub { margin: 0 auto; font-size: 1.1rem; }

/* ============================================
   HERO
================================================ */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; background: var(--bg-body); overflow: hidden; padding: 3rem 0; }
.hero-bg-pattern { position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 40%); pointer-events: none; }
.hero-grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(16,185,129,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(16,185,129,0.03) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }

.hero .container { display: flex; flex-direction: column; align-items: center; text-align: center; justify-content: center; min-height: 75vh; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-dark); font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; padding: 0.4rem 1.2rem; border-radius: var(--radius-lg); margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.hero h1 { margin-bottom: 1.25rem; font-size: 4rem; max-width: 900px; }
.hero h1 .highlight { color: var(--primary); }
.hero-desc { font-size: 1.2rem; margin: 0 auto 2.5rem; max-width: 750px; color: var(--text-muted); }
.hero-btns { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 2rem; justify-content: center; }
.hero-stars { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--text-muted); justify-content: center; }
.stars { color: var(--accent); }

/* Removed hero-visual styles as requested */

/* ============================================
   STATS BAR
================================================ */
.stats-bar { background: var(--text-dark); padding: 3rem 0; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 1.5rem; background: rgba(255,255,255,0.05); border-radius: var(--radius); }
.stat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.stat-number { font-family: var(--font-head); font-weight: 800; font-size: 2.5rem; color: var(--primary); margin-bottom: 0.4rem; }
.stat-label { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: rgba(255,255,255,0.7); text-transform: uppercase; }

/* ============================================
   SERVICES GRID
================================================ */
.services-grid, .services-big-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { position: relative; border-radius: var(--radius-lg); height: 320px; overflow: hidden; transition: var(--transition); border: none; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.service-card:hover img { transform: scale(1.1); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 40%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.8rem; color: #fff; }
.card-title { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; margin-bottom: 0.5rem; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; }
.card-desc { font-size: 0.85rem; color: rgba(255,254,254,0.85); margin-bottom: 1.25rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-clamp: 2; overflow: hidden; }
.card-link { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: #f59e0b; display: inline-flex; align-items: center; gap: 0.5rem; transition: var(--transition); }
.card-link:hover { color: #fbbf24; gap: 8px; }

.service-card-view-all { background: var(--primary); }
.service-card-view-all .card-overlay { background: rgba(16, 185, 129, 0.85); justify-content: center; align-items: center; text-align: center; }
.service-card-view-all .card-link { color: #fff; border: 1.5px solid #fff; padding: 0.6rem 1.2rem; border-radius: 30px; margin-top: 1rem; }
.service-card-view-all .card-link:hover { background: #fff; color: var(--primary); }

/* ============================================
   CATEGORIES GRID
================================================ */
.categories-section { background: var(--bg-subtle); }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.category-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center; border: 1px solid var(--border); transition: var(--transition); }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--primary); }
.category-icon { width: 70px; height: 70px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; overflow: hidden; border: 1px solid var(--primary-light); }
.category-icon img { width: 100%; height: 100%; object-fit: cover; }
.category-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--text-dark); }
.category-card p { color: var(--text-muted); }

/* ============================================
   WHY CHOOSE US
================================================ */
.why-section { background: var(--text-dark); }
.why-section h2 { color: #fff; }
.why-section .section-label { background: rgba(16, 185, 129, 0.2); color: var(--primary-light); }
.why-section .section-sub { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 2rem 1.5rem; transition: var(--transition); text-align: left; }
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ============================================
   PROCESS (TIMELINE)
================================================ */
.process-section { background: var(--bg-card); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; position: relative; }
.process-grid::before { content: ''; position: absolute; left: 0; right: 0; top: 72px; height: 2px; background: var(--border); z-index: 0; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; position: relative; z-index: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem 1.5rem; transition: var(--transition); }
.process-step:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.step-number { width: 64px; height: 64px; margin: 0 auto; background: var(--primary-light); color: var(--primary-dark); font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-emoji { font-size: 1.8rem; margin-bottom: 0.5rem; display: none; } /* Hide old layout element */
.process-step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

/* ============================================
   CTA BANNER
================================================ */
.cta-banner { background: var(--bg-subtle); padding: 5rem 0; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-banner h2 { font-size: 2.2rem; margin-bottom: 1rem; color: var(--text-dark); }
.cta-banner p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; }

/* ============================================
   FOOTER
================================================ */
footer { background: var(--text-dark); padding: 4rem 0 0; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: flex; align-items: center; gap: 0.8rem; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: #fff; margin-bottom: 1rem; text-decoration: none; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; transition: var(--transition); }
.social-btn:hover { background: var(--primary); }

.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; text-transform: uppercase; color: #fff; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }

.footer-contact-item { display: flex; gap: 0.5rem; margin-bottom: 0.8rem; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--primary); }

.footer-bottom { padding: 1.5rem 0; display: flex; justify-content: space-between; color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* Scroll Bottom */
.scroll-top { position: fixed; bottom: 1.5rem; left: 1.5rem; width: 50px; height: 50px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3); z-index: 100; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); opacity: 0; visibility: hidden; transform: translateY(20px); }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); transform: scale(1.1) translateY(-5px); box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4); }

.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 15px rgba(37,211,102,0.4); z-index: 100; transition: all 0.3s ease; }
.wa-float:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 8px 25px rgba(37,211,102,0.5); }

/* ============================================
   PAGE HERO (INNER)
================================================ */
.page-hero { background: var(--bg-subtle); padding: 4rem 0; text-align: center; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 0.75rem; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--text-dark); }
.breadcrumb .current { color: var(--primary); }

/* ============================================
   OTHER PAGES (About, Services, Contact)
================================================ */
.service-img-card { position: relative; border-radius: var(--radius-lg); height: 350px; overflow: hidden; transition: var(--transition); border: none; background: #000; }
.service-img-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); opacity: 0.85; }
.service-img-card:hover img { transform: scale(1.1); opacity: 1; }
.service-img-body { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; color: #fff; text-align: left; }
.service-img-body h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; margin-bottom: 0.5rem; color: #fff; text-transform: uppercase; }
.service-img-body p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; line-height: 1.5; height: auto; }

/* COMMERCIAL SECTION (PILLS) */
.commercial-pills { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; max-width: 1000px; margin-left: auto; margin-right: auto; }
.commercial-pill { background: #fff; border: 1.5px solid var(--border); padding: 0.8rem 2rem; border-radius: 50px; font-family: var(--font-head); font-weight: 700; color: var(--text-dark); transition: var(--transition); cursor: default; font-size: 1rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.commercial-pill:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.1); }

/* REDESIGNED PREVENTION SECTION */
.prevention-section { background: var(--bg-subtle); }
.prevention-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.prevention-card { padding: 2.5rem; background: #fff; border-radius: 20px; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05); transition: all 0.3s ease; text-align: left; position: relative; border-bottom: 4px solid transparent; }
.prevention-card:hover { transform: translateY(-8px); box-shadow: 0 30px 40px -10px rgba(0,0,0,0.08); border-bottom-color: var(--primary); }
.prevention-card-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.prevention-card .icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; font-size: 1.8rem; background: #fff; border-radius: 50%; box-shadow: 0 8px 20px rgba(0,0,0,0.06); margin-bottom: 0; border: 1px solid var(--border); flex-shrink: 0; }
.prevention-card h3 { font-size: 1.25rem; margin-bottom: 0; color: var(--text-dark); line-height: 1.3; }
.prevention-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-visual { background: var(--bg-subtle); border-radius: var(--radius-lg); padding: 4rem; text-align: center; }
.about-emoji { font-size: 5rem; margin-bottom: 1rem; }
.about-year-badge { display: inline-block; background: var(--primary-light); color: var(--primary-dark); font-family: var(--font-head); font-weight: 700; padding: 0.8rem 1.5rem; border-radius: var(--radius-lg); margin-top: 1rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.team-card { padding: 2.5rem 2rem; }
.team-avatar { width: 90px; height: 90px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 1.25rem; }
.team-role { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--primary); margin-bottom: 0.8rem; text-transform: uppercase; }

.certs-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.cert-badge { background: var(--bg-card); border: 1px solid var(--border); font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; padding: 0.6rem 1.2rem; border-radius: var(--radius-lg); }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.value-card { padding: 2rem 1.5rem; }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; padding: 4rem 0; }
.contact-form-wrap { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 3rem; box-shadow: 0 20px 40px -15px rgba(0,0,0,0.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { margin-bottom: 0.25rem; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; max-width: 100%; padding: 1.1rem; border: 1.5px solid transparent; border-radius: 12px; font-family: var(--font-body); font-size: 0.95rem; background: var(--bg-subtle); outline: none; transition: var(--transition); box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1); }
.form-submit-btn { width: 100%; margin-top: 1.5rem; border-radius: 12px; }

.contact-info-card { background: var(--text-dark); border-radius: var(--radius-lg); padding: 2.5rem; color: #fff; margin-bottom: 1.5rem; }
.contact-info-card h3 { color: #fff; margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.25rem; }
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ci-icon { width: 40px; height: 40px; background: rgba(16, 185, 129, 0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.ci-label { font-family: var(--font-head); font-weight: 700; font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 0.2rem; }
.ci-value { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; word-break: break-word; }
.map-wrap { height: 250px; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-subtle); border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* SERVICE DETAIL */
.service-detail-layout { display: grid; grid-template-columns: 1fr 350px; gap: 3rem; padding: 4rem 0; }
.service-detail-hero { height: 450px; background: var(--primary-light); border-radius: var(--radius-lg); background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; overflow: hidden; }
.service-detail-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.service-tags, .pest-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1rem 0; }
.tag-chip, .pest-tag { background: var(--bg-subtle); border: 1px solid var(--border); font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; padding: 0.4rem 1rem; border-radius: var(--radius-lg); }
.service-section-title { font-size: 1.4rem; margin: 2rem 0 1rem; border-bottom: 2px solid var(--border); padding-bottom: 0.5rem; }
.process-steps-list li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.step-num { width: 28px; height: 28px; background: var(--primary); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.checklist li { display: flex; gap: 0.75rem; padding: 0.5rem 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 0.75rem; }
.faq-question { width: 100%; padding: 1.25rem; text-align: left; background: var(--bg-card); font-family: var(--font-head); font-weight: 700; font-size: 1rem; display: flex; justify-content: space-between; align-items: center; border-radius: var(--radius-sm); }
.faq-answer { max-height: 0; overflow: hidden; padding: 0 1.25rem; transition: var(--transition); background: var(--bg-subtle); }

.price-card { background: var(--bg-card); border: 2px solid var(--primary); border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.price-label { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 0.5rem; }
.price-amount { font-family: var(--font-head); font-weight: 900; font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
.trust-badges { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; }
.sidebar-other-services { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.sidebar-other-services h4 { margin-bottom: 1rem; text-transform: uppercase; font-size: 0.9rem; }
.sidebar-service-link { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-family: var(--font-head); font-weight: 600; color: var(--text-muted); transition: var(--transition); }
.sidebar-service-link:hover { color: var(--primary); padding-left: 5px; }

/* ============================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-btns, .hero-stars { justify-content: center; }
  .stats-grid, .services-grid, .services-big-grid, .why-grid, .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-img-card { height: 260px; }
  .about-grid, .contact-layout, .service-detail-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  /* Global Layouts */
  section { padding: 3rem 0; }
  .page-hero { padding: 3rem 0; }
  .hero { padding: 2rem 0; }
  .cta-banner { padding: 3rem 0; }

  /* Navbar */
  .top-bar-left, .top-bar-right { justify-content: center; width: 100%; }
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-links { display: flex; flex-direction: column; gap: 0.25rem; }
  .mobile-links > a, .mobile-dropdown-toggle { display: block; padding: 0.85rem 1.2rem; font-family: var(--font-head); font-weight: 600; color: var(--text-dark); transition: var(--transition); border-radius: 8px; cursor: pointer; }
  .mobile-links > a:hover, .mobile-dropdown-toggle:hover { background: var(--bg-subtle); color: var(--primary); }
  .mobile-dropdown-menu { display: none; flex-direction: column; padding-left: 1.5rem; gap: 0.25rem; margin-top: 0.25rem; }
  .mobile-dropdown.open .mobile-dropdown-menu { display: flex; }
  .mobile-dropdown-menu a { display: block; padding: 0.6rem 1rem; font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; color: var(--text-muted); border-radius: 8px; transition: var(--transition); }
  .mobile-dropdown-menu a:hover { color: var(--primary); background: var(--bg-subtle); }
  .mobile-contact-btn { background: var(--primary) !important; color: #fff !important; text-align: center; border-radius: 50px !important; margin-top: 0.5rem; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2); }

  /* Grids */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .services-grid, .services-big-grid, .why-grid, .categories-grid, .process-grid, .process-step, .team-grid { grid-template-columns: 1fr; flex-direction: column; text-align: center; }
  .process-grid::before { display: none; }
  .step-number { margin: 0 auto 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .commercial-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .prevention-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Card Padding Replacements */
  .hero-card-main, .category-card, .process-step, .team-card, .contact-form-wrap, .value-card, .prevention-card, .price-card, .contact-info-card { padding: 1.5rem; }
  .commercial-card { padding: 1.25rem 1rem; }
  .commercial-card .icon { width: 44px; height: 44px; font-size: 1.4rem; margin-bottom: 1rem; border-radius: 12px; }
  .commercial-card h4 { font-size: 1rem; }
  .about-visual { padding: 2rem; }
}

@media (max-width: 480px) {
  /* Ultra-small overrides */
  .nav-wrapper { gap: 0.25rem; padding: 0.6rem 0.8rem 0.6rem 1rem; }
  .nav-logo { font-size: 1.1rem; white-space: nowrap; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; gap: 0.75rem; }
  .hero-btns a.btn { width: 100%; justify-content: center; }
  .hero-emoji-grid { gap: 0.5rem; }
  .pest-bubble { font-size: 1.5rem; padding: 0.75rem; }
  
  .cta-btns { flex-direction: column; gap: 0.75rem; }
  .cta-btns a.btn { width: 100%; justify-content: center; }
  
  .service-detail-hero { height: 200px; font-size: 4rem; }
}
