/* Daniel's Heating & Air — Brand-Correct Stylesheet
   Brand: Red swoosh, bold black type, American heritage
   Built by IHC Technology · ihctech.us */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --red: #E30613; --red-dark: #c20511; --red-light: #ff2a37;
    --red-glow: rgba(227,6,19,0.25);
    --charcoal: #1a1a1a; --charcoal-mid: #2a2a2a; --charcoal-light: #3a3a3a;
    --navy: #1a3a6e; --navy-light: #25508f;
    --white: #ffffff; --off-white: #f8f8f8; --light-gray: #f0f0f0;
    --text-dark: #1a1a1a; --text-body: #444; --text-light: #777;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    --shadow-red: 0 8px 30px rgba(227,6,19,0.3);
    --radius-sm: 6px; --radius-md: 10px; --radius-lg: 14px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Source Sans 3', sans-serif; color: var(--text-body); background: var(--white); overflow-x: hidden; line-height: 1.75; font-size: 20px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; color: var(--charcoal); line-height: 1.1; text-transform: uppercase; letter-spacing: 0.02em; }
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-label { font-family: 'Oswald', sans-serif; font-size: 0.95rem; color: var(--red); text-transform: uppercase; letter-spacing: 0.25em; font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.section-label::before, .section-label::after { content: ''; width: 30px; height: 2px; background: var(--red); }
.section-subtitle { font-size: 1.15rem; color: var(--text-light); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* TOPBAR */
.topbar { background: var(--charcoal); color: #fff; padding: 10px 0; font-size: 0.95rem; position: relative; z-index: 1001; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--red-light); font-weight: 600; transition: color var(--transition); }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-badge { background: var(--red); padding: 3px 12px; border-radius: 3px; font-size: 0.8rem; color: #fff; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }

/* NAVBAR */
.navbar { background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); border-bottom: 3px solid var(--red); position: sticky; top: 0; z-index: 1000; transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 55px; width: auto; transition: transform var(--transition); }
.nav-logo:hover img { transform: scale(1.03); }

.nav-links { display: flex; gap: 6px; align-items: center; list-style: none; }
.nav-links a { color: var(--charcoal); font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 8px 14px; border-radius: var(--radius-sm); transition: all 0.2s; position: relative; }
.nav-links a:hover { color: var(--red); background: rgba(227,6,19,0.04); }
.nav-links a.active { color: var(--red); }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav-dropdown-trigger svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 8px); left: -16px; min-width: 260px; padding: 8px 0; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.06); border-top: 3px solid var(--red); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.25s ease; z-index: 100; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 12px; padding: 12px 20px; font-size: 0.95rem; text-transform: none; letter-spacing: 0; }
.nav-dropdown-menu a:hover { background: var(--off-white); color: var(--red); }
.nav-dropdown-menu a svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

