/* ===== ELITE EDGE PAINTING LLC - STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Merriweather:wght@400;700;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1a2744;
  --navy-dark: #0f1a30;
  --navy-light: #243360;
  --gold: #c8943a;
  --gold-light: #e0a94a;
  --red: #c0392b;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-400: #adb5bd;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --text: #212529;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

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

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 700; font-size: 15px; letter-spacing: 0.3px; transition: all var(--transition); text-transform: uppercase; }
.btn-primary { background: var(--gold); color: var(--white); box-shadow: 0 4px 15px rgba(200,148,58,0.4); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,148,58,0.5); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #a93226; transform: translateY(-2px); }
.section-badge { display: inline-block; background: rgba(200,148,58,0.12); color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; border: 1px solid rgba(200,148,58,0.3); margin-bottom: 12px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.section { padding: 80px 0; }
.section-gray { background: var(--gray-50); }

/* ===== TOP ALERT BAR ===== */
.top-alert {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 8px 20px;
  letter-spacing: 0.3px;
}
.top-alert a { color: var(--white); text-decoration: underline; }

/* ===== TOP INFO BAR ===== */
.top-info {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-info .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.top-info-left { display: flex; align-items: center; gap: 20px; }
.top-info-right { display: flex; align-items: center; gap: 20px; }
.top-info-item { display: flex; align-items: center; gap: 6px; }
.top-info-item .icon { font-size: 14px; }
.top-info a { color: var(--gold-light); font-weight: 600; }
.top-info a:hover { color: var(--white); }

/* ===== MAIN HEADER ===== */
.main-header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition);
}
.main-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 60px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 22px; font-weight: 900; color: var(--navy); font-family: 'Merriweather', serif; }
.logo-tagline { font-size: 11px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 10px 14px; font-weight: 600; font-size: 14px; color: var(--gray-800); border-radius: var(--radius); transition: all var(--transition); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--gray-100); }
.nav-link .chevron { font-size: 10px; transition: transform var(--transition); }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition); z-index: 100; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 6px; font-size: 14px; font-weight: 500; color: var(--gray-800); transition: all var(--transition); }
.dropdown a:hover { background: var(--gray-50); color: var(--navy); }
.dropdown a .dd-icon { font-size: 18px; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; }
.header-phone-label { font-size: 11px; color: var(--gray-600); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.header-phone-number { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.header-phone-number:hover { color: var(--gold); }
.header-estimate-btn { padding: 12px 20px; font-size: 14px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,26,48,0.88) 0%, rgba(26,39,68,0.75) 55%, rgba(26,39,68,0.5) 100%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,148,58,0.2); border: 1px solid rgba(200,148,58,0.5); color: var(--gold-light); font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 20px; margin-bottom: 20px; }
.hero-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 20px; font-family: 'Merriweather', serif; }
.hero-title span { color: var(--gold-light); }
.hero-description { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat { text-align: center; }
.hero-stat-number { font-size: 2rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

/* Quote Form */
.quote-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); }
.quote-form-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.quote-form-card p { font-size: 13px; color: var(--gray-600); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--gray-800); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 2px solid var(--gray-200); border-radius: var(--radius); font-family: inherit; font-size: 14px; color: var(--text); background: var(--white); transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; padding: 14px; font-size: 16px; justify-content: center; }
.form-note { font-size: 11px; color: var(--gray-600); text-align: center; margin-top: 10px; }

/* ===== SERVICES SECTION ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(200,148,58,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--radius); margin-bottom: 20px; }
.service-icon { width: 64px; height: 64px; background: rgba(26,39,68,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 28px; transition: all var(--transition); }
.service-card:hover .service-icon { background: var(--navy); }
.service-title { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 18px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--gold); transition: gap var(--transition); }
.service-link:hover { gap: 10px; }

/* ===== WHY CHOOSE US ===== */
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content .section-title { margin-bottom: 24px; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; }
.why-icon { width: 44px; height: 44px; background: rgba(200,148,58,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.why-item-text h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-item-text p { font-size: 14px; color: var(--gray-600); }
.why-image { position: relative; }
.why-image img { width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.why-badge { position: absolute; bottom: 24px; left: -24px; background: var(--gold); color: var(--white); padding: 16px 20px; border-radius: var(--radius); box-shadow: var(--shadow-md); text-align: center; }
.why-badge-number { font-size: 28px; font-weight: 900; line-height: 1; }
.why-badge-text { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--gray-800); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; font-weight: 700; flex-shrink: 0; }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.testimonial-location { font-size: 12px; color: var(--gray-600); }

/* ===== PROJECT GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 50px; margin-bottom: 40px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,39,68,0.7) 0%, transparent 50%); opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover::after { opacity: 1; }
.gallery-cta { text-align: center; }

/* ===== CTA STRIP ===== */
.cta-strip { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 70px 0; }
.cta-strip-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-strip-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 900; color: var(--white); margin-bottom: 8px; }
.cta-strip-text p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.cta-strip-actions { display: flex; gap: 14px; align-items: center; flex-shrink: 0; }

/* ===== PRE-FOOTER ===== */
.pre-footer { background: var(--navy); padding: 60px 0; }
.pre-footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pre-footer-text h2 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.pre-footer-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 28px; }
.pre-footer-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.pre-footer-img img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-lg); opacity: 0.9; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-about .logo { margin-bottom: 16px; }
.footer-about p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: rgba(255,255,255,0.7); transition: all var(--transition); }
.social-link:hover { background: var(--gold); color: var(--white); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }

