/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* === VARIABLES === */
:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --primary-glow: rgba(230, 57, 70, 0.25);
  --secondary: #1d3557;
  --secondary-light: #264673;
  --accent: #457b9d;
  --light: #f1faee;
  --dark: #0d1b2a;
  --gray: #6c757d;
  --gray-light: #f8f9fa;
  --gray-medium: #e9ecef;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-color: 0 8px 30px rgba(230, 57, 70, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === UTILITY === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--gray-light); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

/* === TYPOGRAPHY === */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* === HEADER === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--max-width); margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 1.15rem; color: var(--secondary);
  transition: var(--transition);
}
.logo:hover { opacity: 0.85; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem; font-weight: 800;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}
.nav { display: flex; align-items: center; gap: 24px; margin-top: 4px; }
.nav a {
  font-weight: 500; font-size: 0.93rem; color: var(--secondary);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { font-weight: 700; font-size: 1.05rem; color: var(--secondary); }
.header-phone span { display: block; font-size: 0.75rem; font-weight: 400; color: var(--gray); }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--secondary); }
@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column; padding: 24px; box-shadow: var(--shadow-md); gap: 16px;
    border-bottom: 1px solid var(--gray-medium);
  }
  .nav.active { display: flex; }
  .nav a::after { display: none; }
  .menu-toggle { display: block; }
  .header-phone { display: none; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px;
  border-radius: 50px; font-weight: 600; font-size: 1rem;
  cursor: pointer; border: none; transition: var(--transition);
  position: relative; overflow: hidden;
  letter-spacing: 0.01em;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.35);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(29, 53, 87, 0.25);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(29, 53, 87, 0.35);
}
.btn-outline {
  background: transparent; border: 2px solid var(--primary); color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.25);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 18px 38px; font-size: 1.1rem; }

/* === HERO === */
.hero {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, var(--secondary) 0%, #122740 50%, var(--dark) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(230, 57, 70, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(69, 123, 157, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(230,57,70,0.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(-30px, 20px) scale(1.1); opacity: 1; }
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(230,57,70,0.12); color: #ff6b7a;
  padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(230,57,70,0.2);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease forwards;
}
.hero h1 {
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  margin-bottom: 36px; max-width: 500px; line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}
.hero-stats {
  display: flex; gap: 48px; margin-top: 48px;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #ff6b7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hero-image { display: flex; justify-content: center; }
.hero-image img {
  border-radius: var(--radius) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
  border: 3px solid rgba(255,255,255,0.1) !important;
}
.hero-image-placeholder {
  width: 100%; max-width: 450px; aspect-ratio: 4/3;
  background: rgba(255,255,255,0.03); border-radius: var(--radius);
  border: 2px dashed rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .hero { padding: 130px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 30px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; gap: 32px; }
  .hero-image {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  /* QR code block smaller on mobile */
  .hero-image > div[style*="backdrop-filter"] {
    transform: scale(0.85);
    transform-origin: center;
  }
  /* Chat area full width on mobile */
  #hero-chat-area {
    max-width: 100% !important;
    width: 100% !important;
  }
  /* Worker SVG smaller on mobile */
  #hero-worker {
    height: 80px !important;
  }
  #hero-worker svg {
    width: 40px;
    height: 70px;
  }
}

/* === TRUST BAR === */
.trust-bar {
  background: linear-gradient(180deg, #fff 0%, var(--gray-light) 100%);
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
}
.trust-bar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: trustBarShine 6s ease infinite;
}
@keyframes trustBarShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.trust-bar-inner {
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600; color: var(--secondary);
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}
.trust-item:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}
.trust-icon { font-size: 1.2rem; }

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff; border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  font-size: 2.8rem; margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-card-icon { transform: scale(1.1); }
.service-card h3 a { transition: var(--transition); }
.service-card h3 a:hover { color: var(--primary); }
.service-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.7; flex: 1; }
.service-price {
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-price span {
  font-size: 0.85rem; font-weight: 500;
  -webkit-text-fill-color: var(--gray);
}

/* === ADVANTAGES === */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.advantage-card {
  text-align: center; padding: 40px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
  background: rgba(255,255,255,0.6);
  border: 1px solid transparent;
}
.advantage-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.04);
}
.advantage-icon {
  font-size: 2.8rem; margin-bottom: 20px;
  display: inline-block;
  transition: var(--transition);
}
.advantage-card:hover .advantage-icon { transform: scale(1.15) rotate(-5deg); }
.advantage-card h3 { color: var(--secondary); }
.advantage-card p { color: var(--gray); font-size: 0.93rem; line-height: 1.7; }

/* === PRICE TABLE === */
.price-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.price-table th {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  color: #fff; padding: 18px 24px; text-align: left;
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.price-table td {
  padding: 16px 24px; border-bottom: 1px solid var(--gray-medium);
  transition: var(--transition);
}
.price-table tbody tr {
  transition: var(--transition);
}
.price-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(230, 57, 70, 0.03) 0%, rgba(69, 123, 157, 0.03) 100%);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table .price-cell {
  font-weight: 700; color: var(--primary); font-size: 1.1rem; white-space: nowrap;
}
.price-table td a {
  color: var(--secondary);
  transition: var(--transition);
  font-weight: 500;
}
.price-table td a:hover { color: var(--primary); }

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.review-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: 16px; right: 24px;
  font-size: 4rem; font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-stars { color: #ffc107; font-size: 1.15rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  color: #4a5568; font-size: 1rem; font-style: italic;
  margin-bottom: 20px; line-height: 1.8;
}
.review-author { font-weight: 700; color: var(--secondary); font-size: 1rem; }
.review-date {
  font-size: 0.82rem; color: var(--gray); margin-top: 4px;
  display: flex; align-items: center; gap: 6px;
}
.review-date::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #25d366;
}

/* === DISTRICTS === */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.district-link {
  display: block; padding: 16px 20px;
  background: #fff; border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
}
.district-link:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.25);
}

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; cursor: pointer;
  font-weight: 600; font-size: 1.05rem;
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--primary); }
.faq-question::after {
  content: '+'; font-size: 1.5rem; font-weight: 300;
  transition: var(--transition);
  color: var(--primary);
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.06);
}
.faq-item.active .faq-question::after {
  content: '-';
  background: rgba(230, 57, 70, 0.12);
}
.faq-answer { padding: 0 28px 24px; color: var(--gray); line-height: 1.8; display: none; }
.faq-item.active .faq-answer { display: block; }

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #b91c2e 50%, var(--primary-dark) 100%);
  color: #fff; text-align: center; padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.4rem); }
.cta-section p {
  color: rgba(255,255,255,0.9); margin-bottom: 36px;
  font-size: 1.15rem; max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; }
.cta-phone a {
  color: #fff;
  transition: var(--transition);
}
.cta-phone a:hover { opacity: 0.85; }

