/* Template T2 */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@400;500;700&display=swap');

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

:root {
  --primary: #1a2332;
  --accent: #f59e0b;
  --bg: #ffffff;
  --text: #1a1a1a;
  --heading-font: 'Fraunces', serif;
  --body-font: 'DM Sans', sans-serif;
}

body { font-family: var(--body-font); color: var(--text); background: var(--bg); line-height: 1.7; }

/* NAV */
nav { background: var(--primary); padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; min-height: 64px; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.18); }
.nav-brand { font-family: var(--heading-font); font-size: 1.5rem; color: #fff; text-decoration: none; letter-spacing: 1px; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-phone { color: var(--accent); font-weight: 700; text-decoration: none; font-size: 1rem; white-space: nowrap; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* HERO */
.hero { background: var(--primary); color: #fff; padding: 5rem 1.5rem 4rem; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary) 60%, #f59e0b22 100%); }
.hero-inner { position: relative; max-width: 860px; margin: 0 auto; }
.hero h1 { font-family: var(--heading-font); font-size: clamp(2.2rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 1.2rem; letter-spacing: 1px; }
.hero p { font-size: 1.15rem; opacity: 0.88; max-width: 620px; margin: 0 auto 2rem; }
.btn { display: inline-block; background: var(--accent); color: #1a1a1a; padding: 0.85rem 2.2rem; border-radius: 4px; font-weight: 700; text-decoration: none; font-size: 1rem; transition: opacity 0.2s, transform 0.2s; border: none; cursor: pointer; font-family: var(--body-font); }
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-phone { font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.hero-phone a { color: var(--accent); text-decoration: none; }

/* TRUST BAR */
.trust-bar { background: var(--accent); padding: 0.75rem 1.5rem; text-align: center; }
.trust-bar p { color: #1a1a1a; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px; }

/* SECTIONS */
.section { padding: 4rem 1.5rem; }
.section-alt { background: #1a23320d; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title { font-family: var(--heading-font); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--primary); margin-bottom: 1rem; }
.section-sub { color: #555; margin-bottom: 2.5rem; font-size: 1.05rem; max-width: 640px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* CARDS */
.card { background: #fff; border-radius: 8px; padding: 2rem; box-shadow: 0 2px 16px rgba(0,0,0,0.08); border-top: 4px solid var(--accent); transition: transform 0.2s; }
.card:hover { transform: translateY(-3px); }
.card h3 { font-family: var(--heading-font); font-size: 1.3rem; color: var(--primary); margin-bottom: 0.75rem; }
.card p { color: #555; font-size: 0.95rem; }
.card a { display: inline-block; margin-top: 1rem; color: var(--accent); font-weight: 700; text-decoration: none; }

/* SERVICE LIST */
.service-list { list-style: none; }
.service-list li { padding: 0.5rem 0; border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 0.75rem; }
.service-list li::before { content: ''; display: block; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* CITY GRID */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.city-item { background: var(--primary); color: #fff; padding: 1rem; border-radius: 6px; text-align: center; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: background 0.2s; }
.city-item:hover { background: var(--accent); color: #1a1a1a; }

/* FORM */
.form-section { background: var(--primary); padding: 4rem 1.5rem; }
.form-section .section-title { color: #fff; }
.form-section .section-sub { color: rgba(255,255,255,0.75); }
.lead-form { background: #fff; border-radius: 8px; padding: 2.5rem; max-width: 600px; margin: 0 auto; box-shadow: 0 4px 32px rgba(0,0,0,0.2); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #ddd; border-radius: 4px; font-family: var(--body-font); font-size: 1rem; color: var(--text); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit { width: 100%; padding: 1rem; font-size: 1.1rem; }
.form-note { text-align: center; margin-top: 1rem; font-size: 0.85rem; color: #777; }

/* CONTENT SECTION */
.content-body { max-width: 820px; }
.content-body h2 { font-family: var(--heading-font); font-size: 1.8rem; color: var(--primary); margin: 2rem 0 0.75rem; }
.content-body p { margin-bottom: 1.1rem; color: var(--text); }
.content-body ul { margin: 1rem 0 1.5rem 1.5rem; }
.content-body ul li { margin-bottom: 0.5rem; }

/* PAGE HERO (inner pages) */
.page-hero { background: var(--primary); color: #fff; padding: 3rem 1.5rem; }
.page-hero h1 { font-family: var(--heading-font); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.82; font-size: 1.05rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

/* FOOTER */
footer { background: var(--primary); color: rgba(255,255,255,0.75); padding: 3rem 1.5rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { font-family: var(--heading-font); color: #fff; margin-bottom: 1rem; font-size: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col p { font-size: 0.9rem; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; text-align: center; font-size: 0.85rem; }

/* STICKY MOBILE CALL BTN */
.sticky-call { display: none; position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; }
.sticky-call a { display: block; background: var(--accent); color: #1a1a1a; padding: 0.9rem 1.6rem; border-radius: 50px; font-weight: 700; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.25); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; gap: 0; background: var(--primary); position: absolute; top: 64px; left: 0; right: 0; padding: 1rem 1.5rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .sticky-call { display: block; }
  .hero { padding: 3rem 1rem 2.5rem; }
}

/* CONTACT PAGE */
.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.contact-info-item { background: var(--primary); color: #fff; padding: 1.5rem; border-radius: 8px; text-align: center; }
.contact-info-item h3 { font-family: var(--heading-font); margin-bottom: 0.5rem; color: var(--accent); }
.contact-info-item a { color: #fff; text-decoration: none; }

/* SUCCESS MSG */
.success-msg { display: none; background: #d4edda; border: 1px solid #c3e6cb; color: #155724; padding: 1rem; border-radius: 4px; margin-top: 1rem; text-align: center; font-weight: 600; }