/* Footer logo text */
.footer .logo-name { color: var(--white); font-size: 18px; }
.footer .logo-tagline { color: var(--gold-light); }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar { background: var(--gray-100); border-bottom: 1px solid var(--gray-200); padding: 12px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-600); }
.breadcrumb a { color: var(--navy); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gray-400); }

/* ===== SERVICE PAGE HERO ===== */
.service-hero { position: relative; min-height: 400px; display: flex; align-items: center; background: center/cover no-repeat; }
.service-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(15,26,48,0.9) 0%, rgba(26,39,68,0.7) 100%); }
.service-hero-inner { position: relative; z-index: 1; padding: 60px 0; max-width: 700px; }
.service-hero-inner h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--white); margin-bottom: 16px; font-family: 'Merriweather', serif; }
.service-hero-inner p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.cert-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,148,58,0.25); border: 1px solid rgba(200,148,58,0.6); color: var(--gold-light); font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 20px; margin-bottom: 16px; }

/* ===== IMPACT SECTION ===== */
.impact-inner { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.impact-content h2 { font-size: clamp(1.6rem, 2.5vw, 2rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.impact-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.coupon-box { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.coupon-offer { font-size: 52px; font-weight: 900; color: var(--gold-light); line-height: 1; margin: 8px 0; }
.coupon-title { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.coupon-desc { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.coupon-fine { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 10px; }

/* ===== PROCESS STEPS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.process-card { text-align: center; padding: 28px 20px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); position: relative; transition: all var(--transition); }
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-number { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 28px; height: 28px; background: var(--gold); color: var(--white); border-radius: 50%; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.process-icon { font-size: 40px; margin-bottom: 16px; }
.process-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-desc { font-size: 14px; color: var(--gray-600); }

/* ===== FAQ SECTION ===== */
.faq-inner { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; margin-top: 50px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.faq-item.open { border-color: var(--navy); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; font-weight: 700; font-size: 15px; color: var(--navy); cursor: pointer; background: var(--white); transition: background var(--transition); gap: 12px; }
.faq-question:hover { background: var(--gray-50); }
.faq-item.open .faq-question { background: var(--navy); color: var(--white); }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 400; flex-shrink: 0; transition: all var(--transition); }
.faq-item.open .faq-toggle { background: rgba(255,255,255,0.2); color: var(--white); transform: rotate(45deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; font-size: 14px; color: var(--gray-600); line-height: 1.7; background: var(--white); }
.faq-answer.open { max-height: 200px; padding: 16px 20px; }
.faq-sidebar .section-badge { margin-bottom: 12px; }
.faq-sidebar h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.feature-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.feature-card { display: flex; align-items: center; gap: 14px; padding: 16px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.feature-card-icon { font-size: 28px; flex-shrink: 0; }
.feature-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); }
.feature-card p { font-size: 13px; color: var(--gray-600); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form-section { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.contact-form-section h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.contact-form-section p { color: var(--gray-600); margin-bottom: 28px; }
.contact-info-section h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.contact-info-icon { width: 48px; height: 48px; background: var(--navy); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-info-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--gray-600); }
.contact-info-card a { color: var(--gold); font-weight: 600; }
.service-areas-box { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 24px; margin-top: 20px; }
.service-areas-box h4 { font-weight: 700; margin-bottom: 12px; color: var(--gold-light); }
.service-areas-list { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); font-size: 13px; padding: 5px 12px; border-radius: 20px; }

/* ===== ABOUT PAGE ===== */
.about-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.value-card { text-align: center; padding: 36px 24px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.value-icon { font-size: 48px; margin-bottom: 16px; }
.value-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ===== MOBILE NAV ===== */
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 999; flex-direction: column; padding: 100px 30px 40px; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav a { display: block; font-size: 20px; font-weight: 700; color: var(--white); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .mobile-phone { color: var(--gold-light); font-size: 24px; font-weight: 900; margin-top: 24px; border: none; }
.mobile-nav .mobile-btn { margin-top: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .quote-form-card { max-width: 520px; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-badge { left: 24px; }
  .cta-strip-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-strip-actions { justify-content: center; }
  .pre-footer-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .impact-inner { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav, .header-cta, .top-info-left, .top-info-right { flex-wrap: wrap; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  .header-estimate-btn { display: none; }
  .top-info { display: none; }
  .hero-stats { gap: 20px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pre-footer-img { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== SCROLL TO TOP ===== */
.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; background: var(--gold); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: var(--shadow-md); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--transition); z-index: 500; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--navy); }
