/* Serrurier Pro Paris - Complete Styles */

/* Override Bootstrap default link hover color */
a.phone-button:hover,
a.cta-button:hover,
a.pricing-cta:hover,
a.faq-call-button:hover,
a.submit-button:hover,
a.fixed-call-button:hover,
a.sidebar-cta:hover,
a.emergency-button-large:hover,
a.btn-primary:hover,
a.btn-secondary:hover,
a.btn-white-solid:hover,
a.btn-white-outline:hover,
a.btn-white-center:hover,
a.action-button-primary:hover,
a.view-all-link:hover {
  color: var(--white) !important;
}

/* Special case for white buttons that need colored text */
a.btn-white {
  color: #dc3545 !important;
}

a.btn-white:hover {
  color: #bd2130 !important;
}

:root {
  --primary-blue: #1e3a5f;
  --primary-orange: #ff6b35;
  --dark-blue: #0f1f33;
  --light-blue: #4a6fa5;
  --light-orange: #ff8c61;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-medium: #e9ecef;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

/* Header Styles */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.logo-icon svg {
  width: 28px;
  height: 28px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.2;
  margin: 0;
}

.logo-subtitle {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.blog-link,
.reviews-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gray-light);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  font-weight: 500;
}

.blog-link:hover,
.reviews-link:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
}