.nav-cta { background: var(--red) !important; color: white !important; padding: 12px 24px !important; border-radius: var(--radius-sm); font-weight: 700 !important; display: flex; align-items: center; gap: 8px; transition: all var(--transition) !important; white-space: nowrap; letter-spacing: 0.03em !important; }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-2px); box-shadow: var(--shadow-red); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1002; }
.mobile-toggle span { width: 26px; height: 3px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: white; padding: 18px 36px; border-radius: var(--radius-sm); font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em; transition: all var(--transition); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1); color: white; padding: 18px 36px; border-radius: var(--radius-sm); font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.06em; border: 2px solid rgba(255,255,255,0.25); transition: all var(--transition); }
.btn-secondary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--red); padding: 16px 32px; border-radius: var(--radius-sm); font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.06em; border: 2px solid var(--red); transition: all var(--transition); }
.btn-outline:hover { background: var(--red); color: white; transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-white { display: inline-flex; align-items: center; gap: 10px; background: white; color: var(--charcoal); padding: 18px 36px; border-radius: var(--radius-sm); font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.06em; transition: all var(--transition); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* HERO */
.hero { background: var(--charcoal); min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -20%; right: -5%; width: 50%; height: 140%; background: var(--red); transform: skewX(-8deg); opacity: 0.06; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--red-light), var(--red)); }
.hero-swoosh { position: absolute; top: 10%; right: 5%; width: 500px; height: 250px; border-top: 4px solid rgba(227,6,19,0.15); border-radius: 60% 40% 0 0; transform: rotate(-10deg); animation: swooshFloat 6s ease-in-out infinite; }
.hero-swoosh-2 { position: absolute; top: 15%; right: 8%; width: 400px; height: 200px; border-top: 2px solid rgba(227,6,19,0.08); border-radius: 60% 40% 0 0; transform: rotate(-12deg); animation: swooshFloat 8s ease-in-out infinite reverse; }
@keyframes swooshFloat { 0%, 100% { transform: rotate(-10deg) translateY(0); } 50% { transform: rotate(-8deg) translateY(-15px); } }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px); background-size: 80px 80px; }
.hero-particles { position: absolute; inset: 0; z-index: 1; }
.particle { position: absolute; width: 3px; height: 3px; background: rgba(227,6,19,0.4); border-radius: 50%; animation: particleFloat linear infinite; }
@keyframes particleFloat { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-10vh) scale(1); opacity: 0; } }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-since { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(227,6,19,0.4); padding: 8px 18px; border-radius: 3px; color: var(--red-light); font-family: 'Oswald', sans-serif; font-size: 0.95rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; margin-bottom: 28px; animation: slideInLeft 0.8s var(--transition-spring) both; }
.hero-since::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.4); } }
.hero h1 { color: #fff; margin-bottom: 16px; animation: slideInLeft 0.8s var(--transition-spring) 0.1s both; }
.hero h1 span { color: var(--red); }
.hero-description { font-size: 1.3rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; max-width: 540px; font-weight: 300; animation: slideInLeft 0.8s var(--transition-spring) 0.2s both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: slideInLeft 0.8s var(--transition-spring) 0.3s both; }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }

.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; animation: slideInRight 0.8s var(--transition-spring) 0.4s both; }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.stat-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.4s ease; }
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(227,6,19,0.2); transform: translateY(-4px); }
.stat-number { font-family: 'Oswald', sans-serif; font-size: 3rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; font-family: 'Oswald', sans-serif; }
.stat-card.featured { grid-column: 1 / -1; border-color: rgba(227,6,19,0.15); }
.stat-card.featured .stat-number { font-size: 3.8rem; color: var(--red); }

