/* ============================================
   LÅSHJELP - LOCKSMITH SERVICES NORWAY
   Color Scheme: Navy Blue + Amber/Gold
   Style: Professional & Trustworthy
   ============================================ */

:root {
  /* Primary Colors - Navy Blue (Security, Trust, Professional) */
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;

  /* Accent Colors - Amber/Gold (Premium, Quality, CTA) */
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;

  /* Neutral Colors */
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --gray-dark: #334155;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --light: #f1f5f9;
  --light-soft: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --bg-light: #f8fafc;
  --text: #0f172a;
  --text-light: #64748b;

  /* Semantic Colors */
  --success: #22c55e;
  --warning: #eab308;
  --danger: #dc2626;
  --info: #0ea5e9;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  --gradient-hero: linear-gradient(145deg, #1e3a8a 0%, #1e40af 40%, #172554 100%);
  --gradient-card: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.15);
  --shadow-accent: 0 4px 24px rgba(245, 158, 11, 0.35);

  /* Typography */
  --font-main: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1240px;
  --container-padding: 0 24px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  max-width: 1920px;
  min-width: 375px;
  margin: 0 auto;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.lh-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.lh-section {
  padding: var(--section-padding);
}

.lh-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.lh-label {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.lh-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.lh-title span {
  color: var(--primary);
}

.lh-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.lh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}

.lh-btn img {
  filter: brightness(0) invert(1);
}

.lh-btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.lh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.lh-btn-accent {
  background: var(--gradient-accent);
  color: var(--dark);
}

.lh-btn-accent img {
  filter: brightness(0);
}

.lh-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.lh-btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.lh-btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.lh-btn-outline img {
  filter: none;
  transition: var(--transition-base);
}

.lh-btn-outline:hover img {
  filter: brightness(0) invert(1);
}

/* ============================================
   FIXED HEADER
   ============================================ */
.lh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.lh-header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lh-header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lh-header-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.lh-header-logo-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.lh-header-logo-text p {
  font-size: 0.75rem;
  color: var(--gray);
  margin: 0;
}

.lh-header-nav {
  display: flex;
  gap: 28px;
}

.lh-header-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

.lh-header-nav a:hover {
  color: var(--primary);
}

.lh-header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition-base);
}

.lh-header-nav a:hover::after {
  width: 100%;
}

.lh-header-blog {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--light);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}

.lh-header-blog:hover {
  background: var(--primary);
  color: var(--white);
}

/* Header Home Link (for inner pages) */
.lh-header-home {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.lh-header-home:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.lh-header-home img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.lh-header-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.lh-header-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition-base);
}

/* ============================================
   HERO SECTION (Image with H1 overlay)
   ============================================ */
.lh-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.lh-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lh-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.lh-hero-inner {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px 60px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.2);
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lh-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: heroPulse 2s infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.lh-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
  max-width: 800px;
}

.lh-hero-title span {
  display: block;
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 16px;
}

/* ============================================
   HERO INFO SECTION (Navy background)
   ============================================ */
.lh-hero-info {
  background: var(--gradient-primary);
  padding: 48px 0;
}

.lh-hero-info .lh-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lh-hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 650px;
}

.lh-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: center;
}

.lh-hero-features span,
.lh-hero-feature {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
}

.lh-hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lh-hero-feature img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.lh-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.lh-hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--dark);
  padding: 18px 32px;
  border-radius: var(--radius-md);
  font-size: 1.15rem;
  font-weight: 700;
  transition: var(--transition-base);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.lh-hero-phone:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5);
}

.lh-hero-form-btn {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-base);
  backdrop-filter: blur(4px);
}

.lh-hero-form-btn:hover {
  background: var(--white);
  color: var(--primary);
}

@media (max-width: 768px) {
  .lh-hero {
    min-height: 300px;
  }

  .lh-hero-inner {
    padding: 100px 20px 50px;
  }

  .lh-hero-title {
    font-size: 2rem;
  }

  .lh-hero-title span {
    font-size: 1.3rem;
  }

  .lh-hero-info {
    padding: 36px 0;
  }

  .lh-hero-desc {
    font-size: 1rem;
  }

  .lh-hero-features {
    gap: 12px;
  }

  .lh-hero-features span {
    font-size: 0.85rem;
  }

  .lh-hero-phone {
    padding: 16px 24px;
    font-size: 1rem;
  }

  .lh-hero-form-btn {
    padding: 16px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .lh-hero {
    min-height: 260px;
  }

  .lh-hero-inner {
    padding: 90px 16px 40px;
  }

  .lh-hero-title {
    font-size: 1.75rem;
  }

  .lh-hero-title span {
    font-size: 1.15rem;
    margin-top: 12px;
  }

  .lh-hero-info {
    padding: 28px 0;
  }

  .lh-hero-cta {
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
  }

  .lh-hero-phone,
  .lh-hero-form-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.lh-services {
  background: var(--bg-light);
}

.lh-services-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.lh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lh-service-card {
  background: var(--white);
  padding: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: none;
  overflow: hidden;
  position: relative;
}

.lh-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-base);
}

.lh-service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.lh-service-card:hover::before {
  opacity: 1;
}

.lh-service-card-content {
  padding: 24px;
}

.lh-service-card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.lh-service-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.lh-service-card-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.lh-service-card-price {
  display: inline-block;
  background: var(--light);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.lh-pricing-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.lh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lh-pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: var(--transition-base);
}

.lh-pricing-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.lh-pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: var(--shadow-accent);
}

.lh-pricing-card.featured:hover {
  transform: scale(1.08);
}

.lh-pricing-card-header {
  padding: 28px 24px;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
}

.lh-pricing-card.featured .lh-pricing-card-header {
  background: var(--gradient-accent);
  color: var(--dark);
}

.lh-pricing-card-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.lh-pricing-card-price {
  font-size: 2rem;
  font-weight: 800;
}

.lh-pricing-card-price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
}

.lh-pricing-card-body {
  padding: 24px;
}

.lh-pricing-card-features {
  margin-bottom: 24px;
}

.lh-pricing-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}

.lh-pricing-card-features li:last-child {
  border-bottom: none;
}

.lh-pricing-card-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.lh-pricing-card-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
}

.lh-pricing-card-btn:hover {
  background: var(--primary-dark);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.lh-faq {
  background: var(--bg-light);
}

.lh-faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.lh-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lh-faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.lh-faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-base);
}

.lh-faq-question:hover {
  color: var(--primary);
}

.lh-faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition-base);
}

.lh-faq-item.active .lh-faq-icon {
  transform: rotate(45deg);
}

.lh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.lh-faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.lh-reviews-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.lh-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lh-review-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.lh-review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.lh-review-card-author {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.lh-review-card-service {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 4px;
}

.lh-review-card-stars {
  color: var(--accent);
  font-size: 1rem;
}

.lh-review-card-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  font-style: italic;
}

.lh-reviews-cta {
  text-align: center;
  margin-top: 40px;
}

.lh-reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-base);
}

.lh-reviews-cta-btn:hover {
  background: var(--primary-dark);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.lh-contact {
  background: var(--white);
  padding-top: 0;
}

/* Contact Header */
.lh-contact-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 50px;
}

.lh-contact-header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.lh-contact-header .lh-label {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.lh-contact-header .lh-title {
  color: var(--white);
}

.lh-contact-header .lh-title span {
  color: var(--accent);
}

.lh-contact-header .lh-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Inner */
.lh-contact-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Side */
.lh-contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Quick Contact Card */
.lh-contact-quick {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}

.lh-contact-quick-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.lh-contact-quick-header h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin: 0;
}

.lh-contact-available {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
}

.lh-contact-available-dot {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  animation: contactPulse 2s infinite;
}

@keyframes contactPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

/* Big Phone Button */
.lh-contact-phone-big {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--accent);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  margin-bottom: 24px;
}

.lh-contact-phone-big:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.lh-contact-phone-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lh-contact-phone-text {
  display: flex;
  flex-direction: column;
}

.lh-contact-phone-text span {
  font-size: 0.9rem;
  color: var(--dark);
  opacity: 0.8;
}

.lh-contact-phone-text strong {
  font-size: 1.4rem;
  color: var(--dark);
  font-weight: 700;
}

/* Contact Details */
.lh-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lh-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.lh-contact-detail img {
  flex-shrink: 0;
  margin-top: 2px;
}

.lh-contact-detail div {
  display: flex;
  flex-direction: column;
}

.lh-contact-detail strong {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.lh-contact-detail span {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Info Box */
.lh-contact-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 2px solid var(--primary);
  border-left-width: 4px;
}

.lh-contact-info h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.lh-contact-info p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.lh-contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lh-contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark);
}

.lh-contact-info-list li img {
  flex-shrink: 0;
}

/* Contact Form */
.lh-contact-form-wrap {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}

.lh-contact-form-header h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.lh-contact-form-header p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.lh-contact-form-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.lh-contact-form-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
}

.lh-contact-form-badge img {
  opacity: 0.7;
}

/* Form Controls */
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-base);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.forms__button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.forms__button:hover {
  background: var(--primary-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.lh-footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}

.lh-footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

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

.lh-footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.lh-footer-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.lh-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lh-footer-badge {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.lh-footer-badge.highlight {
  background: var(--accent);
  color: var(--dark);
}

.lh-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lh-footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
}

.lh-footer-link:hover {
  color: var(--accent);
}

.lh-footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.lh-footer-contact-item a {
  color: var(--accent);
}

.lh-footer-areas {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lh-footer-areas-title {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.lh-footer-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lh-footer-areas-list a {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-base);
}

.lh-footer-areas-list a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

.lh-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.lh-footer-legal {
  display: flex;
  gap: 24px;
}

.lh-footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.lh-footer-legal a:hover {
  color: var(--accent);
}

.lh-footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FIXED CALL BUTTON
   ============================================ */
.fixed-call-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-accent);
  z-index: 9999;
  transition: var(--transition-base);
  animation: callPulse 2s infinite;
}

.fixed-call-button:hover {
  transform: scale(1.1);
  background: var(--accent-light);
}

.fixed-call-button img {
  filter: brightness(0);
}

@keyframes callPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  50% { box-shadow: 0 0 0 20px rgba(245, 158, 11, 0); }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet landscape - add more padding in 880-1300px range */
@media (max-width: 1300px) and (min-width: 881px) {
  :root {
    --container-padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  .lh-services-grid,
  .lh-pricing-grid,
  .lh-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .lh-contact-form-wrap {
    position: static;
  }

  .lh-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .lh-header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }

  .lh-header-nav.active {
    display: flex;
  }

  .lh-header-blog {
    display: none;
  }

  .lh-header-toggle {
    display: flex;
  }

  .lh-header-home span {
    display: none;
  }

  .lh-header-home {
    padding: 10px;
    border-radius: 50%;
  }

  .lh-services-grid,
  .lh-pricing-grid,
  .lh-reviews-grid {
    grid-template-columns: 1fr;
  }

  .lh-title {
    font-size: 1.8rem;
  }

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

  .lh-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .fixed-call-button {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 768px) {
  .lh-contact-header {
    padding: 40px 15px;
    margin-bottom: 30px;
  }

  .lh-contact-quick {
    padding: 20px;
  }

  .lh-contact-phone-big {
    padding: 16px 20px;
  }

  .lh-contact-phone-icon {
    width: 48px;
    height: 48px;
  }

  .lh-contact-phone-text strong {
    font-size: 1.2rem;
  }

  .lh-contact-info {
    padding: 20px;
  }

  .lh-contact-form-wrap {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .lh-contact-quick-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lh-contact-phone-big {
    flex-direction: column;
    text-align: center;
  }

  .lh-contact-phone-text strong {
    font-size: 1.3rem;
  }
}

/* ============================================
   UTILITY MARGINS
   ============================================ */
.my-0 { margin-top: 0; margin-bottom: 0; }
.my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }

/* Utility: Grayscale filter for before/after gallery */
.grayscale {
  filter: grayscale(100%);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.lh-trust {
  background: var(--white);
}

.lh-trust-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.lh-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lh-trust-card {
  background: var(--bg-light);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition-base);
}

.lh-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.lh-trust-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lh-trust-card-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.lh-trust-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.lh-trust-card-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .lh-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .lh-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SERVICE CARDS WITH IMAGES
   ============================================ */
.lh-service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

/* ============================================
   WORK PROCESS SECTION
   ============================================ */
.lh-process {
  background: var(--white);
}

.lh-process-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.lh-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: process;
}

.lh-process-step {
  background: var(--bg-light);
  padding: 32px 24px;
  padding-top: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
}

.lh-process-step::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lh-process-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  margin-top: 8px;
}

.lh-process-step-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .lh-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lh-process-grid::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .lh-process-grid {
    grid-template-columns: 1fr;
  }
}

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

.lh-about-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lh-about-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.lh-about-content h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.lh-about-content p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.lh-about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lh-about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
}

.lh-about-feature img {
  width: 20px;
  height: 20px;
  filter: invert(58%) sepia(69%) saturate(456%) hue-rotate(118deg) brightness(93%) contrast(92%);
}

@media (max-width: 1024px) {
  .lh-about-inner {
    grid-template-columns: 1fr;
  }

  .lh-about-img {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .lh-about-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BEFORE/AFTER GALLERY SECTION
   ============================================ */
.lh-gallery {
  background: var(--white);
}

.lh-gallery-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.lh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lh-gallery-item {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition-base);
}

.lh-gallery-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.lh-gallery-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.lh-gallery-before,
.lh-gallery-after {
  position: relative;
  overflow: hidden;
}

.lh-gallery-before img,
.lh-gallery-after img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.lh-gallery-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.lh-gallery-after .lh-gallery-label {
  background: var(--success);
}

.lh-gallery-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  padding: 20px 20px 8px;
}

.lh-gallery-desc {
  font-size: 0.9rem;
  color: var(--gray);
  padding: 0 20px 20px;
  line-height: 1.5;
}

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

@media (max-width: 600px) {
  .lh-gallery-grid {
    grid-template-columns: 1fr;
  }

  .lh-gallery-before img,
  .lh-gallery-after img {
    height: 140px;
  }
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.lh-portfolio {
  background: var(--bg-light);
}

.lh-portfolio-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.lh-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.lh-portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition-base);
}

.lh-portfolio-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.lh-portfolio-card-img {
  position: relative;
  overflow: hidden;
}

.lh-portfolio-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: var(--transition-base);
}

.lh-portfolio-card:hover .lh-portfolio-card-img img {
  transform: scale(1.05);
}

.lh-portfolio-card-content {
  padding: 24px;
}

.lh-portfolio-card-type {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lh-portfolio-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.lh-portfolio-card-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.lh-portfolio-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
}

.lh-portfolio-card-meta::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url('../../assets/icons/location.svg') no-repeat center;
  background-size: contain;
  filter: invert(32%) sepia(98%) saturate(1234%) hue-rotate(196deg) brightness(96%) contrast(101%);
}

@media (max-width: 768px) {
  .lh-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .lh-portfolio-card-img img {
    height: 200px;
  }
}

/* ============================================
   COMMON PROBLEMS SECTION
   ============================================ */
.lh-problems {
  background: var(--white);
}

.lh-problems-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.lh-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lh-problem-card {
  background: var(--bg-light);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition-base);
}

.lh-problem-card:hover {
  border-color: var(--warning);
  box-shadow: var(--shadow-sm);
}

.lh-problem-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.lh-problem-card-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.lh-problem-card-solution {
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--dark);
  border-left: 3px solid var(--success);
}

.lh-problem-card-solution strong {
  color: var(--success);
}

.lh-problems-cta {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
}

.lh-problems-cta p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.lh-problems-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--dark);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition-base);
  box-shadow: var(--shadow-accent);
}

.lh-problems-cta-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.lh-problems-cta-btn img {
  filter: brightness(0);
}

@media (max-width: 1024px) {
  .lh-problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lh-problems-grid {
    grid-template-columns: 1fr;
  }

  .lh-problems-cta {
    padding: 24px 20px;
  }

  .lh-problems-cta p {
    font-size: 1rem;
  }

  .lh-problems-cta-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* ============================================
   11. CTA BANNER SECTION
   ============================================ */
.lh-cta-banner {
  display: flex;
  overflow: hidden;
}

.lh-cta-banner-left {
  flex: 1;
  background: var(--accent);
  padding: 48px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lh-cta-banner-left h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.lh-cta-banner-left p {
  font-size: 1.05rem;
  color: var(--dark);
  opacity: 0.8;
}

.lh-cta-banner-right {
  flex: 1;
  background: var(--primary);
  padding: 48px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.lh-cta-banner-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 18px 36px;
  border-radius: 60px;
  text-decoration: none;
  transition: var(--transition-base);
  margin-bottom: 20px;
}

.lh-cta-banner-phone img {
  width: 28px;
  height: 28px;
  filter: none;
}

.lh-cta-banner-phone span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.lh-cta-banner-phone:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lh-cta-banner-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.lh-cta-banner-info span {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-left: 16px;
}

.lh-cta-banner-info span::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 900px) {
  .lh-cta-banner {
    flex-direction: column;
  }

  .lh-cta-banner-left,
  .lh-cta-banner-right {
    padding: 36px 24px;
    align-items: center;
    text-align: center;
  }

  .lh-cta-banner-left h2 {
    font-size: 1.6rem;
  }

  .lh-cta-banner-phone {
    padding: 14px 28px;
  }

  .lh-cta-banner-phone span {
    font-size: 1.3rem;
  }

  .lh-cta-banner-info {
    justify-content: center;
  }
}

/* ============================================
   14. EMERGENCY LOCKOUT SECTION
   ============================================ */
.lh-emergency {
  background: var(--light);
}

.lh-emergency-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.lh-emergency-badge {
  display: inline-block;
  background: var(--danger);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.lh-emergency-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.lh-emergency-text > p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.lh-emergency-list {
  display: flex;
  gap: 24px;
}

.lh-emergency-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.lh-emergency-check {
  color: var(--success);
  font-weight: 700;
}

.lh-emergency-card {
  background: var(--primary);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.lh-emergency-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.lh-emergency-dot {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.lh-emergency-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--white);
  padding: 18px 40px;
  border-radius: 60px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-base);
  margin-bottom: 16px;
}

.lh-emergency-btn img {
  width: 24px;
  height: 24px;
  filter: none;
}

.lh-emergency-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.lh-emergency-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@media (max-width: 900px) {
  .lh-emergency-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lh-emergency-text {
    text-align: center;
  }

  .lh-emergency-text h2 {
    font-size: 2rem;
  }

  .lh-emergency-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .lh-emergency-card {
    padding: 32px 24px;
  }

  .lh-emergency-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}

/* ============================================
   15. SECURITY SOLUTIONS SECTION
   ============================================ */
.lh-security {
  background: var(--white);
}

.lh-security-header {
  text-align: center;
  margin-bottom: 48px;
}

.lh-security-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.lh-security-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.lh-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.lh-security-card {
  background: var(--light);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition-base);
}

.lh-security-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.lh-security-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.lh-security-icon img {
  filter: brightness(0) invert(1);
}

.lh-security-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.lh-security-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
}

.lh-security-cta {
  text-align: center;
  background: var(--light);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.lh-security-cta p {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .lh-security-grid {
    grid-template-columns: 1fr;
  }

  .lh-security-card {
    padding: 28px;
  }
}

/* ============================================
   16. MODERN LOCK SOLUTIONS SECTION
   ============================================ */
.lh-modern {
  background: #1e3a5f;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.lh-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.lh-modern .lh-container {
  position: relative;
  z-index: 1;
}

.lh-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lh-modern-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.lh-modern-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.3;
  color: var(--white);
}

.lh-modern-content p {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.lh-modern-content p strong {
  color: var(--white);
  font-weight: 600;
}

.lh-modern-content .lh-btn {
  margin-top: 16px;
}

.lh-modern-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lh-modern-feature {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

.lh-modern-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  transform: translateX(-4px);
}

.lh-modern-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lh-modern-feature-icon img {
  filter: brightness(0);
  width: 28px;
  height: 28px;
}

.lh-modern-feature h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.lh-modern-feature p {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

/* Button override for dark sections */
.lh-modern .lh-btn-primary {
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
}

.lh-modern .lh-btn-primary:hover {
  background: #d97706;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

@media (max-width: 900px) {
  .lh-modern-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lh-modern-content {
    text-align: center;
  }

  .lh-modern-content h2 {
    font-size: 1.8rem;
  }

  .lh-modern-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ============================================
   17. COVERAGE AND GUARANTEE SECTION
   ============================================ */
.lh-coverage {
  background: var(--light);
}

.lh-coverage-header {
  text-align: center;
  margin-bottom: 56px;
}

.lh-coverage-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.lh-coverage-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto;
}

.lh-coverage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.lh-coverage-areas h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.lh-coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lh-coverage-list span {
  background: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: var(--transition-base);
}

.lh-coverage-list span:hover {
  background: var(--primary);
  color: var(--white);
}

.lh-coverage-list span:last-child {
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
}

.lh-coverage-trust {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lh-trust-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition-base);
}

.lh-trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.lh-trust-item img {
  width: 48px;
  height: 48px;
  padding: 12px; 
  border-radius: var(--radius-sm); 
  flex-shrink: 0;
}

.lh-trust-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}

.lh-trust-item p {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
}

.lh-coverage-cta {
  background: var(--primary);
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lh-coverage-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.lh-coverage-cta h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
  position: relative;
}

.lh-coverage-cta > p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  position: relative;
}

.lh-coverage-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.lh-btn-accent {
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lh-btn-accent img {
  filter: brightness(0);
}

.lh-btn-accent:hover {
  background: #d97706;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lh-btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

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

@media (max-width: 768px) {
  .lh-coverage-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lh-coverage-cta {
    padding: 32px 24px;
  }

  .lh-coverage-header h2 {
    font-size: 1.8rem;
  }

  .lh-trust-item {
    padding: 20px;
  }
}

/* ============================================
   FOOTER ICONS
   ============================================ */
.lh-footer-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  flex-shrink: 0;
}
