/* =============================================
   Galaxy Home Care LLC — Global Stylesheet
   ============================================= */

/* --- CSS Variables --- */
:root {
  --primary:       #1a73e8;
  --primary-dark:  #1558b0;
  --topbar-bg:     #0a0a23;
  --footer-bg:     #0a0a23;
  --text-dark:     #1a1a1a;
  --text-light:    #ffffff;
  --text-muted:    #d0d0d0;
  --bg-white:      #ffffff;
  --bg-light:      #f5f7fa;
  --border:        #e0e0e0;
  --shadow:        0 2px 12px rgba(0,0,0,0.08);
  --radius:        8px;
  --font:          'Inter', 'Poppins', sans-serif;
  --transition:    0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

p { margin-bottom: 1em; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 4rem 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
}

.btn-white {
  background: var(--text-light);
  color: var(--primary);
  border-color: var(--text-light);
}
.btn-white:hover {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--topbar-bg);
  color: var(--text-light);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.topbar a { color: var(--text-light); }
.topbar a:hover { color: #90caf9; }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: var(--bg-light);
  color: var(--primary);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}

.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown li a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 0.25rem;
  vertical-align: middle;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav.open { display: block; }

.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav ul a {
  display: block;
  padding: 0.6rem 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-nav ul a:hover { color: var(--primary); }

.mobile-submenu { padding-left: 1rem; }
.mobile-submenu a {
  font-weight: 500 !important;
  font-size: 0.9rem;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--footer-bg);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-col h3 {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-col p, .footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-col a:hover { color: var(--text-light); }

.footer-subscribe-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.footer-subscribe-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid #444;
  background: #1a1a3a;
  color: var(--text-light);
  font-size: 0.875rem;
  outline: none;
}
.footer-subscribe-form input[type="email"]::placeholder { color: #888; }
.footer-subscribe-form input[type="email"]:focus { border-color: var(--primary); }

/* Social icons */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a1a3a;
  border: 1px solid #333;
  transition: background var(--transition), border-color var(--transition);
}
.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.social-links svg {
  width: 16px;
  height: 16px;
  fill: var(--text-light);
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #222;
  color: #888;
  font-size: 0.8rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* =============================================
   HERO SECTIONS
   ============================================= */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 35, 0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem 1.5rem;
}
.hero-content h1 { color: var(--text-light); margin-bottom: 1rem; }
.hero-content h5 {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero-page { min-height: 45vh; }

/* =============================================
   ABOUT US SECTION (Index)
   ============================================= */
.about-section { background: var(--bg-light); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

/* =============================================
   SERVICE CARDS (Index)
   ============================================= */
.services-preview { background: var(--bg-white); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h5 { color: var(--primary); margin-bottom: 0.5rem; }
.card-body p { font-size: 0.9rem; color: #555; flex: 1; }

.service-links { margin-top: 0.75rem; }
.service-links li { margin-bottom: 0.4rem; }
.service-links a {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.service-links a:hover { color: var(--primary-dark); }

/* =============================================
   CONTACT FORM SECTION
   ============================================= */
.contact-form-section { background: var(--bg-light); }
.contact-info-section { background: var(--bg-white); }

.section-heading { text-align: center; margin-bottom: 2.5rem; }
.section-heading h2 { margin-bottom: 0.5rem; }
.section-heading p { color: #666; font-size: 1rem; }

.form-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  max-width: 560px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.checkbox-group label {
  font-size: 0.8rem;
  font-weight: 400;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* =============================================
   CONTACT INFO BLOCK
   ============================================= */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-info-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
}
.contact-info-card h4 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1rem; }
.contact-info-card p { font-size: 0.875rem; color: #555; margin: 0; }
.contact-info-card a { color: var(--primary); font-weight: 600; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.service-block { padding: 3.5rem 0; border-bottom: 1px solid var(--border); }
.service-block:last-child { border-bottom: none; }

.service-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0 1rem;
}
.service-block ul li { margin-bottom: 0.35rem; font-size: 0.95rem; color: #444; }

.service-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.service-images img {
  border-radius: var(--radius);
  object-fit: cover;
  height: 200px;
  width: 100%;
}
.service-images-2 { grid-template-columns: repeat(2, 1fr); }

.service-block-bg {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  padding: 3rem 2rem;
  margin: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.service-block-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 35, 0.65);
}
.service-block-bg > * { position: relative; z-index: 1; color: var(--text-light); }
.service-block-bg h6 { color: #90caf9; }
.service-block-bg ul { color: rgba(255,255,255,0.9); }

/* Quality Banner */
.quality-banner {
  background: var(--primary);
  color: var(--text-light);
  text-align: center;
  padding: 3.5rem 1.5rem;
}
.quality-banner h3 { color: var(--text-light); max-width: 750px; margin: 0 auto 0.75rem; }
.quality-banner p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 1.5rem; }

/* Services Included List */
.services-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}
.services-included-grid li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: #444;
}
.services-included-grid li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Service Area */
.service-area { background: var(--bg-light); }

.county-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.county-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: #444;
  text-align: center;
}
.county-item strong { color: var(--primary); }

/* =============================================
   LOCATION CARDS (Contact page)
   ============================================= */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.location-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.location-card h4 {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.location-card p {
  font-size: 0.875rem;
  color: #555;
  margin: 0;
  line-height: 1.7;
}

/* =============================================
   JOB APPLICATION
   ============================================= */
.job-section { background: var(--bg-light); }
.job-description {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  margin-bottom: 2rem;
}
.job-description h4 { color: var(--primary); margin: 1.25rem 0 0.5rem; }
.job-description h4:first-child { margin-top: 0; }
.job-description ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.job-description ul li { margin-bottom: 0.3rem; font-size: 0.95rem; color: #444; }
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #555;
}
.job-meta span strong { color: var(--text-dark); }
.jotform-embed {
  width: 100%;
  min-height: 800px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* =============================================
   BACKGROUND CHECK
   ============================================= */
.clearance-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.clearance-block:last-child { border-bottom: none; }
.clearance-block.reverse { direction: rtl; }
.clearance-block.reverse > * { direction: ltr; }
.clearance-block img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: 280px;
}
.clearance-text h3 { color: var(--primary); margin-bottom: 0.75rem; }
.clearance-text blockquote {
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
}
.clearance-text .clearance-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* =============================================
   HHA RESOURCES — Password Gate
   ============================================= */
.password-gate {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
}
.password-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.password-card .lock-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.password-card h2 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.password-card p { color: #666; font-size: 0.9rem; margin-bottom: 1.5rem; }
.password-card input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  outline: none;
}
.password-card input[type="password"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.12);
}

/* =============================================
   PHOTO GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-light);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* Testimonials */
.testimonials-section { background: var(--bg-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.testimonial-card p {
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.testimonial-card .reviewer {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 0.5rem; }

/* =============================================
   BLOG
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
}
.blog-card-img {
  background: linear-gradient(135deg, #1a73e8 0%, #0a0a23 100%);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-tag {
  display: inline-block;
  background: #e8f0fe;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.blog-card-body p { font-size: 0.875rem; color: #666; flex: 1; }
.blog-card-body .read-more {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.75rem;
}

/* =============================================
   SUPPORT PAGE
   ============================================= */
.support-banner {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.support-banner span { font-size: 1.5rem; }
.support-banner p { margin: 0; font-size: 0.95rem; color: #856404; }

.download-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.download-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.download-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.download-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.download-card p { font-size: 0.85rem; color: #666; margin-bottom: 1rem; }

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.video-embed {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   PRIVACY POLICY
   ============================================= */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.policy-content h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-content ul li { margin-bottom: 0.3rem; font-size: 0.95rem; color: #444; }
.policy-content p { color: #444; font-size: 0.95rem; }
.policy-meta {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #666;
}

/* =============================================
   PLACEHOLDER PAGES
   ============================================= */
.placeholder-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.placeholder-section h1 { margin-bottom: 1rem; }
.placeholder-section p { color: #666; font-size: 1.05rem; max-width: 480px; margin: 0 auto 1.5rem; }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  section { padding: 2.5rem 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 60vh; }
  .hero-content h1 { font-size: 1.75rem; }

  .two-col { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-images { grid-template-columns: 1fr; }
  .county-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .services-included-grid { grid-template-columns: 1fr; }

  .clearance-block { grid-template-columns: 1fr; }
  .clearance-block.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .download-cards { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .county-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
