/* ============================================================
   DAVIS CONSTRUCTION & HOME IMPROVEMENT — MASTER STYLESHEET
   ============================================================ */

/* --- Google Fonts are loaded via wp_enqueue_style in functions.php --- */
/* @import removed to prevent double-loading (performance fix) */

/* --- CSS Variables --- */
:root {
  --navy: #1a2744;
  --navy-dark: #111c33;
  --navy-light: #243358;
  --gold: #d4941a;
  --gold-hover: #b87c14;
  --gold-light: #f5a623;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --light-gray: #f0f2f5;
  --mid-gray: #6b7280;
  --dark-gray: #374151;
  --text: #1f2937;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(26,39,68,0.12);
  --shadow-lg: 0 8px 40px rgba(26,39,68,0.18);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: all 0.28s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}

/* Mobile menu hidden by default on all screen sizes until toggled */
.mobile-menu { display: none; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1,.section-dark h2,.section-dark h3 { color: var(--white); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,148,26,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

.section-label {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--mid-gray); max-width: 620px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.gold { color: var(--gold); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-left a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.82); transition: color 0.2s; }
.top-bar-left a:hover { color: var(--gold); }
.top-bar-left i { color: var(--gold); font-size: 0.75rem; }
.top-bar-right { display: flex; align-items: center; gap: 14px; }
.top-bar-right a { color: rgba(255,255,255,0.7); font-size: 1rem; transition: color 0.2s; }
.top-bar-right a:hover { color: var(--gold); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(26,39,68,0.1);
  position: sticky; top: 0; z-index: 1000;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 24px; max-width: 1200px; margin: 0 auto; }
.nav-logo img { height: 58px; width: auto; }
.nav-logo { display: flex; align-items: center; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.02em;
  color: var(--navy); padding: 8px 13px; border-radius: var(--radius);
  transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(212,148,26,0.07); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  visibility: hidden; opacity: 0; pointer-events: none;
  position: absolute; top: 100%; left: 0;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); min-width: 220px;
  border: 1px solid var(--border); padding: 16px 0 8px 0; z-index: 200;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.nav-dropdown:hover .dropdown-menu { visibility: visible; opacity: 1; pointer-events: auto; }
.dropdown-menu a {
  display: block; padding: 11px 20px;
  font-size: 0.85rem; color: var(--dark-gray);
  transition: background 0.2s;
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.nav-phone:hover { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  filter: brightness(0.72);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,39,68,0.42) 40%, rgba(26,39,68,0.08) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 60px 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,148,26,0.18); border: 1px solid rgba(212,148,26,0.5);
  color: #f5a623; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 40px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 900;
  color: var(--white) !important; line-height: 1.08; margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--gold-light); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.18rem); color: rgba(255,255,255,0.88);
  margin-bottom: 32px; line-height: 1.6; max-width: 560px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 36px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.82); font-size: 0.82rem; font-weight: 600;
}
.hero-trust-item i { color: var(--gold); }

