@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --navy: #0B1F3A;
  --blue: #1A3C6E;
  --blue-bright: #2563B0;
  --red: #C8232C;
  --red-dark: #A11B22;
  --white: #FFFFFF;
  --off-white: #F8F9FB;
  --gray-light: #F0F2F5;
  --gray-border: #E2E6EA;
  --gray-text: #6C757D;
  --dark: #1A1A2E;
  --metallic: #8B97A2;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); }

/* --- UTILITY --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-blue { background: var(--blue); color: var(--white); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.section-subtitle.white { color: rgba(255,255,255,0.72); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,35,44,0.35); }
.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-bright); border-color: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,60,110,0.35); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

/* --- IMAGE PLACEHOLDER --- */
.img-placeholder {
  background: linear-gradient(135deg, #1A3C6E 0%, #243F6A 60%, #5A7090 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 60px);
}
.img-placeholder svg { opacity: 0.3; position: relative; z-index: 1; }
.img-placeholder span { position: relative; z-index: 1; }

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.navbar.scrolled { background: var(--navy); box-shadow: var(--shadow); }
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-badge {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--white); }
.logo-tagline { font-size: 10px; color: var(--metallic); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li > a {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.2px;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta-link > a { background: var(--red) !important; color: var(--white) !important; padding: 9px 18px !important; }
.nav-cta-link > a:hover { background: var(--red-dark) !important; box-shadow: 0 4px 14px rgba(200,35,44,0.4); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: 0.6; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 1100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.click-open .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.dropdown-menu li a:hover { color: var(--white); background: rgba(255,255,255,0.07); padding-left: 24px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* --- HERO (homepage) --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-visual {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #060F1C 0%, #0B1F3A 45%, #1A3C6E 100%);
}
.hero-bg-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(37,99,176,0.28) 0%, transparent 55%), radial-gradient(ellipse at 25% 80%, rgba(200,35,44,0.12) 0%, transparent 45%);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(6,15,28,0.96) 0%, rgba(6,15,28,0.7) 55%, rgba(6,15,28,0.15) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; padding-top: 72px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,35,44,0.12);
  border: 1px solid rgba(200,35,44,0.35);
  color: #FF7070;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero-title { font-family: var(--font-heading); font-size: clamp(2.4rem,4.5vw,3.8rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 24px; max-width: 680px; }
.hero-title .accent { color: var(--red); }
.hero-desc { font-size: 1.08rem; color: rgba(255,255,255,0.78); max-width: 540px; line-height: 1.8; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-number em { color: var(--red); font-style: normal; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; margin-top: 4px; }

.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.35); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-heading); }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent); animation: scrollAnim 2s ease infinite; }
@keyframes scrollAnim { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* --- TRUST BAR --- */
.trust-bar { background: var(--red); }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { display: flex; align-items: center; gap: 16px; padding: 26px 30px; border-right: 1px solid rgba(255,255,255,0.18); transition: var(--transition); }
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.1); }
.trust-icon { font-size: 26px; flex-shrink: 0; }
.trust-info strong { display: block; font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: var(--white); line-height: 1; }
.trust-info span { font-size: 12px; color: rgba(255,255,255,0.78); letter-spacing: 0.3px; margin-top: 2px; display: block; }

