/* Peak Home Services — Handyman Demo (Basic Tier) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --navy: #1a2744; --blue: #2563eb; --orange: #0891b2;
    --white: #fff; --off: #f8fafc; --muted: #64748b;
    --border: #e2e8f0; --text: #1e293b; --success: #22c55e;
    --font: 'Inter', system-ui, sans-serif; --radius: 12px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; margin: 12px 0 16px; }
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-tag { display: inline-block; background: rgba(37,99,235,.1); color: var(--blue); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.accent { color: var(--orange); }

/* Demo Bar */
.demo-bar { background: var(--orange); color: var(--white); text-align: center; padding: 10px 24px; font-size: .85rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; position: relative; z-index: 1001; }
.demo-bar a { color: var(--white); text-decoration: underline; font-weight: 700; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; background: var(--orange); color: var(--white); font-weight: 700; font-size: .95rem; padding: 13px 28px; border-radius: 8px; border: 2px solid var(--orange); cursor: pointer; transition: background .2s, transform .15s; }
.btn-primary:hover { background: #0e7490; transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; background: transparent; color: rgba(255,255,255,.85); font-weight: 600; font-size: .95rem; padding: 13px 28px; border-radius: 8px; border: 2px solid rgba(255,255,255,.35); transition: border-color .2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,.8); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-nav { background: var(--orange); color: var(--white) !important; font-weight: 700; padding: 9px 20px; border-radius: 8px; }

/* Navbar */
.navbar { position: fixed; top: 36px; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: background .3s, box-shadow .3s, top .3s; }
.navbar.scrolled { background: rgba(20,30,60,.97); box-shadow: 0 2px 20px rgba(0,0,0,.3); top: 0; backdrop-filter: blur(8px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 1.05rem; font-weight: 600; }
.nav-brand strong { font-weight: 900; }
.brand-icon { font-size: 1.4rem; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links li a { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links li a:hover { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }

/* Hero */
.hero { background: var(--navy); min-height: 90vh; display: flex; align-items: center; padding: 120px 0 80px; }
.hero .container { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(8,145,178,.2); color: #67e8f9; font-size: .82rem; font-weight: 600; padding: 7px 14px; border-radius: 100px; border: 1px solid rgba(8,145,178,.3); margin-bottom: 20px; }
.hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 0; padding: 20px 28px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; width: fit-content; }
.trust-item { text-align: center; padding: 0 20px; }
.trust-item:first-child { padding-left: 0; }
.trust-num { display: block; font-size: 1.6rem; font-weight: 900; color: var(--orange); line-height: 1; }
.trust-label { font-size: .75rem; color: rgba(255,255,255,.5); max-width: 80px; line-height: 1.3; margin-top: 4px; display: block; }
.trust-div { width: 1px; height: 36px; background: rgba(255,255,255,.12); }
.hero-visual { display: flex; justify-content: center; }
.hero-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 36px 32px; text-align: center; }
.hero-card-icon { font-size: 3.5rem; margin-bottom: 16px; }
.hero-card h3 { color: #fff; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.hero-card p { color: rgba(255,255,255,.6); font-size: .9rem; }
.hero-card-city { margin-top: 20px; color: var(--orange); font-weight: 700; font-size: 1rem; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--off); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: box-shadow .2s, transform .2s; }
.service-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); transform: translateY(-3px); }
.svc-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* About */
.about-section { background: var(--navy); color: #fff; }
.about-inner { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: center; }
.about-visual { display: flex; justify-content: center; }
.about-badge-wrap { position: relative; }
.about-circle { width: 200px; height: 200px; background: rgba(8,145,178,.15); border: 2px solid rgba(8,145,178,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.about-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 50%; display: block; }
.about-years { position: absolute; bottom: -10px; right: -10px; background: var(--orange); color: #fff; font-weight: 800; font-size: .9rem; padding: 8px 16px; border-radius: 100px; white-space: nowrap; }
.about-content .section-tag { margin-bottom: 16px; display: inline-block; }
.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.about-content p { color: rgba(255,255,255,.62); line-height: 1.7; margin-bottom: 14px; }
.about-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.about-list li { color: rgba(255,255,255,.8); font-size: .95rem; display: flex; align-items: center; gap: 8px; }

/* Service Area */
.area-section { background: var(--off); }
.area-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-tag { background: var(--white); border: 1.5px solid var(--border); border-radius: 100px; padding: 8px 18px; font-size: .9rem; font-weight: 500; transition: border-color .2s, color .2s; }
.area-tag:hover { border-color: var(--orange); color: var(--orange); }

/* Contact */
.contact-section { background: var(--white); }
.contact-form { max-width: 680px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-full { margin-bottom: 18px; }
label { font-size: .84rem; font-weight: 600; color: var(--text); }
input, select, textarea { font-family: var(--font); font-size: .95rem; background: var(--off); border: 1.5px solid var(--border); border-radius: 8px; color: var(--text); padding: 12px 14px; outline: none; width: 100%; transition: border-color .2s; }
input:focus, textarea:focus { border-color: var(--orange); }
input::placeholder, textarea::placeholder { color: #94a3b8; }
textarea { resize: vertical; min-height: 110px; }
.contact-form .btn-primary { margin-top: 8px; }

/* Footer */
.footer { background: var(--navy); padding: 32px 0; }
.footer-inner { text-align: center; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.footer-brand { color: #fff; font-size: 1.05rem; font-weight: 600; display: flex; gap: 6px; align-items: center; }
.footer-brand strong { font-weight: 900; }
.footer-inner p { color: rgba(255,255,255,.45); font-size: .85rem; }
.footer-copy { font-size: .8rem !important; color: rgba(255,255,255,.25) !important; }
.footer-copy a { color: var(--orange); }

/* Responsive */
@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .about-inner { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links { display: none; position: fixed; inset: 0; background: rgba(20,30,60,.98); flex-direction: column; align-items: center; justify-content: center; gap: 28px; z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero-trust { flex-direction: column; gap: 16px; }
    .trust-div { width: 100%; height: 1px; }
    .trust-item { padding: 0; }
}