/* Service page hero (shorter) */
.hero-inner { min-height: 52vh; }
.hero-inner .hero-content { padding: 50px 24px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--navy); padding: 20px 0; }
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.9); padding: 10px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--gold); font-size: 1.2rem; }
.trust-item strong { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 800; display: block; color: var(--white); }
.trust-item span { font-size: 0.76rem; color: rgba(255,255,255,0.6); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { position: relative; height: 220px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-body { padding: 22px 22px 24px; }
.service-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card-body p { font-size: 0.88rem; color: var(--mid-gray); margin-bottom: 14px; line-height: 1.55; }
.service-card-link {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.8rem; color: var(--gold); letter-spacing: 0.05em;
  text-transform: uppercase; display: flex; align-items: center; gap: 6px;
}
.service-card-link:hover { gap: 10px; }

/* ============================================================
   PROVIDER SECTION
   ============================================================ */
.provider-section {
  background: var(--off-white); padding: 48px 0; border-top: 3px solid var(--gold);
}
.provider-label {
  text-align: center; font-family: 'Montserrat', sans-serif; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid-gray); margin-bottom: 28px;
}
.provider-label span { color: var(--gold); }
.provider-grid {
  display: flex; align-items: stretch; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.provider-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 32px;
  min-width: 180px; gap: 12px;
  transition: var(--transition); text-align: center;
  box-shadow: 0 2px 12px rgba(26,39,68,0.06);
}
.provider-card:hover {
  border-color: var(--gold); box-shadow: 0 6px 24px rgba(212,148,26,0.18);
  transform: translateY(-3px);
}
.provider-card .prov-name {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1rem; color: var(--navy);
}
.provider-card .prov-sub {
  font-size: 0.75rem; color: var(--mid-gray); line-height: 1.4;
}
.provider-card .prov-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.73rem; color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.08em; margin-top: 4px;
}
.provider-card i.prov-icon { font-size: 2rem; color: var(--gold); }

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.feature-card {
  text-align: center; padding: 32px 20px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.feature-icon {
  width: 64px; height: 64px; background: rgba(212,148,26,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.6rem; color: var(--gold);
}
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.85rem; color: var(--mid-gray); line-height: 1.55; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px; background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem; font-weight: 900; color: var(--white);
  box-shadow: 0 4px 16px rgba(212,148,26,0.35);
}
.process-step h3 { font-size: 0.95rem; margin-bottom: 8px; }
.process-step p { font-size: 0.83rem; color: var(--mid-gray); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: Georgia, serif; font-size: 5rem;
  color: var(--gold); opacity: 0.15; position: absolute;
  top: 8px; left: 18px; line-height: 1;
}
.stars { color: #f5a623; font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.9rem; color: var(--dark-gray); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.author-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem; }
.author-loc { font-size: 0.76rem; color: var(--mid-gray); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.04)"/></svg>') repeat;
}
.cta-banner h2 { color: var(--white) !important; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 36px; position: relative; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-phone { display: flex; align-items: center; gap: 8px; color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.3rem; }
.cta-phone i { color: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.98rem; color: var(--navy);
  text-align: left; gap: 16px;
}
.faq-question i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; transition: transform 0.28s; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  font-size: 0.9rem; color: var(--dark-gray); line-height: 1.7;
  padding: 0 0 18px; display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.gallery-tab {
  padding: 9px 20px; border-radius: 40px;
  border: 2px solid var(--gold) !important; background: var(--white) !important;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.82rem;
  cursor: pointer; transition: var(--transition); color: var(--gold) !important;
}
.gallery-tab.active, .gallery-tab:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--white) !important; }
.gallery-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.gallery-item { position: relative; flex: 0 0 calc(25% - 9px); aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: #e8e8e8; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(26,39,68,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; color: var(--white); font-size: 1.8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-height: 88vh; max-width: 90vw; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 28px; color: var(--white); font-size: 2rem; cursor: pointer; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 20px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-detail i { color: var(--gold); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.contact-detail strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.88rem; color: var(--navy); }
.contact-detail span, .contact-detail a { font-size: 0.9rem; color: var(--dark-gray); }
.contact-detail a:hover { color: var(--gold); }

.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.form-card h3 { margin-bottom: 24px; font-size: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.8rem; color: var(--navy); margin-bottom: 6px; }
.form-group label .req { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem; color: var(--text); background: var(--off-white);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   SERVICE PAGE LAYOUT
   ============================================================ */
.service-content { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.service-main h2 { font-size: 1.7rem; margin-bottom: 16px; }
.service-main p { font-size: 0.95rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: 20px; }
.service-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.service-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; }
.service-checklist li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.service-sidebar { position: sticky; top: 100px; }
.sidebar-cta-card {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-lg); padding: 32px; margin-bottom: 20px;
  text-align: center;
}
.sidebar-cta-card h3 { color: var(--white) !important; font-size: 1.2rem; margin-bottom: 10px; }
.sidebar-cta-card p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.sidebar-cta-card .btn { width: 100%; justify-content: center; }
.sidebar-phone { margin-top: 16px; }
.sidebar-phone a { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.85); font-weight: 700; font-size: 1.05rem; }
.sidebar-phone a:hover { color: var(--gold); }

.service-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 24px 0; }
.service-gallery img { border-radius: var(--radius); width: 100%; height: 180px; object-fit: cover; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--gold); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item strong { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--white); display: block; }
.stat-item span { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.65; margin: 16px 0 20px; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white) !important; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.62); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.86rem; color: rgba(255,255,255,0.62); align-items: flex-start; }
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.62); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   FLOATING CTA (Mobile)
   ============================================================ */
.floating-cta {
  display: none; position: fixed; bottom: 24px; right: 20px; z-index: 500;
  flex-direction: column; gap: 10px;
}
.floating-cta a {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22); font-size: 1.2rem;
}
.float-call { background: var(--navy); color: var(--white); }
.float-book { background: var(--gold); color: var(--white); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.45); margin: 0 6px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-content { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .top-bar { display: none; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-phone { font-size: 0.82rem; }
  .hamburger { display: flex; }
  .nav-inner { padding: 12px 20px; }
  .nav-logo img { height: 48px; }
  .mobile-menu { display: none !important; position: fixed; inset: 0; background: var(--navy-dark); z-index: 999; flex-direction: column; padding: 80px 32px 32px; gap: 4px; overflow-y: auto; }
  .mobile-menu.open { display: flex !important; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; color: rgba(255,255,255,0.88); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }
  .mobile-cta { margin-top: 24px; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .trust-bar-inner { flex-direction: column; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; justify-content: center; padding: 12px; }
  .trust-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-item { flex: 0 0 calc(50% - 6px); }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-steps { grid-template-columns: 1fr; }
  .service-checklist { grid-template-columns: 1fr; }
  .provider-grid { flex-direction: column; align-items: stretch; }
  .provider-card { min-width: unset; }
  .floating-cta { display: flex; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta .nav-phone { display: none; }
}

@media (max-width: 480px) {
  .gallery-item { flex: 0 0 calc(50% - 6px); }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   HERO SLIDER — (moved from JS injection to prevent FOUC)
   ============================================================ */
.hero-slide { display: none; }
.hero-slide.active { display: block; }
.slide-dots { display: flex; gap: 8px; margin-top: 20px; }
.slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.2s;
}
.slide-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ============================================================
   SCROLL ANIMATIONS — (moved from JS injection to prevent FOUC)
   ============================================================ */
.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate.visible {
  opacity: 1;
  transform: none;
}
/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* Accessibility: h3 alias matches h4 footer heading styles (h4 -> h3 for correct heading order) */
.footer-col h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white) !important; margin-bottom: 16px; }

/* Accessibility: fix low-contrast white btn-outline on light gray service-quicklinks section */
.service-quicklinks .btn-outline { color: var(--navy); border-color: var(--navy); }
.service-quicklinks .btn-outline:hover { background: var(--navy); color: var(--white); }