:root {
  /* Новая цветовая палитра для слесарного сайта */
  --primary-color: #2C3E50;
  /* Темно-синий - надежность и профессионализм */
  --secondary-color: #E67E22;
  /* Оранжевый - срочность и действие */
  --accent-color: #27AE60;
  /* Зеленый - безопасность и доверие */
  --dark-color: #1A252F;
  --light-color: #ECF0F1;
  --text-color: #34495E;
  --danger-color: #E74C3C;
  --warning-color: #F39C12;
  --success-color: #27AE60;
  --info-color: #3498DB;

  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  --gradient-hero: linear-gradient(165deg, #1A252F 0%, #2C3E50 50%, #34495E 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);

  /* Тени */
  --shadow-sm: 0 2px 4px rgba(44, 62, 80, 0.1);
  --shadow-md: 0 4px 12px rgba(44, 62, 80, 0.15);
  --shadow-lg: 0 8px 24px rgba(44, 62, 80, 0.2);
  --shadow-xl: 0 16px 48px rgba(44, 62, 80, 0.25);
}

/* Reset и базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
}

/* Global Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .hero-emergency {
    margin-top: 70px;
  }

  .emergency-strip {
    gap: 1rem;
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
  }

  .emergency-badge {
    font-size: 0.875rem;
  }
}

/* Профессиональный Header */
.professional-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(44, 62, 80, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

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

.brand-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.brand-text h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.brand-text p {
  font-size: 0.875rem;
  color: var(--text-color);
  opacity: 0.8;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.blog-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.blog-btn:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
}

/* Адаптив для Header */
@media (max-width: 768px) {
  .header-content {
    padding: 0.75rem 1rem;
  }

  .brand-text h2 {
    font-size: 1.25rem;
  }

  .brand-text p {
    font-size: 0.75rem;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .blog-btn {
    padding: 0.5rem 1rem;
  }

  .blog-btn span {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0.5rem 0.75rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand-text h2 {
    font-size: 1.1rem;
  }

  .brand-text p {
    display: none;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .blog-btn {
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .zones-map {
    height: 300px;
    padding: 0.75rem;
  }

  .zones-main-title {
    font-size: 1.125rem;
  }

  .coverage-item h4 {
    font-size: 0.9375rem;
  }

  .coverage-icon {
    width: 32px;
    height: 32px;
    font-size: 1.125rem;
  }

  .national-network-box {
    padding: 0.875rem;
  }

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

  .review-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .review-name {
    font-size: 0.9375rem;
  }

  .review-text {
    font-size: 0.875rem;
  }

  .review-rating {
    font-size: 1rem;
  }

  .portfolio-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0 0.75rem;
  }

  .tab-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
    border-radius: 20px;
  }

  .portfolio-grid {
    padding: 0 0.75rem;
  }

  .portfolio-title {
    font-size: 1rem;
  }

  .portfolio-meta {
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  .faq-question {
    padding: 0.875rem;
    font-size: 0.9375rem;
  }

  .faq-item.active .faq-answer {
    padding: 0.875rem;
  }

  .process-step {
    padding: 1.25rem;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }

  .step-title {
    font-size: 1.05rem;
  }

  .step-description {
    font-size: 0.875rem;
  }

  .blog-meta {
    font-size: 0.75rem;
  }

  .blog-title {
    font-size: 1rem;
  }

  .hero-container {
    padding: 1.5rem 0.75rem;
  }

  .hero-heading {
    font-size: 1.75rem;
  }

  .hero-heading .highlight {
    font-size: 1.5rem;
  }

  .trust-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .feature-check {
    font-size: 0.875rem;
    gap: 0.5rem;
  }

  .check-mark {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    padding: 0.875rem 1rem;
  }

  .hero-badges-text {
    font-size: 0.8rem;
  }

  .visual-image {
    height: 250px;
  }

  .stat-item {
    padding: 0.75rem 0.5rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }
}

@media (max-width: 375px) {
  .header-content {
    padding: 0.5rem;
  }

  .brand-text h2 {
    font-size: 1rem;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
    border-radius: 8px;
  }

  .zones-section {
    padding: 2rem 0;
  }

  .zones-container {
    padding: 0 0.5rem;
  }

  .zones-map {
    height: 250px;
    padding: 0.5rem;
    border-radius: 12px;
  }

  .zones-main-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .zones-description {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .coverage-highlights {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .coverage-item {
    gap: 0.5rem;
  }

  .coverage-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    border-radius: 6px;
  }

  .coverage-item h4 {
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
  }

  .coverage-item p {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .national-network-box {
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
  }

  .network-title {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }

  .network-text {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .reviews-section {
    padding: 2rem 0;
  }

  .reviews-container {
    padding: 0 0.5rem;
  }

  .reviews-grid {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .review-card {
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .review-card:hover {
    transform: translateY(-2px);
  }

  .review-header {
    margin-bottom: 0.5rem;
    gap: 0.5rem;
  }

  .review-name {
    font-size: 0.875rem;
    font-weight: 600;
  }

  .review-service {
    font-size: 0.75rem;
  }

  .review-rating {
    font-size: 0.875rem;
  }

  .review-text {
    font-size: 0.8125rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  .view-all-reviews-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 8px;
  }

  .reviews-cta-container {
    margin-top: 1.5rem;
  }

  .portfolio-section {
    padding: 2rem 0;
  }

  .portfolio-tabs {
    gap: 0.25rem;
    padding: 0 0.5rem;
    flex-wrap: nowrap;
    justify-content: start;
  }

  .tab-btn {
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
    min-width: auto;
  }

  .portfolio-grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .portfolio-item {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .portfolio-info {
    padding: 1rem;
  }

  .portfolio-title {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }

  .portfolio-description {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .image-label {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .faq-section {
    padding: 2rem 0;
  }

  .faq-container {
    padding: 0 0.5rem;
  }

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

  .faq-arrow {
    font-size: 0.875rem;
  }

  .faq-item.active .faq-answer {
    padding: 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .process-section {
    padding: 2rem 0;
  }

  .process-container {
    padding: 0 0.5rem;
  }

  .process-timeline {
    gap: 1rem;
  }

  .process-step {
    padding: 1rem;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .step-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  .step-description {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--text-color);
  }

  .blog-section {
    padding: 2rem 0;
  }

  .blog-grid {
    gap: 1.25rem;
    padding: 0 0.5rem;
  }

  .blog-card {
    border-radius: 10px;
  }

  .blog-image {
    height: 180px;
  }

  .blog-content {
    padding: 1rem;
  }

  .blog-meta {
    font-size: 0.7rem;
    gap: 0.5rem;
  }

  .blog-title {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }

  .blog-excerpt {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

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

  .portfolio-cta {
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
  }

  .portfolio-cta-text {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

  .portfolio-cta-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(230, 126, 34, 0.2);
  }

  .portfolio-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
  }

  .hero-container {
    padding: 1rem 0.5rem;
  }

  .hero-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-heading .highlight {
    font-size: 1.25rem;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .feature-check {
    font-size: 0.8125rem;
  }

  .visual-stats {
    gap: 0.5rem;
  }

  .stat-item {
    padding: 0.5rem;
  }

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

/* Hero Section Moderne */
.hero-emergency {
  background: var(--danger-color);
  color: white;
  padding: 0.75rem 0;
  margin-top: 93px;
  /* Отступ для фиксированного хедера */
  animation: emergencyPulse 2s ease-in-out infinite;
  position: relative;
  z-index: 10;
}

@keyframes emergencyPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.9;
  }
}

.emergency-strip {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 0 20px;
}

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

.hero-section {
  min-height: 100vh;
  background: linear-gradient(165deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

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

.hero-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.hero-heading .highlight {
  color: var(--secondary-color);
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.check-mark {
  width: 24px;
  height: 24px;
  background: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  background: var(--gradient-accent);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(230, 126, 34, 0.4);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.hero-badges-text {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-visual {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

.visual-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.visual-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

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

.stat-item {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-color);
  margin-top: 0.25rem;
}

/* Services Grid Moderne */
.services-modern {
  padding: 5rem 0;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-color);
  line-height: 1.8;
}

.services-categories {
  margin-top: 3rem;
}

.service-category {
  margin-bottom: 3rem;
}

.category-title {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

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

.service-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(44, 62, 80, 0.1);
  cursor: pointer;
}

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

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 126, 34, 0.1);
  color: var(--secondary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.service-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-color);
}

.service-desc {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.price-label {
  color: var(--text-color);
  font-size: 0.875rem;
}

.price-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
}

/* Pourquoi Nous Section */
.why-us-section {
  padding: 5rem 0;
  background: white;
}

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

.why-card {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.why-description {
  color: var(--text-color);
  line-height: 1.6;
}

/* Tarifs Section */
.pricing-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-container {
  margin-top: 3rem;
}

.pricing-table {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-header {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  text-align: center;
}

.pricing-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  opacity: 0.9;
  font-size: 1rem;
}

.pricing-body {
  padding: 2rem;
}

.price-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
  transition: all 0.3s ease;
}

.price-row:hover {
  background: rgba(230, 126, 34, 0.05);
  transform: translateX(5px);
}

.price-row:last-child {
  border-bottom: none;
}

.price-service {
  font-weight: 500;
  color: var(--dark-color);
}

.price-time {
  color: var(--text-color);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: right;
}

.pricing-note {
  background: rgba(230, 126, 34, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
  text-align: center;
}

.pricing-note-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-note-text {
  color: var(--text-color);
  font-size: 0.9375rem;
}

/* Zones Section */
.zones-section {
  padding: 5rem 0;
  background: white;
}

.zones-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.zones-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.zones-map {
  position: relative;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 2rem;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.zones-info {
  padding: 0 1rem;
}

.coverage-description {
  color: var(--text-color);
}

.coverage-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.coverage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.coverage-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coverage-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.coverage-item p {
  font-size: 0.9375rem;
  color: var(--text-color);
  margin: 0;
}

.zones-main-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.zones-description {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.national-network-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 12px;
}

.network-title {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.network-text {
  margin: 0;
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.reviews-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.review-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

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

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-color);
}

.review-service {
  font-size: 0.875rem;
  color: var(--text-color);
  opacity: 0.8;
}

.review-rating {
  color: var(--warning-color);
  font-size: 1.25rem;
}

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

.review-date {
  font-size: 0.875rem;
  color: var(--text-color);
  opacity: 0.6;
}

.view-all-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.view-all-reviews-btn:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-list {
  margin-top: 3rem;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(44, 62, 80, 0.05);
}

.faq-arrow {
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

/* Portfolio Section */
.portfolio-section {
  padding: 100px 0;
  background: white;
}

.portfolio-container {
  margin-top: 3rem;
}

/* Portfolio Tabs */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid #e0e6ed;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-btn:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.tab-btn.active {
  background: var(--gradient-accent);
  color: white;
  border-color: transparent;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.portfolio-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(44, 62, 80, 0.1);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(44, 62, 80, 0.15);
}

/* Before/After Container */
.before-after-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.before-after-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  background: #f8f9fa;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.before-after-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(135deg, #E67E22, #F39C12);
  z-index: 2;
  transform: translateX(-50%);
}

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

.before-image img,
.after-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.portfolio-item:hover .before-image img,
.portfolio-item:hover .after-image img {
  transform: scale(1.05);
}

.image-label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50px;
  letter-spacing: 1px;
  z-index: 3;
}

.before-image .image-label {
  left: 20px;
  background: rgba(231, 76, 60, 0.9);
}

.after-image .image-label {
  right: 20px;
  background: rgba(39, 174, 96, 0.9);
}

/* Portfolio Info */
.portfolio-info {
  padding: 2rem;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.portfolio-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--text-color);
}

.portfolio-location,
.portfolio-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.portfolio-description {
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 6px 14px;
  background: rgba(230, 126, 34, 0.1);
  color: var(--secondary-color);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Portfolio CTA */
.portfolio-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  margin-top: 3rem;
}

.portfolio-cta-text {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.portfolio-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--gradient-accent);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.25);
}

.portfolio-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.4);
}


.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.portfolio-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.9) 0%, transparent 100%);
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.portfolio-overlay p {
  font-size: 0.9375rem;
  opacity: 0.9;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

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

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--text-color);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: var(--gradient-primary);
  color: white;
}

.contact-container {
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 3rem;
}

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

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 3rem;
}

.contact-method {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info {
  font-size: 1rem;
  opacity: 0.9;
  color: inherit;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

a.contact-info:hover {
  color: var(--secondary-color);
  transform: scale(1.05);
  opacity: 1;
}

/* Fixed Call Button */
.fixed-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: callPulse 2s infinite;
}

@keyframes callPulse {
  0% {
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.4);
  }

  50% {
    box-shadow: 0 8px 32px rgba(230, 126, 34, 0.6);
  }

  100% {
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.4);
  }
}

.fixed-call-btn:hover {
  transform: scale(1.1);
  background: var(--gradient-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    padding: 1rem;
  }

  .brand-text h2 {
    font-size: 1.25rem;
  }

  .brand-text p {
    display: none;
  }

  .blog-btn span {
    display: none;
  }

  .emergency-strip {
    gap: 5rem;
    font-size: 0.875rem;
  }

  .emergency-badge span:last-child {
    display: none;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .hero-heading {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-features {
    gap: 0.75rem;
  }

  .feature-check {
    font-size: 0.9375rem;
  }

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

  .cta-primary,
  .cta-secondary {
    flex: 1 1 45%;
    min-width: 140px;
    text-align: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .visual-card {
    padding: 1rem;
  }

  .visual-image {
    height: 300px;
  }

  .visual-stats {
    gap: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

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

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

  .zones-section {
    padding: 3rem 0;
  }

  .zones-container {
    padding: 0 1rem;
  }

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

  .zones-map {
    height: 350px;
    padding: 1rem;
  }

  .zones-info {
    padding: 0;
  }

  .zones-main-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .zones-description {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }

  .coverage-highlights {
    gap: 1rem;
  }

  .coverage-item {
    gap: 0.75rem;
  }

  .coverage-icon {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .coverage-item h4 {
    font-size: 1rem;
  }

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

  .national-network-box {
    padding: 1rem;
    margin-top: 1.5rem;
  }

  .network-title {
    font-size: 0.9375rem;
  }

  .network-text {
    font-size: 0.875rem;
  }

  .reviews-section {
    padding: 3rem 0;
  }

  .reviews-container {
    padding: 0 1rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .review-header {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .review-name {
    font-size: 1rem;
  }

  .review-service {
    font-size: 0.8125rem;
  }

  .review-rating {
    font-size: 1.125rem;
  }

  .review-text {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .view-all-reviews-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  .reviews-cta-container {
    margin-top: 2rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

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

  .portfolio-section {
    padding: 3rem 0;
  }

  .portfolio-tabs {
    gap: 0.5rem;
    padding: 0 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .portfolio-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .portfolio-item {
    border-radius: 12px;
  }

  .before-after-slider {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .before-after-slider::after {
    display: none;
  }

  .portfolio-info {
    padding: 1.5rem;
  }

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

  .portfolio-description {
    font-size: 0.875rem;
  }

  .faq-section {
    padding: 3rem 0;
  }

  .faq-container {
    padding: 0 1rem;
  }

  .faq-item {
    margin-bottom: 0.75rem;
  }

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

  .faq-answer {
    padding: 0 1rem;
    font-size: 0.875rem;
  }

  .process-section {
    padding: 3rem 0;
  }

  .process-container {
    padding: 0 1rem;
  }

  .process-timeline {
    gap: 1.5rem;
  }

  .process-step {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

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

  .step-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  .step-description {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .blog-section {
    padding: 3rem 0;
  }

  .blog-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .blog-card {
    border-radius: 12px;
  }

  .blog-content {
    padding: 1.25rem;
  }

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

  .blog-excerpt {
    font-size: 0.875rem;
  }

  .before-image,
  .after-image {
    position: relative;
  }

  .before-image::after,
  .after-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E67E22, #F39C12);
  }

  .portfolio-tabs {
    gap: 0.5rem;
  }

  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .portfolio-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(44, 62, 80, 0.8) 0%, transparent 100%);
  }

  .pricing-body {
    padding: 1rem;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: left;
  }

  .price-amount {
    text-align: left;
    margin-top: 0.5rem;
  }

  .fixed-call-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.75rem;
  }

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

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

/* Blog Section */
.blog-section {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
}

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

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(44, 62, 80, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.2);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-accent);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.4;
  min-height: 3.5rem;
}

.blog-excerpt {
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
}

.blog-link:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

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

.blog-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
}

.blog-view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

/* Blog Section Responsive */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-title {
    font-size: 1.125rem;
    min-height: auto;
  }

  .blog-meta {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 60px 0;
  }

  .blog-card {
    margin: 0 -5px;
  }

  .blog-content {
    padding: 1.25rem;
  }
}

/* Form Section */
.form-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.form-container {
  margin-top: 3rem;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(230, 126, 34, 0.1);
  color: var(--secondary-color);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.form-subtitle {
  font-size: 1.125rem;
  color: var(--text-color);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E67E22, #F39C12, #E67E22);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.form-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
  border: 1px solid rgba(230, 126, 34, 0.1);
}

.form-content h2 {
  color: #2C3E50;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-subtitle {
  color: #7f8c8d;
  font-size: 1rem;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  color: #2C3E50;
  font-size: 0.875rem;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  padding: 12px 15px;
  border: 2px solid #e0e6ed;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: #E67E22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-control:hover {
  border-color: #cbd5e0;
}

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

.form-submit-wrapper {
  margin-top: 30px;
}

.submit-button {
  background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
  background: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
}

.submit-button:active {
  transform: translateY(-1px);
}

.form-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
  border-left: 4px solid #E67E22;
}

.info-card h3 {
  color: #2C3E50;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 12px 0;
  color: #5a6c7d;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  border-bottom: 1px solid #f1f4f8;
  transition: all 0.3s ease;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list li:hover {
  color: #2C3E50;
  padding-left: 10px;
}

.info-list li::before {
  content: '✓';
  color: #27AE60;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.urgent-call-card {
  background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
  color: white;
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgent-call-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
  animation: pulse 3s infinite;
}

.urgent-call-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #F39C12;
  position: relative;
}

.urgent-call-card p {
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
}

.urgent-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E67E22;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.urgent-phone:hover {
  background: #F39C12;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.urgent-phone svg {
  width: 24px;
  height: 24px;
  animation: ring 1s ease-in-out infinite;
}

@keyframes ring {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10%,
  30% {
    transform: rotate(-10deg);
  }

  20%,
  40% {
    transform: rotate(10deg);
  }
}

.msg-success,
.msg-error {
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 1rem;
  display: none;
  animation: slideIn 0.3s ease;
}

/* Hide error messages by default */
.error-message {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
}

.error-message.show {
  display: block;
}

/* Hide success message by default */
.success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
}

.success-message.show {
  display: block;
  animation: slideIn 0.3s ease;
}

.msg-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.msg-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

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

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

/* Form Section Responsive */
@media (max-width: 1024px) {
  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .form-content {
    padding: 30px;
  }
}

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-content {
    padding: 25px 20px;
  }

  .form-title {
    font-size: 2rem;
  }

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

  .form-badge {
    font-size: 0.8125rem;
  }

  .info-card {
    padding: 20px;
  }

  .urgent-call-card {
    padding: 25px;
  }

  .urgent-phone {
    font-size: 1.25rem;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .form-section {
    padding: 40px 0;
  }

  .form-content {
    border-radius: 10px;
    padding: 20px 15px;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .form-subtitle {
    font-size: 0.875rem;
  }

  .form-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .submit-button {
    width: 100%;
    padding: 12px 30px;
    font-size: 1rem;
  }

  .urgent-phone {
    font-size: 1.125rem;
    padding: 10px 20px;
  }

  .info-list li {
    font-size: 0.875rem;
  }
}