/* --- SERVICES GRID --- */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.service-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 54px; height: 54px; background: var(--gray-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; transition: var(--transition); }
.service-card:hover .service-icon { background: rgba(200,35,44,0.08); }
.service-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--gray-text); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: 0.3px; display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* --- WHY CHOOSE US --- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-main { width: 100%; height: 480px; border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.why-badge { position: absolute; bottom: -20px; right: -20px; background: var(--red); color: var(--white); border-radius: var(--radius-lg); padding: 24px; text-align: center; box-shadow: var(--shadow-lg); }
.why-badge-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; line-height: 1; }
.why-badge-text { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.85; margin-top: 4px; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.why-feature { display: flex; align-items: flex-start; gap: 14px; }
.why-feature-icon { width: 40px; height: 40px; background: rgba(200,35,44,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.why-feature-text h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-feature-text p { font-size: 13px; color: var(--gray-text); line-height: 1.55; }

/* --- GALLERY GRID (homepage preview) --- */
.gallery-grid-home { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: 260px 260px; gap: 16px; margin-top: 56px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item .img-placeholder { width: 100%; height: 100%; transition: transform 0.4s ease; }
.gallery-item:hover .img-placeholder { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,0.85) 0%, transparent 55%); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 20px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-family: var(--font-heading); font-size: 13px; font-weight: 600; color: var(--white); }
.gallery-tag { position: absolute; top: 12px; left: 12px; background: var(--red); color: var(--white); font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 40px; }

/* --- GALLERY PAGE (full grid) --- */
.gallery-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.gallery-full-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; height: 280px; }
.gallery-full-item .img-placeholder { width: 100%; height: 100%; transition: transform 0.4s ease; }
.gallery-full-item:hover .img-placeholder { transform: scale(1.06); }
.gallery-full-item:hover .gallery-overlay { opacity: 1; }

.gallery-filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn { font-family: var(--font-heading); font-size: 13px; font-weight: 600; padding: 9px 22px; border-radius: 40px; border: 2px solid var(--gray-border); background: var(--white); color: var(--gray-text); cursor: pointer; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* --- ESTIMATE CTA BANNER --- */
.estimate-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); position: relative; overflow: hidden; }
.estimate-banner::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,35,44,0.18) 0%, transparent 70%); }
.estimate-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.estimate-banner h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.estimate-banner p { color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 500px; }
.estimate-banner-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* --- TESTIMONIALS --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 32px 28px; transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-quote { font-size: 48px; color: var(--red); font-family: Georgia,serif; line-height: 1; margin-bottom: 12px; opacity: 0.55; }
.testimonial-stars { color: #F59E0B; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.93rem; color: var(--gray-text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.author-info strong { display: block; font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--dark); }
.author-info span { font-size: 12px; color: var(--gray-text); }

/* --- INSURANCE SECTION --- */
.insurance-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.insurance-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.insurance-item { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--dark); font-weight: 500; }
.insurance-check { width: 24px; height: 24px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; flex-shrink: 0; }

/* --- CONTACT SECTION --- */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.contact-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; }
.contact-card-icon { font-size: 34px; margin-bottom: 14px; }
.contact-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.contact-card p, .contact-card a { color: rgba(255,255,255,0.68); font-size: 0.9rem; line-height: 1.8; }
.contact-card a:hover { color: var(--white); }
.hours-grid { display: flex; flex-direction: column; gap: 6px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.65); padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: rgba(255,255,255,0.9); }
.map-placeholder { height: 280px; background: linear-gradient(135deg, #1A3C6E, #243F6A); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: rgba(255,255,255,0.45); font-family: var(--font-heading); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-top: 32px; border: 1px solid rgba(255,255,255,0.1); }

/* --- PAGE HERO (inner pages) --- */
.page-hero { background: var(--navy); padding: 140px 0 80px; position: relative; overflow: visible; z-index: 0; }
.page-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, transparent, rgba(37,99,176,0.12)); z-index: 0; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--red), var(--blue), transparent); z-index: 0; }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 16px; font-family: var(--font-heading); }
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--red); }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem,4vw,2.9rem); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.68); max-width: 600px; line-height: 1.75; }

/* --- FORM STYLES --- */
.form-section { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-border); }
.form-card h2 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.form-card p { color: var(--gray-text); font-size: 0.93rem; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--dark); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,60,110,0.08); }
.form-group textarea { height: 130px; resize: vertical; }
.form-submit { width: 100%; padding: 16px; font-family: var(--font-heading); font-size: 15px; font-weight: 700; background: var(--red); color: var(--white); border: none; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); margin-top: 8px; }
.form-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,35,44,0.35); }