/* === FOOTER === */
.footer {
  background: linear-gradient(180deg, var(--dark) 0%, #060e18 100%);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer h4 {
  color: #fff; margin-bottom: 20px; font-size: 1.05rem;
  position: relative; padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
}
.footer-about { font-size: 0.9rem; line-height: 1.8; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  font-size: 0.9rem; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer ul li a:hover { color: var(--primary); transform: translateX(3px); }
.footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px; font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; flex-wrap: wrap; gap: 12px;
}
.footer-legal a { margin-left: 20px; transition: var(--transition); }
.footer-legal a:hover { color: var(--primary); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* === BREADCRUMB === */
.breadcrumb { padding: 120px 0 20px; background: var(--gray-light); }
.breadcrumb-list {
  display: flex; gap: 8px; font-size: 0.9rem;
  color: var(--gray); flex-wrap: wrap;
}
.breadcrumb-list a { color: var(--accent); transition: var(--transition); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list li::after { content: '/'; margin-left: 8px; }
.breadcrumb-list li:last-child::after { content: ''; }

/* === SERVICE PAGE === */
.service-hero {
  padding: 150px 0 70px;
  background: linear-gradient(135deg, var(--secondary), #122740, var(--dark));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 30%, rgba(230,57,70,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.service-hero h1 { margin-bottom: 16px; }
.service-hero-price {
  font-size: 2.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #ff6b7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.service-hero-price span { font-size: 1rem; -webkit-text-fill-color: rgba(255,255,255,0.6); }
.service-content { padding: 60px 0; }
.service-content h2 { margin-top: 40px; }
.service-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 24px 0;
}
.service-feature {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--gray-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-feature:hover {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
}
.service-feature-icon { color: #28a745; font-size: 1.2rem; }
@media (max-width: 600px) {
  .service-features { grid-template-columns: 1fr; }
}

/* === GALLERY (index page inline) === */
.section img[loading="lazy"] {
  transition: var(--transition);
  border-radius: var(--radius) !important;
}
.section img[loading="lazy"]:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

/* === GALLERY CTA BAR === */
.gallery-cta {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.gallery-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(230,57,70,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.gallery-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.gallery-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.gallery-cta-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.gallery-cta-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.gallery-cta-role {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.gallery-cta-center {
  text-align: center;
  flex: 1;
}
.gallery-cta-phone-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.gallery-cta-phone {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: var(--transition);
  display: inline-block;
}
.gallery-cta-phone:hover {
  color: var(--primary);
  transform: scale(1.05);
}
.gallery-cta-right {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 900px) {
  .gallery-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .gallery-cta-left {
    justify-content: center;
  }
  .gallery-cta-right {
    justify-content: center;
  }
  .gallery-cta-phone {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .gallery-cta-right {
    flex-direction: column;
    width: 100%;
  }
  .gallery-cta-right .btn {
    width: 100%;
    justify-content: center;
  }
}

/* === FLOATING CTA === */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px;
}
.floating-btn {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: var(--transition); border: none; cursor: pointer;
  position: relative;
}
.floating-btn::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: inherit;
  opacity: 0;
  z-index: -1;
  filter: blur(10px);
  transition: var(--transition);
}
.floating-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.floating-btn:hover::after { opacity: 0.4; }
.floating-btn-phone {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.floating-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1da851);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}
.animate {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* === SELECTION COLOR === */
::selection {
  background: rgba(230, 57, 70, 0.15);
  color: var(--secondary);
}

/* === SCROLLBAR (Webkit) === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb {
  background: var(--gray);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* === RESPONSIVE FINE-TUNING === */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .services-grid { gap: 20px; }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .trust-bar-inner { gap: 12px; }
  .trust-item { font-size: 0.82rem; padding: 6px 12px; }
  .districts-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
  .cta-section { padding: 60px 0; }
  .price-table th,
  .price-table td { padding: 12px 16px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat-num { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 16px 28px; font-size: 1rem; }
  /* QR block even smaller on very small screens */
  .hero-image > div[style*="backdrop-filter"] {
    transform: scale(0.75);
    transform-origin: center;
  }
  /* Profile image smaller */
  .hero-image > img {
    max-width: 260px !important;
  }
  /* Worker SVG even smaller */
  #hero-worker {
    height: 60px !important;
  }
  #hero-worker svg {
    width: 30px;
    height: 52px;
  }
  /* Chat messages area shorter */
  #hero-chat-messages {
    height: 180px !important;
  }
  /* Readable font sizes */
  .section-subtitle { font-size: 1rem; }
  .trust-item { font-size: 0.78rem; padding: 5px 10px; }
  .districts-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}

/* Gallery photo grid responsive */
@media (max-width: 768px) {
  #galerie .container > div[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  #galerie .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}
