/*
Theme Name: HandySquad Services
Theme URI: https://handysquadservices.com
Author: HandySquad Services
Description: Custom WordPress theme for HandySquad Services, a furniture assembly and handyman company serving the Lower Mainland, BC. Converted from a static landing page.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: handysquad
*/

<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1a2332; --navy-light: #243040; --gold: #c8973a; --gold-light: #e8b254;
  --cream: #f8f4ef; --white: #ffffff; --text: #2c3340; --text-muted: #6b7685;
  --border: #e2ddd7; --radius: 12px;
}
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,35,50,0.97); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px; border-bottom: 1px solid rgba(200,151,58,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 42px; }
.nav-logo-text { color: var(--white); font-family: "Playfair Display", serif; font-size: 1.1rem; font-weight: 700; line-height: 1.1; }
.nav-logo-text span { display: block; font-size: 0.65rem; font-family: "DM Sans", sans-serif; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { background: var(--gold); color: var(--navy) !important; padding: 10px 22px; border-radius: 50px; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.hero { padding-top: 70px; min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: 0; right: 0; width: 55%; height: 100%; background: linear-gradient(to left, transparent 0%, var(--navy) 100%); z-index: 1; }
.hero-img { position: absolute; right: 0; top: 70px; bottom: 0; width: 58%; background-size: cover; background-position: center; opacity: 0.55; }
.hero-content { position: relative; z-index: 2; padding: 80px 5% 80px 7%; display: flex; flex-direction: column; justify-content: center; gap: 28px; max-width: 620px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,151,58,0.15); border: 1px solid rgba(200,151,58,0.3); color: var(--gold-light); padding: 7px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; width: fit-content; }
.hero-badge::before { content: "★"; font-size: 0.7rem; }
h1 { font-family: "Playfair Display", serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; color: var(--white); }
h1 em { color: var(--gold); font-style: normal; display: block; }
.hero-desc { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.7; font-weight: 300; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--navy); padding: 15px 32px; border-radius: 50px; border: none; font-family: "DM Sans", sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,58,0.35); }
.btn-outline { background: transparent; color: var(--white); padding: 15px 32px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.3); font-family: "DM Sans", sans-serif; font-size: 0.95rem; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats { display: flex; gap: 36px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.1); }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: "Playfair Display", serif; font-size: 1.7rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; text-transform: uppercase; }
.trust-bar { background: var(--cream); padding: 22px 5%; display: flex; align-items: center; justify-content: center; gap: 48px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }
section { padding: 90px 5%; }
.section-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
h2 { font-family: "Playfair Display", serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 20px; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; max-width: 560px; }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-desc { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.service-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; transition: all 0.25s; }
.service-card:hover { border-color: var(--gold); background: var(--white); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.service-icon { width: 72px; height: 72px; object-fit: contain; }
.service-name { font-family: "Playfair Display", serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.service-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.how-section { background: var(--navy); }
.how-header { margin-bottom: 56px; }
.how-section .section-label { color: rgba(255,255,255,0.6); }
.how-section h2 { color: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; max-width: 1100px; }
.step { padding: 40px 36px; border-right: 1px solid rgba(255,255,255,0.08); }
.step:last-child { border-right: none; }
.step-num { font-family: "Playfair Display", serif; font-size: 4rem; font-weight: 900; color: rgba(200,151,58,0.15); line-height: 1; margin-bottom: 16px; }
.step-title { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.gallery-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 900px; margin: 48px auto 0; }
.gallery-grid img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); transition: transform 0.3s; }
.gallery-grid img:hover { transform: scale(1.02); }
.gallery-grid img:first-child { grid-column: 1 / -1; height: 360px; }
.area-section { background: var(--white); }
.area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1100px; }
.area-cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.city-pill { background: var(--cream); border: 1px solid var(--border); padding: 8px 18px; border-radius: 50px; font-size: 0.88rem; font-weight: 500; color: var(--text); transition: all 0.2s; cursor: default; }
.city-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.area-highlight { background: var(--navy); border-radius: 20px; padding: 48px; color: var(--white); }
.area-highlight h3 { font-family: "Playfair Display", serif; font-size: 1.7rem; margin-bottom: 16px; }
.area-highlight p { color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 24px; }
.same-day-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--navy); padding: 10px 20px; border-radius: 50px; font-size: 0.88rem; font-weight: 700; }
#contact { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; max-width: 1100px; }
.contact-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--border); padding: 16px 20px; border-radius: var(--radius); text-decoration: none; transition: all 0.2s; }
.contact-method:hover { border-color: var(--gold); transform: translateX(4px); }
.method-icon { font-size: 1.4rem; width: 44px; height: 44px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.method-info { display: flex; flex-direction: column; gap: 2px; }
.method-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 500; }
.method-value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.contact-form { background: var(--white); border-radius: 20px; padding: 40px; border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.05); }
.contact-form h3 { font-family: "Playfair Display", serif; font-size: 1.4rem; margin-bottom: 28px; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border-radius: 10px; border: 1.5px solid var(--border); font-family: "DM Sans", sans-serif; font-size: 0.93rem; color: var(--text); background: var(--cream); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 15px; background: var(--navy); color: var(--white); border: none; border-radius: 50px; font-family: "DM Sans", sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.form-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 48px 5% 28px; display: flex; flex-direction: column; gap: 32px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
.footer-brand p { font-size: 0.85rem; margin-top: 10px; max-width: 260px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-links h4 { color: var(--white); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } .delay-3 { animation-delay: 0.3s; } .delay-4 { animation-delay: 0.4s; }
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-img { width: 100%; top: auto; bottom: 0; height: 40%; opacity: 0.2; }
  .hero-content { padding: 60px 6% 200px; }
  .nav-links { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .area-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img:first-child { grid-column: 1; }
  .trust-bar { gap: 24px; }
}

.pricing-section { background: var(--navy); }
.pricing-section h2, .pricing-section .section-label { color: var(--white); }
.pricing-section h2 { color: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; max-width: 1100px; margin: 48px auto 0; }
.pricing-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,151,58,0.2); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; gap: 16px; transition: all 0.25s; }
.pricing-card:hover { border-color: var(--gold); background: rgba(200,151,58,0.08); transform: translateY(-4px); }
.pricing-card-name { font-family: "Playfair Display", serif; font-size: 1.1rem; font-weight: 700; color: var(--white); }
.pricing-card-desc { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.pricing-card-price { font-family: "Playfair Display", serif; font-size: 1.7rem; font-weight: 900; color: var(--gold); }
.pricing-card-price span { font-size: 0.8rem; font-family: "DM Sans", sans-serif; font-weight: 400; color: rgba(255,255,255,0.4); }
.pricing-card-features { display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.pricing-card-features li { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: rgba(255,255,255,0.7); list-style: none; }
.pricing-card-features li::before { content: "✓"; color: var(--gold); font-weight: 700; font-size: 0.85rem; }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }
