/* ========================================
   PrimeHomeFix - Elementor-Style CSS
   Global Settings matching Elementor Design System
   ======================================== */

/* --- CSS Variables (Elementor Global Settings) --- */
:root {
  /* Elementor Global Colors */
  --e-global-color-primary: #1E2022;
  --e-global-color-secondary: #6B7280;
  --e-global-color-accent: #C5A059;
  --e-global-color-background: #FAFBFD;
  --e-global-color-light: #F3F4F6;
  --e-global-color-success: #10B981;
  --e-global-color-white: #FFFFFF;

  /* Elementor Global Typography */
  --e-global-typography-primary-font-family: 'Inter', 'Poppins', sans-serif;
  --e-global-typography-secondary-font-family: 'Poppins', 'Inter', sans-serif;
  --e-global-typography-text-font-family: 'Inter', sans-serif;

  /* Font Sizes */
  --font-size-h1: 40px;
  --font-size-h2: 32px;
  --font-size-h3: 24px;
  --font-size-h4: 20px;
  --font-size-body: 16px;
  --font-size-small: 14px;

  /* Spacing */
  --section-padding-y: 80px;
  --container-max-width: 1200px;
  --container-padding-x: 24px;
  --grid-gap: 30px;

  /* Border Radius */
  --border-radius-sm: 6px;
  --border-radius-md: 10px;
  --border-radius-lg: 16px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--e-global-typography-text-font-family);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--e-global-color-secondary);
  background-color: var(--e-global-color-background);
}

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

a {
  color: var(--e-global-color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: #A8894A;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--e-global-typography-primary-font-family);
  color: var(--e-global-color-primary);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }

p {
  margin-bottom: 1em;
}

/* --- Layout Container (Elementor Container style) --- */
.e-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
}

/* --- Section Spacing --- */
.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.section-light {
  background-color: var(--e-global-color-light);
}

.section-white {
  background-color: var(--e-global-color-white);
}

/* --- Buttons (Elementor Button Widget Style) --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--e-global-typography-secondary-font-family);
  font-size: var(--font-size-body);
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--e-global-color-accent);
  color: var(--e-global-color-white);
}

.btn-primary:hover {
  background-color: #A8894A;
  color: var(--e-global-color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--e-global-color-accent);
  border: 2px solid var(--e-global-color-accent);
}

.btn-outline:hover {
  background-color: var(--e-global-color-accent);
  color: var(--e-global-color-white);
}

.btn-white {
  background-color: var(--e-global-color-white);
  color: var(--e-global-color-primary);
}

.btn-white:hover {
  background-color: var(--e-global-color-light);
}

/* --- Header / Navigation --- */
.site-header {
  background-color: var(--e-global-color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--e-global-typography-secondary-font-family);
  font-size: 24px;
  font-weight: 700;
  color: var(--e-global-color-primary);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--e-global-color-accent);
}

.logo-tagline {
  font-size: 11px;
  color: var(--e-global-color-secondary);
  font-weight: 400;
  letter-spacing: 0.3px;
  display: block;
  margin-top: -4px;
}

.nav-desktop {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-desktop a {
  color: var(--e-global-color-primary);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--e-global-color-accent);
  transition: width var(--transition-normal);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover {
  color: var(--e-global-color-accent);
}

.nav-desktop a.active {
  color: var(--e-global-color-accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--e-global-color-primary);
  font-weight: 600;
  font-size: 15px;
}

.phone-link svg {
  width: 18px;
  height: 18px;
  color: var(--e-global-color-accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--e-global-color-primary);
  margin: 5px 0;
  transition: all var(--transition-normal);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,32,34,0.85) 0%, rgba(30,32,34,0.5) 60%, rgba(30,32,34,0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(197,160,89,0.2);
  color: var(--e-global-color-accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: var(--font-size-small);
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: var(--e-global-color-white);
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--e-global-color-secondary);
  font-size: 17px;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--grid-gap);
}

.service-card {
  background: var(--e-global-color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 24px;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(197,160,89,0.1);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--e-global-color-accent);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: var(--e-global-color-secondary);
  margin-bottom: 16px;
}

.service-price {
  display: inline-block;
  color: var(--e-global-color-accent);
  font-weight: 600;
  font-size: 14px;
}

/* --- Why Choose Us --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--e-global-color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(197,160,89,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--e-global-color-accent);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
}

/* --- Trust Badge Bar --- */
.trust-bar {
  background-color: var(--e-global-color-primary);
  padding: 24px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--e-global-color-white);
  font-size: 14px;
  font-weight: 500;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--e-global-color-accent);
  flex-shrink: 0;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--grid-gap);
}

