/* ================================================
   YOUR LAWYER SERVICE — Main Stylesheet
   Patrick Thompson, Attorney at Law | Lake Mary, FL
   ================================================ */

/* CSS Variables */
:root {
  --navy:        #1B2B4B;
  --navy-dark:   #0F1C32;
  --navy-mid:    #243660;
  --gold:        #C8A951;
  --gold-light:  #DFC070;
  --gold-dark:   #A8893A;
  --orange:      #D9521A;
  --orange-hover:#B8420F;
  --white:       #FFFFFF;
  --off-white:   #F8F6F0;
  --gray-light:  #F0EDE5;
  --gray:        #8A8A8A;
  --gray-dark:   #4A4A4A;
  --text:        #1A1A1A;
  --border:      #E0DBD0;
  --shadow:      0 4px 24px rgba(27,43,75,0.10);
  --shadow-lg:   0 8px 40px rgba(27,43,75,0.18);
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.25s ease;
  --font-serif:  'Georgia', 'Times New Roman', serif;
  --font-sans:   'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1.2rem; color: var(--gray-dark); }
p:last-child { margin-bottom: 0; }
strong { color: var(--navy); font-weight: 700; }

/* Container */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(217,82,26,0.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,82,26,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  font-weight: 800;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

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

/* ================================================ HEADER */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(27,43,75,0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(27,43,75,0.18); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.site-logo img { height: 56px; width: auto; }
.site-logo:hover { opacity: 0.9; }

/* Navigation */
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.2px;
}
.main-nav a:hover, .main-nav li.current-menu-item > a { color: var(--gold-dark); background: var(--off-white); }
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.main-nav .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .dropdown a { display: block; padding: 10px 14px; border-radius: var(--radius); font-size: 0.875rem; }
.header-cta-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.phone-label { font-size: 0.7rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.phone-number {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.phone-number:hover { color: var(--orange); }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 8px 12px;
  cursor: pointer;
  color: var(--navy);
  font-size: 1.2rem;
}
@media (max-width: 960px) {
  .menu-toggle { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; width: 100%; text-align: center; }
  .main-nav a { color: var(--white); font-size: 1.2rem; padding: 16px 24px; display: block; }
  .main-nav a:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
  .nav-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    color: var(--white); font-size: 2rem; cursor: pointer;
  }
}

/* ================================================ HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,169,81,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 49%, var(--white) 50%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,81,0.15);
  border: 1px solid rgba(200,169,81,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.82); margin-bottom: 36px; line-height: 1.7; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500; }
.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.3rem; }
.hero-card-subtitle { color: var(--gray); font-size: 0.875rem; margin-bottom: 24px; }
.hero-card form { display: flex; flex-direction: column; gap: 14px; }
.hero-card input, .hero-card select, .hero-card textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition);
}
.hero-card input:focus, .hero-card select:focus, .hero-card textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
}
.hero-card .btn { width: 100%; justify-content: center; font-size: 1.05rem; }
.hero-card-privacy { font-size: 0.75rem; color: var(--gray); text-align: center; margin-top: 4px; }

/* ================================================ TRUST BAR */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.trust-item-icon {
  width: 42px; height: 42px;
  background: rgba(200,169,81,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-item-text strong { display: block; font-size: 0.95rem; color: var(--gold-light); }
.trust-item-text span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ================================================ SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy-dark); }
.section-navy { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--gray-dark); max-width: 640px; margin: 0 auto; }
.section-label {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ================================================ SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }
.service-card a.learn-more {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card a.learn-more:hover { color: var(--gold-dark); gap: 10px; }

/* ================================================ ABOUT STRIP */
.about-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image img { width: 100%; border-radius: var(--radius-lg); }
.about-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  border-left: 4px solid var(--gold);
}
.about-badge strong { display: block; font-size: 2rem; color: var(--gold); line-height: 1; }
.about-badge span { font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.about-content .section-label { margin-bottom: 10px; }
.about-content h2 { margin-bottom: 20px; }
.about-checklist { margin: 24px 0; }
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--gray-dark);
}
.about-checklist li:last-child { border-bottom: none; }
.check-icon { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ================================================ STAT STRIP */
.stat-strip { background: var(--gold); padding: 48px 0; }
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item strong { display: block; font-family: var(--font-serif); font-size: 2.8rem; color: var(--navy-dark); line-height: 1; }
.stat-item span { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-top: 6px; display: block; }

/* ================================================ TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.stars { color: #F4B400; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--gray-dark); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
}
.author-info strong { display: block; font-size: 0.9rem; color: var(--navy); }
.author-info span { font-size: 0.8rem; color: var(--gray); }

/* ================================================ CTA SECTIONS */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,169,81,0.1) 0%, transparent 70%);
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.80); max-width: 600px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .small-text { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 20px; }

.emergency-banner {
  background: var(--orange);
  padding: 20px;
  text-align: center;
}
.emergency-banner p { color: var(--white); font-weight: 700; font-size: 1rem; margin: 0; }
.emergency-banner a { color: var(--white); text-decoration: underline; font-size: 1.15rem; }

