/* ============================================
   ControlPlagas PR - Estilos Principales
   Control de Plagas en Puerto Real, Cádiz
   Fuente: Manrope | Mobile-First
   ============================================ */

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

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

body {
  font-family: 'Manrope', sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul, ol {
  list-style: none;
}

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

/* ---------- UTILITIES ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: #64748b;
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.bg-light {
  background: #f8fafc;
}

.bg-blue {
  background: #0284c7;
  color: #ffffff;
}

.bg-dark {
  background: #1e293b;
  color: #ffffff;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
}

.btn-primary {
  background: #ea580c;
  color: #ffffff;
}

.btn-primary:hover {
  background: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
}

.btn-secondary {
  background: #0284c7;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.btn-outline {
  background: transparent;
  color: #0284c7;
  border: 2px solid #0284c7;
}

.btn-outline:hover {
  background: #0284c7;
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: #1e293b;
}

.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ---------- HEADER / NAV ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.header-top {
  background: #1e293b;
  color: #ffffff;
  font-size: 0.85rem;
  padding: 6px 0;
}

.header-top-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.header-top a {
  color: #ffffff;
}

.header-top a:hover {
  color: #38bdf8;
}

.header-top-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.header-main {
  padding: 12px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1e293b;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: #0284c7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.1rem;
}

.logo span {
  color: #ea580c;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1e293b;
  border-radius: 6px;
  transition: all 0.3s;
}

.nav-menu a:hover {
  background: #f1f5f9;
  color: #0284c7;
}

.nav-menu a.nav-cta {
  background: #ea580c;
  color: #ffffff;
  font-weight: 600;
}

.nav-menu a.nav-cta:hover {
  background: #c2410c;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 0.7rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s;
  z-index: 100;
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: #1e293b;
}

.nav-dropdown-menu a:hover {
  background: #f1f5f9;
  color: #0284c7;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #1e293b;
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- HERO ---------- */
.hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 50%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(234, 88, 12, 0.15);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-block;
  background: rgba(234, 88, 12, 0.2);
  border: 1px solid rgba(234, 88, 12, 0.4);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fdba74;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.7;
}

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

.hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 1.2rem;
  font-weight: 700;
}

.hero-phone a {
  color: #ffffff;
}

.hero-phone a:hover {
  color: #fdba74;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
  opacity: 0.85;
}

.hero-trust svg {
  color: #ea580c;
}

/* Inner page hero */
.page-hero {
  padding: 120px 0 50px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 60%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: rgba(234, 88, 12, 0.12);
  border-radius: 50%;
  filter: blur(60px);
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 700px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 14px 0;
  font-size: 0.85rem;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumbs a {
  color: #0284c7;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: #94a3b8;
  margin: 0 8px;
}

/* ---------- STATS ---------- */
.stats-section {
  padding: 50px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0284c7;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 6px;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #0284c7;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
}

.service-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-card .price-tag {
  display: inline-block;
  background: #f0fdf4;
  color: #16a34a;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0284c7;
}

.service-link:hover {
  gap: 10px;
}

/* ---------- FEATURES / WHY US ---------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  font-size: 1.3rem;
}

.feature-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: rgba(2, 132, 199, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-phone {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-phone a {
  color: #ffffff;
}

.cta-phone a:hover {
  color: #38bdf8;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* ---------- FORM SECTION ---------- */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.contact-form-wrapper h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-form-wrapper .form-subtitle {
  color: #64748b;
  font-size: 0.92rem;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: #1e293b;
  background: #ffffff;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

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

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

.form-note {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 12px;
  text-align: center;
}

.form-privacy {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-privacy input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

/* ---------- TWO COLUMNS ---------- */
.two-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

/* ---------- INFO CARDS ---------- */
.info-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #0284c7;
}

.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1e293b;
}

.info-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* ---------- MAP ---------- */
.map-section {
  padding: 0 0 0;
}

.map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: none;
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: #0284c7;
  min-width: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 10px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.92rem;
  color: #1e293b;
}

.testimonial-location {
  font-size: 0.82rem;
  color: #94a3b8;
}

/* ---------- ZONE GRID ---------- */
.zones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.zone-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.zone-card:hover {
  border-color: #0284c7;
  transform: translateY(-2px);
}

.zone-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.zone-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 10px;
}

.zone-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.zone-link:hover {
  gap: 8px;
}

/* ---------- ABOUT / E-E-A-T ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.about-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
}

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

.team-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.team-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 12px;
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card p {
  font-size: 0.85rem;
  color: #64748b;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.value-icon {
  font-size: 1.4rem;
  min-width: 28px;
}

.value-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.value-item p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

/* ---------- CONTACT INFO ---------- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  font-size: 1.2rem;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.contact-info-item a {
  color: #0284c7;
  font-weight: 600;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

/* ---------- PRICING TABLE ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 24px;
  border: 2px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s;
}

.pricing-card.featured {
  border-color: #0284c7;
  position: relative;
}

.pricing-card.featured::before {
  content: 'Más solicitado';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ea580c;
  color: #ffffff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0284c7;
  margin-bottom: 4px;
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 16px;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 20px;
}

.pricing-card ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  padding-left: 24px;
  position: relative;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

/* ---------- PROCESS STEPS ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.process-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 14px;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}

/* ---------- CONTENT BLOCKS ---------- */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1e293b;
}

.content-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e293b;
}

.content-block p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
}

.content-block ul {
  margin: 0 0 14px 20px;
}

.content-block ul li {
  padding: 4px 0;
  font-size: 0.95rem;
  color: #475569;
  list-style: disc;
  line-height: 1.6;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #1e293b;
  color: #cbd5e1;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #334155;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #94a3b8;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: #94a3b8;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #38bdf8;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
  background: #0284c7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1rem;
}

.footer-logo span {
  color: #ea580c;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom a {
  color: #64748b;
}

.footer-bottom a:hover {
  color: #94a3b8;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 160px 0 80px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero h1 {
    font-size: 2.4rem;
  }

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

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

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

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

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

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 1024px) {
  .nav-menu {
    display: flex !important;
  }

  .hamburger {
    display: none !important;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-cols {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Mobile nav */
@media (max-width: 1023px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: #f8fafc;
    border-radius: 10px;
    margin-top: 4px;
    min-width: auto;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }

  .hamburger {
    display: flex !important;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

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

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

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .header-top-info {
    gap: 12px;
  }

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

/* ---------- PRINT ---------- */
@media print {
  .header,
  .footer,
  .cta-section,
  .contact-form-wrapper {
    display: none;
  }
}