/* TRUST BAR */
.trust-bar { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0; position: relative; }
.trust-bar::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.trust-bar-inner { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-size: 1.05rem; font-weight: 500; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.trust-item svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: var(--radius-md); padding: 40px 28px; border: 1px solid rgba(0,0,0,0.06); transition: all 0.4s ease; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 60px; height: 60px; background: var(--off-white); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all var(--transition); border: 1px solid rgba(0,0,0,0.04); }
.service-card:hover .service-icon { background: var(--red); border-color: var(--red); transform: scale(1.08); }
.service-icon svg { width: 28px; height: 28px; color: var(--red); transition: color var(--transition); }
.service-card:hover .service-icon svg { color: white; }
.service-card h3 { color: var(--charcoal); margin-bottom: 12px; }
.service-card p { font-size: 1.08rem; color: var(--text-light); line-height: 1.7; }
.service-card .service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--red); transition: all var(--transition); }
.service-card .service-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ABOUT SECTION */
.about-section { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.about-section::before { content: ''; position: absolute; top: -10%; right: -5%; width: 40%; height: 120%; background: var(--red); opacity: 0.03; transform: skewX(-8deg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content .section-label { text-align: left; justify-content: flex-start; }
.about-content .section-label::after { display: none; }
.about-content .section-title { color: #fff; text-align: left; }
.about-text { font-size: 1.2rem; line-height: 1.8; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 16px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon { width: 40px; height: 40px; background: rgba(227,6,19,0.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.about-feature-icon svg { width: 18px; height: 18px; color: var(--red); }
.about-feature h4 { font-family: 'Oswald', sans-serif; font-size: 1.08rem; font-weight: 600; color: #fff; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.about-feature p { font-size: 1.05rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

.timeline { position: relative; padding-left: 44px; }
.timeline::before { content: ''; position: absolute; left: 14px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--red), rgba(227,6,19,0.15)); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -36px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--red); border: 3px solid var(--charcoal); transition: all var(--transition); }
.timeline-item:hover::before { transform: scale(1.3); box-shadow: 0 0 16px var(--red-glow); }
.timeline-year { font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--red); margin-bottom: 4px; }
.timeline-text { font-size: 1.08rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* REVIEWS */
.reviews-section { background: var(--off-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border-radius: var(--radius-md); padding: 36px 28px; border: 1px solid rgba(0,0,0,0.05); position: relative; transition: all var(--transition); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card::before { content: ''; position: absolute; top: 0; left: 28px; width: 40px; height: 3px; background: var(--red); }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; margin-top: 8px; }
.review-stars svg { width: 20px; height: 20px; fill: #FFC107; color: #FFC107; }
.review-text { font-size: 1.12rem; line-height: 1.7; color: var(--text-body); margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--charcoal); display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1rem; }
.review-name { font-weight: 600; color: var(--charcoal); font-size: 1.05rem; }
.review-source { font-size: 0.95rem; color: var(--text-light); }
.review-quote-mark { position: absolute; top: 16px; right: 24px; font-family: 'Oswald', sans-serif; font-size: 5rem; color: rgba(227,6,19,0.07); line-height: 1; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--radius-md); border: 1px solid rgba(0,0,0,0.06); overflow: hidden; transition: all var(--transition); }
.faq-item:hover { border-color: rgba(227,6,19,0.15); }
.faq-question { padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px; user-select: none; }
.faq-question h3 { font-family: 'Source Sans 3', sans-serif; font-size: 1.12rem; font-weight: 600; color: var(--charcoal); text-transform: none; letter-spacing: 0; }
.faq-toggle { width: 32px; height: 32px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); }
.faq-toggle svg { width: 14px; height: 14px; color: var(--red); transition: transform var(--transition); }
.faq-item.open .faq-toggle { background: var(--red); }
.faq-item.open .faq-toggle svg { color: white; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 28px 24px; font-size: 1.12rem; color: var(--text-light); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }

/* AREA TAGS */
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 750px; margin: 0 auto; }
.area-tag { background: var(--off-white); border: 1px solid rgba(0,0,0,0.06); padding: 12px 24px; border-radius: var(--radius-sm); font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; color: var(--charcoal); transition: all var(--transition); }
.area-tag:hover { background: var(--red); color: white; border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-red); }

/* CTA */
.cta-section { background: var(--red); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.cta-phone { font-family: 'Oswald', sans-serif; font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 700; color: #fff; display: inline-block; margin-bottom: 16px; transition: all var(--transition); letter-spacing: 0.02em; }
.cta-phone:hover { transform: scale(1.03); text-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.2rem; margin-bottom: 36px; }
.cta-hours { display: inline-flex; gap: 24px; flex-wrap: wrap; justify-content: center; background: rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md); padding: 20px 36px; }
.cta-hour-item { text-align: center; }
.cta-hour-item .day { font-family: 'Oswald', sans-serif; font-size: 0.88rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; }
.cta-hour-item .time { font-size: 1.08rem; color: #fff; font-weight: 600; }

/* FEATURE GRID */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card { display: flex; gap: 20px; padding: 28px; background: #fff; border-radius: var(--radius-md); border: 1px solid rgba(0,0,0,0.06); transition: all var(--transition); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(227,6,19,0.12); }
.feature-card .feature-icon { width: 52px; height: 52px; background: var(--off-white); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-card .feature-icon svg { width: 24px; height: 24px; color: var(--red); }
.feature-card h4 { font-family: 'Oswald', sans-serif; color: var(--charcoal); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.03em; }
.feature-card p { font-size: 1.05rem; color: var(--text-light); line-height: 1.7; }

/* PAGE HERO */
.page-hero { background: var(--charcoal); padding: 130px 0 80px; position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px); background-size: 80px 80px; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.2rem; max-width: 620px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 24px; font-size: 0.95rem; }
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--red); }

/* CONTENT LAYOUT */
.content-2col { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.content-sidebar { position: sticky; top: 96px; background: var(--off-white); border-radius: var(--radius-md); padding: 32px; border: 1px solid rgba(0,0,0,0.06); }
.sidebar-cta-phone { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--red); display: block; margin-bottom: 8px; }
.prose { font-size: 1.12rem; line-height: 1.8; color: var(--text-body); }
.prose h2 { margin: 40px 0 16px; font-size: 2rem; }
.prose h3 { margin: 32px 0 12px; }
.prose p { margin-bottom: 16px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--charcoal); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 16px 18px; border: 2px solid rgba(0,0,0,0.08); border-radius: var(--radius-sm); font-family: 'Source Sans 3', sans-serif; font-size: 1.05rem; transition: all var(--transition); background: #fff; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { display: flex; gap: 16px; padding: 24px; background: var(--off-white); border-radius: var(--radius-md); border-left: 3px solid var(--red); transition: all var(--transition); }
.contact-info-card:hover { transform: translateX(4px); }
.contact-info-card .icon { width: 48px; height: 48px; background: #fff; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .icon svg { width: 22px; height: 22px; color: var(--red); }
.contact-info-card h4 { font-family: 'Oswald', sans-serif; font-size: 1.05rem; color: var(--charcoal); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.03em; }
.contact-info-card p { font-size: 1.05rem; color: var(--text-light); }
.contact-info-card a { color: var(--red); font-weight: 600; }
.map-container { width: 100%; height: 350px; border-radius: var(--radius-md); overflow: hidden; border: 2px solid rgba(0,0,0,0.06); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* LOCATION */
.location-hero-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(227,6,19,0.4); padding: 8px 18px; border-radius: 3px; color: var(--red-light); font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.location-hero-badge svg { width: 16px; height: 16px; }
.location-stats { display: flex; gap: 40px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.location-stat { text-align: center; }
.location-stat .num { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--red); }
.location-stat .label { font-size: 0.88rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Oswald', sans-serif; }

/* FOOTER */
footer { background: #111; color: rgba(255,255,255,0.35); padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px; }
.footer-brand p { font-size: 1.05rem; line-height: 1.6; margin-top: 12px; max-width: 300px; }
.footer-col h4 { color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.35); font-size: 1.05rem; padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--red); }
.footer-license { font-size: 0.88rem; opacity: 0.6; }
.footer-built { font-size: 0.88rem; }
.footer-built a { color: var(--red); }

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.scale-in.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 0.05s; } .stagger-2 { transition-delay: 0.1s; } .stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; } .stagger-5 { transition-delay: 0.25s; } .stagger-6 { transition-delay: 0.3s; }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--red); z-index: 9999; transition: width 0.1s; }

/* RESPONSIVE */
@media (max-width: 968px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } .hero-stats { max-width: 400px; } .services-grid { grid-template-columns: repeat(2, 1fr); } .about-grid { grid-template-columns: 1fr; gap: 48px; } .reviews-grid { grid-template-columns: 1fr 1fr; } .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } .contact-grid { grid-template-columns: 1fr; } .content-2col { grid-template-columns: 1fr; } .content-sidebar { position: static; } .feature-grid { grid-template-columns: 1fr; } .hero-swoosh, .hero-swoosh-2 { display: none; } }
@media (max-width: 640px) { .topbar-inner { justify-content: center; text-align: center; } .topbar-right { display: none; } .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.99); backdrop-filter: blur(20px); flex-direction: column; padding: 100px 24px 24px; gap: 4px; z-index: 1001; } .nav-links.active { display: flex; } .nav-links a { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 1.2rem; } .nav-links a:hover { background: var(--off-white); } .nav-cta { justify-content: center; width: 100%; margin-top: 12px; font-size: 1.15rem !important; padding: 18px 24px !important; } .nav-dropdown-menu { position: static; box-shadow: none; border: none; border-top: none; background: var(--off-white); border-radius: var(--radius-sm); opacity: 1; visibility: visible; transform: none; margin: 4px 0 4px 16px; padding: 8px 0; } .mobile-toggle { display: flex; } .hero { min-height: auto; padding: 40px 0; } .hero-stats { grid-template-columns: 1fr 1fr; } .section { padding: 64px 0; } .services-grid { grid-template-columns: 1fr; } .reviews-grid { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr; } .trust-bar-inner { gap: 16px; } .trust-item { font-size: 0.95rem; } .page-hero { padding: 90px 0 60px; } .area-tags { gap: 8px; } .area-tag { padding: 10px 18px; font-size: 0.92rem; } }