/* ================================================ PROCESS STEPS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-number {
  width: 72px; height: 72px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}
.step-item h4 { font-size: 1rem; margin-bottom: 8px; }
.step-item p { font-size: 0.875rem; }

/* ================================================ FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-item.open .faq-question { background: var(--navy); color: var(--white); }
.faq-icon { color: var(--gold); font-size: 1.4rem; font-weight: 400; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  background: var(--off-white);
  font-size: 0.95rem;
  color: var(--gray-dark);
}
.faq-item.open .faq-answer { max-height: 600px; padding: 20px 24px 24px; }

/* ================================================ COUNTIES */
.counties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.county-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: all var(--transition);
}
.county-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.county-icon { font-size: 2.5rem; margin-bottom: 16px; }
.county-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.county-card p { font-size: 0.875rem; margin-bottom: 16px; }

/* ================================================ PAGE INNER LAYOUTS */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 70px 0 60px;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom right, transparent 49%, var(--white) 50%);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 16px; }
.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 720px; }

.content-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.content-area h2 { font-size: 1.7rem; margin: 40px 0 16px; }
.content-area h2:first-child { margin-top: 0; }
.content-area h3 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--navy); }
.content-area p { color: var(--gray-dark); line-height: 1.8; }
.content-area ul.styled {
  list-style: none;
  margin: 16px 0 24px;
}
.content-area ul.styled li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.content-area ul.styled li:last-child { border-bottom: none; }
.content-area ul.styled li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 900;
}
.info-box {
  background: var(--off-white);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px;
  margin: 28px 0;
}
.info-box.warning { border-left-color: var(--orange); }
.info-box.success { border-left-color: #2D7A4F; }
.info-box h4 { font-size: 1rem; margin-bottom: 8px; }
.info-box p { font-size: 0.9rem; }

/* SIDEBAR */
.sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.sidebar-widget-header {
  background: var(--navy);
  color: var(--white);
  padding: 16px 22px;
}
.sidebar-widget-header h3 { font-size: 1rem; color: var(--white); font-family: var(--font-sans); font-weight: 700; }
.sidebar-widget-body { padding: 22px; }
.sidebar-widget-body form { display: flex; flex-direction: column; gap: 12px; }
.sidebar-widget-body input, .sidebar-widget-body select, .sidebar-widget-body textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  background: var(--off-white);
}
.sidebar-widget-body input:focus, .sidebar-widget-body select:focus, .sidebar-widget-body textarea:focus {
  outline: none; border-color: var(--navy); background: var(--white);
}
.sidebar-widget-body .btn { width: 100%; justify-content: center; }
.contact-widget-info { display: flex; flex-direction: column; gap: 14px; }
.contact-widget-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-widget-icon { color: var(--gold-dark); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-widget-text { font-size: 0.875rem; color: var(--gray-dark); }
.contact-widget-text strong { display: block; color: var(--navy); font-size: 0.9rem; }

/* ================================================ BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/9; background: var(--navy); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-meta { font-size: 0.8rem; color: var(--gray); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.875rem; margin-bottom: 16px; }

/* ================================================ CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-form-wrapper h2 { margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy); background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info h2 { margin-bottom: 28px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 0.95rem; color: var(--gray-dark); margin: 0; }
.contact-info-text a:hover { color: var(--navy); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 28px; border: 1.5px solid var(--border); }
.map-embed iframe { width: 100%; height: 280px; display: block; border: none; }

/* ================================================ FOOTER */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 50px; }
.footer-about { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--navy-dark); }
.footer-heading { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 700; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-disclaimer {
  background: rgba(0,0,0,0.25);
  padding: 16px 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ================================================ FLOATING ELEMENTS */
.floating-call {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(217,82,26,0.45);
  display: flex; align-items: center; gap: 10px;
  z-index: 900;
  transition: all var(--transition);
  text-decoration: none;
}
.floating-call:hover { background: var(--orange-hover); color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(217,82,26,0.55); }
@media (min-width: 769px) { .floating-call { display: none; } }

/* Exit Intent Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,28,50,0.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px; width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: modalSlide 0.35s ease;
}
@keyframes modalSlide { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header {
  background: var(--navy);
  padding: 28px 32px;
  text-align: center;
}
.modal-header h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.modal-header p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.9rem; }
.modal-body { padding: 28px 32px; }
.modal-body form { display: flex; flex-direction: column; gap: 12px; }
.modal-body input { padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; font-family: var(--font-sans); width: 100%; }
.modal-body input:focus { outline: none; border-color: var(--navy); }
.modal-body .btn { width: 100%; justify-content: center; }
.modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 1.5rem; color: rgba(255,255,255,0.7); cursor: pointer; }
.modal-header { position: relative; }

/* ================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .content-sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { padding: 60px 0 100px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .about-strip .container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar-left { display: none; }
  .hero-card { display: none; }
}
@media (max-width: 480px) {
  .stat-strip .container { grid-template-columns: 1fr 1fr; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { text-align: center; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ================================================ UTILITIES */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-gold { background: var(--gold); }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.inline-block { display: inline-block; }
.hidden { display: none; }