.form-sidebar h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.sidebar-feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-border); }
.sidebar-feature:last-child { border-bottom: none; }
.sidebar-feature-icon { width: 44px; height: 44px; background: rgba(200,35,44,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.sidebar-feature h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.sidebar-feature p { font-size: 13px; color: var(--gray-text); line-height: 1.55; }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 56px; }
.faq-item { border: 1px solid var(--gray-border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { background: var(--off-white); }
.faq-item.open .faq-question { background: var(--navy); color: var(--white); }
.faq-icon { font-size: 20px; flex-shrink: 0; font-weight: 400; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--red); }
.faq-answer { padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding: 20px 28px; }
.faq-answer p { font-size: 0.95rem; color: var(--gray-text); line-height: 1.8; }

/* --- ABOUT PAGE --- */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 56px; }
.team-card { text-align: center; }
.team-avatar { width: 100%; height: 280px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; }
.team-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--red); font-weight: 600; font-family: var(--font-heading); }
.team-card p { font-size: 13px; color: var(--gray-text); margin-top: 10px; line-height: 1.65; }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; }
.value-card { text-align: center; padding: 36px 24px; background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--gray-text); line-height: 1.65; }

/* --- SERVICE DETAIL PAGE --- */
.service-detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; }
.service-detail-features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.service-detail-feature { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--off-white); border-radius: var(--radius); }
.detail-feature-icon { font-size: 22px; flex-shrink: 0; }
.service-detail-feature h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.service-detail-feature p { font-size: 13px; color: var(--gray-text); line-height: 1.6; }

.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; }
.process-step { text-align: center; padding: 32px 20px; }
.step-number { width: 56px; height: 56px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 20px; font-weight: 800; margin: 0 auto 20px; }
.process-step h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.process-step p { font-size: 13px; color: var(--gray-text); line-height: 1.65; }