.gallery-card {
  background: var(--e-global-color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.gallery-before-after img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-card-body {
  padding: 20px;
}

.gallery-card-body h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.gallery-card-body p {
  font-size: 13px;
  color: var(--e-global-color-secondary);
  margin-bottom: 0;
}

.gallery-tag {
  display: inline-block;
  background-color: rgba(197,160,89,0.1);
  color: var(--e-global-color-accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}

/* --- Team Section --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--grid-gap);
}

.team-card {
  background: var(--e-global-color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.team-card-body {
  padding: 24px;
}

.team-card h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--e-global-color-accent);
  font-size: 14px;
  font-weight: 500;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--grid-gap);
}

.testimonial-card {
  background: var(--e-global-color-white);
  border-radius: var(--border-radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #F59E0B;
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--e-global-color-primary);
  font-size: 15px;
}

.testimonial-location {
  font-size: 13px;
  color: var(--e-global-color-secondary);
}

.testimonial-tag {
  display: inline-block;
  background-color: rgba(16,185,129,0.1);
  color: var(--e-global-color-success);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 12px;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--e-global-color-white);
  border-radius: var(--border-radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 17px;
  font-weight: 600;
  color: var(--e-global-color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--e-global-color-accent);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--e-global-color-secondary);
  line-height: 1.7;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--e-global-color-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--e-global-color-primary);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: var(--border-radius-sm);
  font-family: var(--e-global-typography-text-font-family);
  font-size: 15px;
  color: var(--e-global-color-primary);
  transition: border-color var(--transition-fast);
  background: var(--e-global-color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--e-global-color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-card {
  background: var(--e-global-color-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(197,160,89,0.1);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--e-global-color-accent);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 15px;
  color: var(--e-global-color-secondary);
  margin-bottom: 0;
}

.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 300px;
  background-color: var(--e-global-color-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--e-global-color-primary);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  color: var(--e-global-color-white);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-logo {
  font-family: var(--e-global-typography-secondary-font-family);
  font-size: 22px;
  font-weight: 700;
  color: var(--e-global-color-white);
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--e-global-color-accent);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--e-global-color-accent);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--e-global-color-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  margin: 0;
  font-size: 14px;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

/* --- Cookie Modal --- */
.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--e-global-color-white);
  border-radius: var(--border-radius-md);
  padding: 32px;
  max-width: 480px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: 8px;
}

.cookie-modal-content > p {
  margin-bottom: 24px;
  font-size: 14px;
}

.cookie-setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--e-global-color-light);
}

.cookie-setting-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.cookie-setting-item p {
  font-size: 13px;
  color: var(--e-global-color-secondary);
  margin: 0;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #D1D5DB;
  border-radius: 26px;
  transition: background-color var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--e-global-color-accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--e-global-color-primary) 0%, #2a2d2f 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--e-global-color-white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--e-global-color-white);
  padding: 48px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--e-global-color-accent);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 20px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* --- Mobile Navigation --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--e-global-color-white);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
}

.mobile-nav.show {
  display: block;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  color: var(--e-global-color-primary);
  font-weight: 500;
  font-size: 18px;
  border-bottom: 1px solid var(--e-global-color-light);
}

/* --- Service Detail Page --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-detail-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.service-detail-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detail-content ul {
  margin: 16px 0 24px 20px;
}

.service-detail-content li {
  margin-bottom: 8px;
  color: var(--e-global-color-secondary);
}

/* --- Counter Section --- */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.counter-item h3 {
  font-size: 48px;
  color: var(--e-global-color-accent);
  font-weight: 700;
  line-height: 1;
}

.counter-item p {
  margin-top: 8px;
  font-weight: 500;
  color: var(--e-global-color-secondary);
}

/* --- Breadcrumb --- */
.breadcrumb {
  background-color: var(--e-global-color-light);
  padding: 16px 0;
  font-size: 14px;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--e-global-color-secondary);
}

.breadcrumb a:hover {
  color: var(--e-global-color-accent);
}

.breadcrumb-current {
  color: var(--e-global-color-primary);
  font-weight: 500;
}

/* --- Service Area Map Embed --- */
.area-coverage {
  background: var(--e-global-color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-desktop,
  .header-cta .phone-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-bar-inner {
    gap: 20px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .counter-item h3 {
    font-size: 36px;
  }

  .legal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding-x: 16px;
    --section-padding-y: 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .contact-form,
  .contact-info-card {
    padding: 24px;
  }
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.hidden { display: none !important; }
.sr-only { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