.blog-link svg,
.reviews-link svg {
  width: 20px;
  height: 20px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text .subtitle {
  font-size: 1.5rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge-icon {
  font-size: 1.5rem;
}

.trust-badge-text {
  color: var(--white);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background: var(--primary-orange);
  color: var(--white);
}

.cta-button.primary:hover {
  background: var(--light-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-button svg {
  width: 20px;
  height: 20px;
}

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

/* Services Grid Section */
.services-grid-section {
  padding: 5rem 2rem;
  background: var(--gray-light);
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-price {
  display: inline-block;
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.pricing-container {
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-medium);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

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

.pricing-card.featured {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  padding: 2rem;
  background: var(--gray-light);
  text-align: center;
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.currency {
  font-size: 1.5rem;
  color: var(--text-light);
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.period {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  padding: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-medium);
  color: var(--text-dark);
}

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

.pricing-cta {
  display: block;
  width: calc(100% - 4rem);
  margin: 0 2rem 2rem;
  padding: 1rem;
  background: var(--primary-blue);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-cta:hover {
  background: var(--light-blue);
  transform: translateY(-2px);
}

.featured .pricing-cta {
  background: var(--primary-orange);
}

.featured .pricing-cta:hover {
  background: var(--light-orange);
}

/* Process Section */
.process-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
}

.process-container {
  max-width: 1080px;
  margin: 0 auto;
}

.process-section .section-title {
  color: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Zones Section */
.zones-section {
  padding: 5rem 2rem;
  background: var(--gray-light);
}

.zones-container {
  max-width: 1080px;
  margin: 0 auto;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.zone-group {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.zone-group h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.zone-group ul {
  list-style: none;
  padding: 0;
}

.zone-group li {
  padding: 0.5rem 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-medium);
}

.zone-group li:last-child {
  border-bottom: none;
}

.zone-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: var(--radius-md);
  text-align: center;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--gray-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.stars {
  color: #ffc107;
  font-size: 1.125rem;
}

.testimonial-service {
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.testimonial-text {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-medium);
}

.testimonial-author strong {
  color: var(--primary-blue);
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.875rem;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

.view-all-link {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  background: var(--light-blue);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Why Us Section */
.why-us-section {
  padding: 5rem 2rem;
  background: var(--gray-light);
}

.why-us-container {
  max-width: 1080px;
  margin: 0 auto;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-us-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.why-us-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.why-us-item h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.why-us-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* FAQ Section - Modern Design */
.faq-section {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, var(--white) 0%, var(--gray-light) 100%);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-main-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.faq-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
}

.faq-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.faq-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-medium);
}

.category-icon {
  font-size: 2rem;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item-modern {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-modern[open] {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.faq-question-modern {
  padding: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-blue);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question-modern::-webkit-details-marker {
  display: none;
}

.faq-question-modern::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-orange);
  transition: transform 0.3s ease;
}

details[open] .faq-question-modern::after {
  transform: rotate(45deg);
}

.faq-question-modern:hover {
  background: var(--white);
  padding-left: 1.5rem;
}

.faq-answer-modern {
  padding: 0 1.25rem 1.25rem 1.25rem;
  animation: fadeIn 0.3s ease;
}

.faq-answer-modern p {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-bottom-cta {
  background: var(--primary-blue);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
}

.cta-content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 1rem;
}

.faq-call-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-orange);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-call-button:hover {
  background: var(--light-orange);
  transform: translateY(-2px);
}

.faq-form-button {
  background: var(--white);
  color: var(--primary-blue);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-form-button:hover {
  background: var(--gray-light);
  transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  color: var(--white);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-section>p {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: var(--white);
}

.form-control::placeholder {
  color: var(--text-light);
}

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

.error-message {
  color: var(--primary-orange);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
  font-weight: 600;
}

.form-submit-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.submit-button {
  background: var(--primary-orange);
  color: var(--white);
  padding: 1rem 3rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: var(--light-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.success-message {
  display: none;
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-size: 1.125rem;
}

/* Hero Modern Section */
.hero-modern {
  background: var(--white);
  position: relative;
}

.hero-emergency-bar {
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.75rem 0;
}

.emergency-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.emergency-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.emergency-icon {
  font-size: 1.125rem;
}

.emergency-text {
  display: inline;
}

.emergency-text-short {
  display: none;
}

.hero-main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--gray-light) 0%, var(--white) 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  pointer-events: none;
}

.hero-pattern {
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg,
      var(--primary-blue),
      var(--primary-blue) 10px,
      transparent 10px,
      transparent 20px);
}

.hero-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.hero-badge-top svg {
  width: 20px;
  height: 20px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.title-line {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.title-highlight {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 600px;
}

.hero-services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.hero-price-info {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.price-box {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: var(--radius-md);
  min-width: 150px;
}

.price-label {
  font-size: 0.875rem;
  color: var(--white) !important;
  opacity: 1;
  font-weight: 500;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin: 0.25rem 0;
  color: var(--white);
}

.price-detail {
  font-size: 0.875rem;
  color: var(--white) !important;
  opacity: 0.95;
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.guarantee-icon {
  font-size: 2.5rem;
}

.guarantee-text {
  display: flex;
  flex-direction: column;
}

.guarantee-text strong {
  color: var(--primary-blue);
  font-size: 1rem;
}

.guarantee-text span {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Hero Contact Card */
.hero-contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--gray-medium);
}

.contact-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-header h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #22c55e;
  font-size: 0.875rem;
  font-weight: 600;
}

.availability-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.phone-display {
  margin-bottom: 1rem;
}

.phone-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem;
  background: var(--primary-orange);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.phone-button:hover {
  background: var(--light-orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  color: var(--white) !important;
}

.phone-button:hover .phone-number {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--white) !important;
}

.phone-button:hover .phone-icon-wrapper {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.phone-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.phone-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.phone-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.phone-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.phone-number {
  font-size: 1.5rem;
  font-weight: 800;
}

.divider-text {
  text-align: center;
  margin: 1rem 0;
  color: var(--text-light);
  position: relative;
}

.divider-text span {
  background: var(--white);
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.divider-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-medium);
}

.form-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: var(--white);
  color: var(--primary-blue);
  text-decoration: none;
  border: 2px solid var(--primary-blue);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s ease;
}

.form-button:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.form-button svg {
  width: 20px;
  height: 20px;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-medium);
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  color: var(--primary-blue);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.trust-item span {
  color: var(--text-light);
  font-size: 0.75rem;
}

/* Fixed Call Button */
.fixed-call-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
  font-weight: 600;
  min-height: 48px;
}

.fixed-call-button:hover {
  background: var(--light-orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(255, 107, 53, 0.5);
}

.fixed-call-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.call-button-text {
  display: inline;
  font-size: 0.875rem;
  white-space: nowrap;
}

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

  .hero-image {
    display: none;
  }

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

/* Tablet Responsive */
@media (max-width: 1024px) {

  /* Hero Modern Tablet */
  .hero-modern {
    background: var(--white);
  }

  .hero-wrapper {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    display: grid !important;
    padding: 3rem 2rem;
  }

  .hero-left,
  .hero-right {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-left {
    gap: 1.75rem;
  }

  .hero-title {
    gap: 0.4rem;
  }

  .title-line {
    font-size: 2.5rem;
  }

  .title-highlight {
    font-size: 2.75rem;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-services-list {
    grid-template-columns: 1fr !important;
    gap: 0.875rem;
  }

  .hero-price-info {
    flex-direction: row;
    gap: 1.5rem;
  }

  .hero-contact-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {

  /* Header Mobile */
  .site-header {
    padding: 0.75rem 0;
  }

  .header-container {
    padding: 0 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .logo-section {
    flex: 1;
    gap: 0.5rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .logo-icon svg {
    width: 20px;
    height: 20px;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
  }

  .logo-title {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .logo-subtitle {
    display: none;
  }

  .header-actions {
    flex-shrink: 0;
  }

  .blog-link {
    padding: 0.4rem 0.75rem;
    font-size: 0.875rem;
  }

  .blog-link span {
    display: inline;
  }

  .blog-link svg {
    width: 16px;
    height: 16px;
  }

  /* Hero Modern Mobile 768px */
  .hero-modern {
    position: relative;
    background: var(--white);
  }

  .hero-emergency-bar {
    padding: 0.6rem 0;
  }

  .emergency-container {
    padding: 0 1rem;
    gap: 0.75rem;
    justify-content: space-between;
  }

  .emergency-item {
    font-size: 0.75rem;
    flex: 1;
    text-align: center;
    padding: 0;
    gap: 0.4rem;
  }

  .emergency-icon {
    font-size: 1rem;
  }

  .emergency-text {
    display: none;
  }

  .emergency-text-short {
    display: inline;
    white-space: nowrap;
    font-size: 0.7rem;
  }

  /* Hero Main Mobile */
  .hero-main {
    background: linear-gradient(to bottom, var(--gray-light) 0%, var(--white) 100%);
  }

  .hero-wrapper {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding: 2rem 1rem;
    display: grid !important;
    max-width: 100%;
  }

  .hero-left,
  .hero-right {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-left {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .hero-badge-top {
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
    width: fit-content;
  }

  .hero-badge-top svg {
    width: 14px;
    height: 14px;
  }

  .hero-title {
    gap: 0.25rem;
    display: flex;
    flex-direction: column;
  }

  .title-line {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .title-highlight {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.875rem;
    line-height: 1.5;
    padding-right: 0;
    max-width: 100%;
  }

  .hero-services-list {
    grid-template-columns: 1fr !important;
    gap: 0.6rem;
    display: grid !important;
  }

  .service-item {
    font-size: 0.85rem;
    gap: 0.5rem;
    display: flex;
    align-items: center;
  }

  .check-icon {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    flex-shrink: 0;
  }

  .hero-price-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    flex-wrap: wrap;
  }

  .price-box {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
  }

  .price-value {
    font-size: 1.75rem;
  }

  .guarantee-box {
    flex: 1;
    min-width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
  }

  .guarantee-icon {
    font-size: 1.75rem;
  }

  .guarantee-text {
    display: flex;
    flex-direction: column;
  }

  .guarantee-text strong {
    font-size: 0.8rem;
  }

  .guarantee-text span {
    font-size: 0.7rem;
  }

  /* Hero Contact Card Mobile */
  .hero-contact-card {
    padding: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 2px solid var(--gray-medium);
  }

  .contact-header h3 {
    font-size: 1.125rem;
  }

  .availability-badge {
    font-size: 0.75rem;
  }

  .phone-display {
    margin-bottom: 0.875rem;
  }

  .phone-button {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .phone-icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .phone-icon-wrapper svg {
    width: 18px;
    height: 18px;
  }

  .phone-label {
    font-size: 0.7rem;
  }

  .phone-number {
    font-size: 1rem;
  }

  .divider-text {
    margin: 0.875rem 0;
  }

  .divider-text span {
    font-size: 0.75rem;
    padding: 0 0.75rem;
  }

  .form-button {
    padding: 0.75rem;
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .form-button svg {
    width: 16px;
    height: 16px;
  }

  .trust-indicators {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .trust-item {
    text-align: center;
  }

  .trust-item strong {
    font-size: 0.85rem;
    display: block;
  }

  .trust-item span {
    font-size: 0.6rem;
    display: block;
  }

  /* Other Sections Mobile */
  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  /* Process Section Mobile */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step::after {
    display: none;
  }

  /* Zones Section Mobile */
  .zones-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Testimonials Section Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Why Us Section Mobile */
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* FAQ Section Mobile */
  .faq-main-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-categories {
    gap: 2rem;
  }

  .faq-category {
    padding: 1.5rem;
  }

  .category-title {
    font-size: 1.25rem;
  }

  .faq-question-modern {
    font-size: 1rem;
    padding: 1rem;
  }

  .faq-answer-modern {
    padding: 0 1rem 1rem 1rem;
  }

  .faq-bottom-cta {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .faq-call-button,
  .faq-form-button {
    width: 100%;
    justify-content: center;
  }

  /* Contact Form Mobile */
  .contact-form {
    padding: 2rem 1.5rem;
  }

  .fixed-call-button {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1rem;
  }

  .call-button-text {
    font-size: 0.8rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  /* Header 480px */
  .logo-title {
    font-size: 0.85rem;
  }

  .blog-link {
    padding: 0.35rem 0.6rem;
    font-size: 0.8rem;
  }

  .blog-link span {
    display: none;
  }

  .blog-link svg {
    width: 18px;
    height: 18px;
  }

  /* Fixed Button 480px */
  .fixed-call-button {
    padding: 0.75rem;
    gap: 0;
  }

  .call-button-text {
    display: none;
  }

  .fixed-call-button svg {
    width: 24px;
    height: 24px;
  }

  /* Hero Emergency Bar 480px */
  .hero-emergency-bar {
    padding: 0.5rem 0;
  }

  .emergency-container {
    padding: 0 0.75rem;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: space-around;
  }

  .emergency-item {
    font-size: 0;
    gap: 0.25rem;
    flex: none;
  }

  .emergency-text,
  .emergency-text-short {
    display: none !important;
  }

  .emergency-icon {
    font-size: 1.25rem;
  }

  /* Hero Wrapper 480px */
  .hero-wrapper {
    padding: 1.5rem 0.75rem;
  }

  .title-line {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .title-highlight {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .hero-services-list {
    grid-template-columns: 1fr !important;
    gap: 0.5rem;
    display: grid !important;
  }

  .service-item {
    font-size: 0.8rem;
  }

  .hero-price-info {
    flex-direction: column;
    gap: 0.75rem;
  }

  .price-box {
    width: 100%;
    padding: 0.875rem;
  }

  .price-value {
    font-size: 1.5rem;
  }

  .guarantee-box {
    width: 100%;
  }

  .hero-contact-card {
    padding: 1rem;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0.75rem;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
  }

  .trust-item strong {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  .trust-item span {
    font-size: 0.7rem;
  }

  /* Services Grid 480px */
  .services-grid-section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  /* Pricing Section 480px */
  .pricing-section {
    padding: 3rem 1rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pricing-card {
    padding: 1.25rem;
  }

  /* Process Section 480px */
  .process-section {
    padding: 3rem 1rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Zones Section 480px */
  .zones-section {
    padding: 3rem 1rem;
  }

  .zones-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Testimonials Section 480px */
  .testimonials-section {
    padding: 3rem 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  /* Why Us Section 480px */
  .why-us-section {
    padding: 3rem 1rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-us-item {
    padding: 1.25rem;
  }

  /* FAQ Section 480px */
  .faq-section {
    padding: 3rem 1rem;
  }

  .faq-title {
    font-size: 1.75rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .faq-item {
    padding: 1.25rem;
  }

  /* Contact Section 480px */
  .contact-section {
    padding: 3rem 1rem;
  }

  .contact-section h2 {
    font-size: 1.75rem;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }
}

/* Small Mobile - iPhone SE, Galaxy S8 */
@media (max-width: 375px) {

  /* Base styles */
  body {
    font-size: 14px;
  }

  /* Header 375px */
  .site-header {
    padding: 0.6rem 0;
  }

  .header-container {
    padding: 0 0.75rem;
    gap: 0.5rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .logo-icon svg {
    width: 18px;
    height: 18px;
  }

  .logo-title {
    font-size: 0.8rem;
    font-weight: 700;
  }

  .blog-link {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 6px;
  }

  .blog-link svg {
    width: 16px;
    height: 16px;
  }

  /* Hero Emergency Bar 375px */
  .hero-emergency-bar {
    padding: 0.5rem 0;
    background: var(--primary-orange);
  }

  .emergency-container {
    padding: 0 0.75rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0;
  }

  .emergency-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex: 1;
    max-width: 100px;
  }

  .emergency-text {
    display: none !important;
  }

  .emergency-text-short {
    display: none !important;
  }

  .emergency-icon {
    font-size: 1.5rem;
    display: block;
  }

  /* Hero Main 375px */
  .hero-wrapper {
    padding: 1.25rem 0.5rem;
    gap: 1.25rem;
  }

  .hero-left {
    gap: 1rem;
  }

  .hero-badge-top {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
  }

  .hero-badge-top svg {
    width: 12px;
    height: 12px;
  }


  .title-highlight {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .hero-services-list {
    grid-template-columns: 1fr !important;
    gap: 0.4rem;
    display: grid !important;
  }

  .service-item {
    font-size: 0.75rem;
    gap: 0.4rem;
  }

  .check-icon {
    width: 16px;
    height: 16px;
    font-size: 0.65rem;
  }

  .hero-price-info {
    flex-direction: column;
    gap: 0.75rem;
  }

  .price-box {
    padding: 0.75rem;
    width: 100%;
  }

  .price-label,
  .price-detail {
    font-size: 0.7rem;
  }

  .price-value {
    font-size: 1.4rem;
  }

  .guarantee-box {
    width: 100%;
  }

  .guarantee-icon {
    font-size: 1.5rem;
  }

  .guarantee-text strong {
    font-size: 0.75rem;
  }

  .guarantee-text span {
    font-size: 0.65rem;
  }

  /* Contact Card 375px */
  .hero-contact-card {
    padding: 1rem;
  }

  .contact-header h3 {
    font-size: 1rem;
  }

  .availability-badge {
    font-size: 0.7rem;
  }

  .phone-button {
    padding: 0.625rem;
  }

  .phone-icon-wrapper {
    width: 32px;
    height: 32px;
  }

  .phone-icon-wrapper svg {
    width: 16px;
    height: 16px;
  }

  .phone-label {
    font-size: 0.65rem;
  }

  .phone-number {
    font-size: 0.9rem;
  }

  .form-button {
    padding: 0.625rem;
    font-size: 0.75rem;
  }

  .form-button svg {
    width: 14px;
    height: 14px;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .trust-item strong {
    font-size: 0.8rem;
  }

  .trust-item span {
    font-size: 0.65rem;
  }

  /* Services Section 375px */
  .services-grid-section {
    padding: 3rem 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .section-subtitle {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }

  .services-grid {
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .service-icon svg {
    width: 24px;
    height: 24px;
  }

  .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .service-card p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .service-price {
    font-size: 0.875rem;
    padding: 0.4rem 1rem;
  }

  /* Pricing Section 375px */
  .pricing-section {
    padding: 3rem 0.75rem;
  }

  .pricing-cards {
    gap: 1.5rem;
  }

  .pricing-header {
    padding: 1.5rem;
  }

  .pricing-header h3 {
    font-size: 1.25rem;
  }

  .currency {
    font-size: 1.25rem;
  }

  .amount {
    font-size: 2.25rem;
  }

  .period {
    font-size: 0.875rem;
  }

  .pricing-features {
    padding: 1.25rem;
    font-size: 0.875rem;
  }

  .pricing-features li {
    padding: 0.5rem 0;
  }

  .pricing-cta {
    margin: 0 1.25rem 1.25rem;
    padding: 0.75rem;
    font-size: 0.875rem;
  }

  /* Process Section 375px */
  .process-section {
    padding: 3rem 0.75rem;
  }

  .process-steps {
    gap: 1.5rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .process-step h3 {
    font-size: 1.125rem;
  }

  .process-step p {
    font-size: 0.875rem;
  }

  /* Zones Section 375px */
  .zones-section {
    padding: 3rem 0.75rem;
  }

  .zones-grid {
    gap: 1.25rem;
  }

  .zone-group {
    padding: 1.25rem;
  }

  .zone-group h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  .zone-group li {
    font-size: 0.875rem;
    padding: 0.4rem 0;
  }

  .zone-info {
    margin-top: 1.5rem;
    padding: 1.25rem;
    font-size: 0.875rem;
  }

  /* Testimonials Section 375px */
  .testimonials-section {
    padding: 3rem 0.75rem;
  }

  .testimonials-grid {
    gap: 1.25rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .testimonial-service {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }

  .testimonial-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .testimonial-author strong {
    font-size: 0.875rem;
  }

  .testimonial-author span {
    font-size: 0.75rem;
  }

  .view-all-link {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  /* Why Us Section 375px */
  .why-us-section {
    padding: 3rem 0.75rem;
  }

  .why-us-grid {
    gap: 1.25rem;
  }

  .why-us-item {
    padding: 1.25rem;
  }

  .why-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .why-us-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.4rem;
  }

  .why-us-item p {
    font-size: 0.875rem;
  }

  /* FAQ Section 375px */
  .faq-section {
    padding: 3rem 0.75rem;
  }

  .faq-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .faq-grid {
    gap: 1.25rem;
  }

  .faq-item {
    padding: 1.25rem;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }

  .faq-question h3 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .faq-answer p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .faq-cta {
    padding: 1.5rem;
    margin-top: 2rem;
  }

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

  .faq-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  /* Contact Section 375px */
  .contact-section {
    padding: 3rem 0.75rem;
  }

  .contact-section h2 {
    font-size: 1.75rem;
  }

  .contact-section>p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .form-control {
    padding: 0.75rem;
    font-size: 0.875rem;
  }

  .error-message {
    font-size: 0.75rem;
  }

  .submit-button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  /* Fixed Call Button 375px */
  .fixed-call-button {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    bottom: 0.75rem;
    right: 0.75rem;
  }

  .fixed-call-button svg {
    width: 22px;
    height: 22px;
  }

  .call-button-text {
    display: none;
  }
}

/* Review Cards Styles */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.review-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review__wrp {
  margin-bottom: 1rem;
}

.review__wrp h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}

.review-service {
  font-size: 0.875rem;
  color: var(--bs-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.review-comment {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 1rem;
  flex: 1;
}

.review-meta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.review-rating {
  font-size: 1.2rem;
  color: #ffc107;
  letter-spacing: 2px;
}

/* Responsive review cards */
@media (max-width: 768px) {
  .review-card {
    padding: 1.25rem;
  }
  
  .review__wrp h3 {
    font-size: 1rem;
  }
  
  .review-service {
    font-size: 0.8rem;
  }
  
  .review-comment {
    font-size: 0.875rem;
  }
  
  .review-rating {
    font-size: 1rem;
  }
}

/* Extra Small Mobile - 320px */
@media (max-width: 320px) {

  /* Hero 320px */
  .hero-wrapper {
    padding: 1rem 0.4rem;
    gap: 1rem;
  }

  .title-line {
    font-size: 1.125rem;
  }

  .title-highlight {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .service-item {
    font-size: 0.7rem;
  }

  .price-value {
    font-size: 1.25rem;
  }

  .hero-contact-card {
    padding: 0.875rem;
  }

  .contact-header h3 {
    font-size: 0.9rem;
  }

  .phone-button {
    padding: 0.5rem;
  }

  .phone-number {
    font-size: 0.85rem;
  }

  .form-button {
    padding: 0.5rem;
    font-size: 0.7rem;
  }

  .trust-item strong {
    font-size: 0.75rem;
  }

  .trust-item span {
    font-size: 0.6rem;
  }

  /* Other sections 320px */
  .section-title {
    font-size: 1.25rem;
  }

  .service-card {
    padding: 1rem;
  }

  .pricing-header {
    padding: 1rem;
  }

  .amount {
    font-size: 1.75rem;
  }

  /* Sections 320px */
  .services-grid-section,
  .pricing-section,
  .process-section,
  .zones-section,
  .testimonials-section,
  .why-us-section,
  .faq-section,
  .contact-section {
    padding: 2.5rem 0.5rem;
  }

  .services-grid,
  .pricing-cards,
  .process-steps,
  .zones-grid,
  .testimonials-grid,
  .why-us-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card,
  .pricing-card,
  .zone-group,
  .testimonial-card,
  .why-us-item,
  .faq-item {
    padding: 1rem;
  }

  .contact-form {
    padding: 1rem 0.75rem;
  }

  .form-control {
    padding: 0.625rem;
    font-size: 0.8rem;
  }
}