/* --- CONTACT PAGE FORM --- */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon { width: 48px; height: 48px; background: rgba(200,35,44,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-info-text h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 14px; color: var(--gray-text); line-height: 1.7; }
.contact-info-text a:hover { color: var(--red); }

/* --- STATS BAR --- */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); background: var(--navy); }
.stat-item { text-align: center; padding: 48px 24px; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-number em { color: var(--red); font-style: normal; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 8px; letter-spacing: 0.5px; }

/* --- FOOTER --- */
.footer { background: #060F1C; color: rgba(255,255,255,0.55); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin: 16px 0 24px; color: rgba(255,255,255,0.48); }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.6); transition: var(--transition); font-family: var(--font-heading); }
.social-link:hover { background: var(--red); color: var(--white); }
.footer-col h4 { font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.38); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 24px; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid-home { grid-template-rows: 220px 220px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .form-section { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .insurance-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-full-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 1.75rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #0B1F3A;
    padding: 8px 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 0;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-links.open > li > a {
    display: block;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 15px;
  }
  .nav-links.open > li > a:hover { background: rgba(255,255,255,0.07); }
  .nav-links.open .nav-cta-link {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open .nav-cta-link > a {
    display: block;
    text-align: center;
    padding: 14px 16px !important;
    border-radius: 8px !important;
    font-size: 15px;
  }
  /* Mobile dropdown — collapsed by default */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    margin: 4px 0 6px;
    padding: 4px 0;
    display: none;
  }
  .nav-dropdown.mobile-open .dropdown-menu { display: flex; flex-direction: column; }
  .nav-dropdown > a::after { content: ' ▾'; display: inline-block; transition: transform 0.25s; }
  .nav-dropdown.mobile-open > a::after { transform: rotate(180deg); }
  .dropdown-menu li a { padding: 11px 20px; font-size: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2,1fr); }
  .estimate-banner-inner { flex-direction: column; text-align: center; }
  .estimate-banner-actions { justify-content: center; }
  .hero-stats { gap: 32px; }
  .hero-title { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .why-features { grid-template-columns: 1fr; }
  .gallery-grid-home { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .gallery-grid-home { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
}

/* ============================================
   MOBILE OPTIMIZATION
   ============================================ */

/* Prevent horizontal scroll — only on body, NOT html (html clips fixed dropdowns) */
body { overflow-x: hidden; max-width: 100%; }

/* Navbar — always clean height */
.nav-container { height: 72px; overflow: hidden; }
.navbar { height: 72px; }
.nav-logo-img { height: 50px; }

/* Hero — better mobile padding */
@media (max-width: 768px) {
  .hero { min-height: 100svh; padding: 0 0 40px; }
  .hero-content { padding: 100px 20px 40px; }
  .hero-title { font-size: 2.4rem; letter-spacing: -0.01em; }
  .hero-desc { font-size: 1rem; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; font-size: 15px; padding: 16px; }
  .hero-trust { gap: 16px; }
  .hero-trust-item { font-size: 12px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-number { font-size: 1.8rem; }
  .hero-stat-label { font-size: 10px; }
}

/* Section spacing on mobile */
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .section-title { font-size: 1.65rem; }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 32px; }
  .container { padding: 0 18px; }
}

/* Trust bar — 2 column on mobile */
@media (max-width: 600px) {
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 20px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .trust-info strong { font-size: 16px; }
}

/* Service cards — single column */
@media (max-width: 500px) {
  .service-card { padding: 28px 20px; }
  .service-card h3 { font-size: 1rem; }
}

/* Why features — single column on mobile */
@media (max-width: 768px) {
  .why-features { grid-template-columns: 1fr; gap: 12px; }
  .why-feature { padding: 12px; }
}

/* Stats bar — 2 col on mobile */
@media (max-width: 600px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 36px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-number { font-size: 2.2rem; }
}

/* Estimate banner — stacked */
@media (max-width: 768px) {
  .estimate-banner { padding: 52px 0; }
  .estimate-banner h2 { font-size: 1.5rem; }
  .estimate-banner-actions { width: 100%; justify-content: center; }
  .estimate-banner-actions .btn { flex: 1; justify-content: center; min-width: 140px; }
}

/* Contact grid — single col */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-card { padding: 28px 20px; }
}

/* Footer — clean mobile */
@media (max-width: 768px) {
  .footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
  .footer-brand p { font-size: 0.85rem; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; font-size: 12px; }
  .footer-bottom-links { gap: 16px; }
}

/* Form — better mobile */
@media (max-width: 768px) {
  .form-card { padding: 28px 20px; }
  .form-section { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Gallery grid — 2 col on mobile */
@media (max-width: 600px) {
  .gallery-full-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-full-item { height: 180px; }
}
@media (max-width: 400px) {
  .gallery-full-grid { grid-template-columns: 1fr; }
  .gallery-full-item { height: 220px; }
}

/* Page hero — mobile */
@media (max-width: 768px) {
  .page-hero { padding: 110px 0 52px; }
  .page-hero h1 { font-size: 1.9rem; }
  .page-hero p { font-size: 0.95rem; }
}

/* Process steps — 2 col on mobile */
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process-step { padding: 24px 16px; }
}
@media (max-width: 400px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* Values grid — 2 col on mobile */
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .value-card { padding: 28px 16px; }
}

/* Mobile call button — bigger tap target */
.mobile-call-btn { width: 56px; height: 56px; font-size: 20px; bottom: 20px; right: 16px; }

/* Buttons — better touch targets on mobile */
@media (max-width: 768px) {
  .btn { padding: 13px 26px; font-size: 13px; }
}

/* ============================================
   LOGO IMAGE STYLES
   ============================================ */
.nav-logo-img {
  height: 50px;
  width: auto;
  min-width: 50px;
  max-width: 140px;
  object-fit: contain;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  border-radius: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-logo-img:hover { opacity: 0.92; transform: scale(1.02); }

/* Logo text next to image */
a.nav-logo { align-items: center; gap: 20px; overflow: hidden; max-height: 72px; }
a.nav-logo .logo-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
a.nav-logo .logo-name { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 800; color: var(--red); letter-spacing: 0.2px; white-space: nowrap; }
a.nav-logo .logo-tagline { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 1.8px; text-transform: uppercase; white-space: nowrap; }
@media (max-width: 860px) {
  a.nav-logo .logo-name { font-size: 13px; }
  a.nav-logo .logo-tagline { font-size: 8.5px; letter-spacing: 1.2px; }
  a.nav-logo { gap: 10px; }
}
@media (max-width: 380px) { a.nav-logo .logo-text-wrap { display: none; } }

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Keep nav-logo as a simple flex link */
a.nav-logo, .nav-logo { gap: 0; }

/* ============================================
   PREMIUM UPGRADE STYLES
   ============================================ */

/* --- FONT UPGRADE --- */
body { font-family: 'Inter', var(--font-body); }
.section-title, .hero-title, .page-hero h1,
.nav-links a, .logo-name, .logo-tagline,
.btn, .section-label, .footer-col h4 {
  font-family: 'Inter', var(--font-heading);
}

/* --- SCROLL ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.fade-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible, .fade-in.visible, .fade-left.visible, .fade-right.visible {
  opacity: 1;
  transform: none;
}

/* --- IMPROVED BUTTONS --- */
.btn {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  font-weight: 700;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn-red {
  box-shadow: 0 4px 16px rgba(200,35,44,0.28);
}
.btn-red:hover {
  box-shadow: 0 8px 28px rgba(200,35,44,0.45);
  transform: translateY(-2px);
}
.btn-blue:hover {
  box-shadow: 0 8px 28px rgba(26,60,110,0.4);
}

/* --- IMPROVED NAVBAR --- */
.navbar {
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
.navbar.scrolled {
  background: rgba(11,31,58,0.98) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-toggle span { transition: transform 0.3s ease, opacity 0.3s ease; }

/* --- HERO UPGRADES --- */
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero-desc { font-size: 1.12rem; font-weight: 400; }
.hero-eyebrow { font-weight: 700; }

/* Trust badges below hero */
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
  margin-bottom: 0;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2px;
}
.hero-trust-item .check {
  width: 18px;
  height: 18px;
  background: rgba(200,35,44,0.3);
  border: 1px solid rgba(200,35,44,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #FF8080;
  flex-shrink: 0;
}

/* --- IMPROVED SECTION LABELS --- */
.section-label {
  font-size: 11px;
  letter-spacing: 3.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* Image-based service cards */
.service-card img { transition: transform 0.4s ease; }
.service-card:hover img { transform: scale(1.05); }
@media (max-width: 768px) {
  .service-card img { height: 200px !important; }
  .service-card > div { padding: 20px !important; }
}
@media (max-width: 480px) {
  .service-card img { height: 180px !important; }
}

/* --- PREMIUM SERVICE CARDS --- */
.service-card {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.3s ease;
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}
.service-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--gray-light) 0%, #E8EBF0 100%);
  font-size: 26px;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(200,35,44,0.08) 0%, rgba(200,35,44,0.14) 100%);
  transform: scale(1.1) rotate(-4deg);
}

/* --- PREMIUM GALLERY --- */
.gallery-full-item, .gallery-item {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.gallery-full-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  z-index: 2;
}
.gallery-overlay {
  background: linear-gradient(to top, rgba(11,31,58,0.92) 0%, rgba(11,31,58,0.4) 50%, transparent 100%);
}

/* --- PREMIUM TESTIMONIAL CARDS --- */
.testimonial-card {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
  will-change: transform;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
  border-color: rgba(200,35,44,0.2);
}
.testimonial-quote {
  font-size: 56px;
  background: linear-gradient(135deg, var(--red), #FF6B6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1;
}

/* --- FORM UPGRADES --- */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26,60,110,0.1);
  transform: translateY(-1px);
}
.form-submit {
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.form-submit:hover { transform: translateY(-2px); }

/* --- IMPROVED WHY FEATURES --- */
.why-feature {
  padding: 16px;
  border-radius: var(--radius);
  transition: background 0.25s ease;
}
.why-feature:hover { background: var(--off-white); }
.why-feature-icon {
  transition: transform 0.3s ease, background 0.3s ease;
}
.why-feature:hover .why-feature-icon {
  transform: scale(1.1);
  background: rgba(200,35,44,0.15);
}

/* --- TRUST BAR UPGRADE --- */
.trust-item {
  transition: background 0.25s ease;
  cursor: default;
}
.trust-info strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

/* --- SECTION TRANSITIONS --- */
.section, [class*="section"] {
  transition: none;
}

/* --- STATS UPGRADE --- */
.stat-number {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
}
.hero-stat-number {
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* --- FOOTER UPGRADE --- */
.footer-links a {
  position: relative;
  padding-left: 0;
}
.footer-links a::before {
  content: '→';
  position: absolute;
  left: -16px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
  color: var(--red);
  font-size: 12px;
}
.footer-links a:hover {
  padding-left: 20px;
  color: var(--white);
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* --- MOBILE STICKY CALL BUTTON --- */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 998;
  background: var(--red);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 24px rgba(200,35,44,0.55), 0 2px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: callPulse 2.5s infinite;
}
.mobile-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(200,35,44,0.65);
}
@keyframes callPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(200,35,44,0.55), 0 0 0 0 rgba(200,35,44,0.4); }
  50% { box-shadow: 0 6px 24px rgba(200,35,44,0.55), 0 0 0 12px rgba(200,35,44,0); }
}
@media (max-width: 768px) {
  .mobile-call-btn { display: flex; }
}

/* --- IMPROVED PAGE HERO --- */
.page-hero {
  padding: 130px 0 70px;
}
.page-hero h1 {
  font-weight: 900;
  letter-spacing: -0.025em;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

/* --- ESTIMATE BANNER UPGRADE --- */
.estimate-banner h2 {
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* --- SECTION TITLE UPGRADE --- */
.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* --- VALUE CARDS --- */
.value-card {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
}
.value-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}
.value-icon { transition: transform 0.3s ease; }
.value-card:hover .value-icon { transform: scale(1.15) rotate(-5deg); }

/* --- CONTACT CARDS --- */
.contact-card {
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}
.contact-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

/* --- FILTER BUTTONS --- */
.filter-btn {
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  font-weight: 600;
}
.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.filter-btn.active {
  box-shadow: 0 4px 16px rgba(26,60,110,0.3);
  transform: translateY(-1px);
}

/* --- PROCESS STEPS --- */
.step-number {
  box-shadow: 0 8px 24px rgba(200,35,44,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(200,35,44,0.5);
}

/* --- FAQ UPGRADE --- */
.faq-question { font-weight: 600; letter-spacing: 0.1px; }
.faq-item { transition: border-color 0.25s, box-shadow 0.25s; }
.faq-item:hover { border-color: rgba(26,60,110,0.25); }
.faq-item.open { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

/* Failsafe — never leave fade elements invisible permanently */
@keyframes forceVisible {
  to { opacity: 1; transform: none; }
}
.fade-up, .fade-in, .fade-left, .fade-right {
  animation: forceVisible 0s 2s forwards;
}
.fade-up.visible, .fade-in.visible, .fade-left.visible, .fade-right.visible {
  animation: none;
}

/* --- SCROLLBAR STYLING --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }

/* --- SELECTION COLOR --- */
::selection { background: rgba(200,35,44,0.2); color: var(--dark); }

/* --- SMOOTH FOCUS RINGS --- */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}
