/* ===========================
   KKKEYS.ES — CERRAJERO BENIDORM
   Global CSS — mobile-first
   =========================== */

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

:root {
  --blue:        #046bd2;
  --blue-dark:   #045cb4;
  --navy:        #1e293b;
  --slate:       #334155;
  --amber:       #fca80e;
  --amber-dark:  #e09500;
  --green-wa:    #25D366;
  --white:       #ffffff;
  --light-bg:    #F0F5FA;
  --gray-light:  #D1D5DB;
  --gray-border: #e2e8f0;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --dark:        #0d1b2e;
  --bg-alt:      #f8fafc;
  --radius:      8px;
  --shadow:      0 2px 12px rgba(0,0,0,.10);
  --shadow-md:   0 8px 24px rgba(0,0,0,.15);
  --container:   1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Barlow Semi Condensed', 'Roboto', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* === HEADER === */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}

.logo {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo span { color: var(--amber); }
.logo img { height: 42px; width: auto; display: block; }

/* Desktop nav */
#main-nav { display: none; flex: 1; min-width: 0; overflow: hidden; }

#main-nav ul {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: nowrap;
}
#main-nav a {
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  padding: 5px 8px;
  border-radius: 5px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
#main-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
#main-nav .lang-link { background: rgba(255,255,255,.08); border-radius: 5px; padding: 5px 7px; font-size: .78rem; display: inline-flex; align-items: center; gap: 4px; }
#main-nav .lang-link:hover { background: rgba(255,255,255,.18); }

/* Language switcher dropdown */
.lang-switcher {
  display: none; /* shown at 1024px+ */
  position: relative;
  flex-shrink: 0;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.08);
  border: none;
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  padding: 5px 8px;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background .15s;
}
.lang-btn:hover { background: rgba(255,255,255,.18); }
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  min-width: 170px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  list-style: none;
  padding: 6px 0;
}
.lang-switcher.open .lang-menu { display: block; }
.lang-menu li { list-style: none; }
.lang-menu a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  white-space: nowrap;
  transition: background .15s;
}
.lang-menu a:hover { background: rgba(255,255,255,.08); color: #fff; }
.lang-menu a.lang-active { color: var(--amber); font-weight: 600; }

/* Mobile lang separator */
#mobile-menu .mobile-lang-separator {
  padding: 6px 24px 4px;
  color: rgba(255,255,255,.3);
  font-size: .75rem;
  pointer-events: none;
  border-bottom: none;
}

/* Header phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-phone a {
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
  padding: 8px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background .15s;
}
.header-phone a:hover { background: var(--amber-dark); }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
}
#mobile-menu.open { display: block; }

#mobile-menu ul {
  padding: 12px 0;
}
#mobile-menu li a {
  display: block;
  color: rgba(255,255,255,.88);
  padding: 10px 24px;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s;
}
#mobile-menu li a:hover { background: rgba(255,255,255,.08); }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2340 100%);
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(4,107,210,.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(252,168,14,.15);
  border: 1px solid rgba(252,168,14,.4);
  color: var(--amber);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background .15s, transform .1s;
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.25);
  transition: background .15s;
}
.btn-secondary:hover { background: rgba(255,255,255,.2); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
}
.trust-item .icon { font-size: 1.1rem; }

/* === SECTION BASE === */
.section { padding: 64px 0; }
.section-alt { background: var(--light-bg); }

.section-title {
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* === SERVICE CARDS GRID === */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }

.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 16px; }
.card-price {
  font-weight: 700;
  color: var(--blue);
  font-size: .95rem;
  margin-bottom: 14px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: .9rem;
  transition: gap .15s;
}
.card-link:hover { gap: 10px; }

/* === PROCESS STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h3 { margin-bottom: 6px; }
.step-body p { color: var(--text-muted); font-size: .9rem; }

/* === AREAS / ZONES === */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate);
}

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

.faq-item {
  border-bottom: 1px solid var(--gray-border);
}
.faq-item:first-child { border-top: 1px solid var(--gray-border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  gap: 12px;
}
.faq-question .faq-icon {
  min-width: 22px;
  font-size: 1.2rem;
  color: var(--blue);
  transition: transform .25s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 16px;
}
.faq-answer p { color: var(--text-muted); font-size: .95rem; }

/* === CTA SECTION === */
.cta-section {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.78); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background .15s;
}
.btn-wa:hover { background: #1db954; }

/* === BREADCRUMB === */
.breadcrumb {
  padding: 12px 0;
  font-size: .82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--gray-border);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px; list-style: none; }
.breadcrumb li { display: flex; align-items: center; gap: 4px; }
.breadcrumb li + li::before { content: '›'; }
.breadcrumb a { color: var(--blue); }
.breadcrumb [aria-current] { color: var(--text-muted); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2340 100%);
  color: #fff;
  padding: 52px 0 44px;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 560px; }
.page-hero .hero-cta { margin-top: 28px; justify-content: flex-start; }

/* === RELATED SERVICES === */
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 500;
  transition: border-color .15s, background .15s;
}
.related-link:hover { border-color: var(--blue); background: var(--light-bg); }

/* === FOOTER === */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  color: rgba(255,255,255,.72);
  font-size: .875rem;
  transition: color .15s;
}
.footer-col a:hover { color: var(--amber); }
.footer-col p { font-size: .875rem; line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* === FLOATING WHATSAPP === */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 200;
  background: var(--green-wa);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  font-size: 1.6rem;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.5); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

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

/* 640px+ */
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 768px+ */
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .hero-trust { gap: 36px; }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .related-grid { grid-template-columns: repeat(3, 1fr); }

  /* Show desktop nav + lang switcher, hide burger */
  #main-nav { display: flex; align-items: center; }
  .lang-switcher { display: flex; align-items: center; }
  .burger { display: none; }
  #mobile-menu { display: none !important; }

  .header-inner { gap: 16px; }
}

/* === UTILITY === */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* === NOTICE / TIP BOXES === */
.notice-box {
  background: #fff8e1;
  border-left: 4px solid var(--amber);
  padding: 20px 24px;
  border-radius: var(--radius);
  max-width: 760px;
  margin: 0 auto 32px;
}
.notice-box p { margin: 0; font-weight: 500; }
.tip-box {
  background: #e8f4fd;
  border-left: 4px solid var(--blue);
  padding: 20px 24px;
  border-radius: var(--radius);
  max-width: 760px;
  margin: 0 auto;
}
.tip-box p { margin: 0; font-weight: 500; }
.price-note {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: .9rem;
}
.price-grid { max-width: 760px; margin: 0 auto; }
.card-center { text-align: center; }
.card-icon-lg { font-size: 2rem; margin-bottom: 8px; }
.areas-note {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: .9rem;
}
.areas-note a { color: var(--blue); }
.section-note {
  text-align: center;
  margin-top: 28px;
  padding: 16px;
  background: var(--light-bg);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: .95rem;
}
.info-note-box {
  text-align: center;
  margin-top: 28px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: var(--radius);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.info-note-box p { margin: 0; color: var(--text-muted); font-size: .95rem; }
.info-note-box .info-note-title { color: var(--text); font-weight: 600; font-size: 1rem; margin-bottom: 12px; }
.step-link { color: var(--blue); }
.contact-cta-col {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}
.btn-block { width: 100%; text-align: center; font-size: 1.2rem; padding: 18px 24px; }
.info-grid-wrap { max-width: 900px; margin: 0 auto; }
/* === BRAND LOGOS GRID === */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 80px;
}
.brand-item img {
  width: 60px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter .2s;
}
.brand-item:hover img { filter: grayscale(0%) opacity(1); }
.brand-item span {
  font-size: .7rem;
  color: var(--text-muted);
  text-align: center;
}

/* === PHOTO GALLERY === */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
@media (min-width: 640px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .photo-grid img { height: 260px; }
}

/* Footer logo spacing — avoids inline styles */
.footer-col .logo { margin-bottom: 12px; }
.footer-col .logo span { color: var(--amber); }
.footer-col .footer-contact-p { margin-top: 12px; }

/* === REVIEWS === */
.reviews-header { text-align: center; margin-bottom: 40px; }
.reviews-stars { color: var(--amber); font-size: 1.8rem; margin-bottom: 8px; }
.reviews-count { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.reviews-header a { color: var(--amber); font-size: 0.9rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.review-card-stars { color: var(--amber); font-size: 1.1rem; margin-bottom: 8px; }
.review-card-author { font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.review-card-meta { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 12px; }
.review-card-text { color: var(--text); font-size: 0.95rem; line-height: 1.6; }
.review-card-link { display: inline-block; margin-top: 12px; font-size: 0.8rem; color: var(--text-muted); text-decoration: underline; }
.review-card-link:hover { color: var(--amber); }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* === VIDEO === */
.video-wrap { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.video-embed { flex: 0 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); width: 280px; }
.video-embed iframe { display: block; width: 100%; aspect-ratio: 9/16; border: none; }
.video-text { flex: 1; min-width: 260px; }
.video-text .video-badge { display: inline-block; background: #ff0000; color: white; font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 4px; margin-bottom: 12px; letter-spacing: .04em; }
.video-text h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.video-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
@media (max-width: 700px) {
  .video-wrap { flex-direction: column; align-items: center; }
  .video-embed { width: 100%; max-width: 340px; }
}

/* === IGNITION SECTION === */
.ignition-section { background: var(--dark); color: white; }
.ignition-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.ignition-text h2 { color: white; font-size: 1.6rem; margin-bottom: 20px; }
.ignition-text p { color: rgba(255,255,255,0.75); margin-bottom: 16px; line-height: 1.7; }
.ignition-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; justify-content: center; }
.ignition-tag { background: rgba(242,167,74,0.15); color: var(--amber); border: 1px solid rgba(242,167,74,0.3); border-radius: 20px; padding: 4px 12px; font-size: 0.85rem; }

/* === MAP === */
.map-embed { width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 24px; }
.map-embed iframe { display: block; width: 100%; height: 360px; border: none; }

/* === FOOTER SOCIAL === */
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.social-link { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.65); font-size: 0.8rem; padding: 8px 12px; border-radius: 6px; transition: all 0.2s; background: rgba(255,255,255,0.05); text-decoration: none; }
.social-link:hover { color: white; background: rgba(255,255,255,0.12); }
.social-link svg { fill: currentColor; flex-shrink: 0; }

/* === CONTACT FORM === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-info-item { display: flex; gap: 12px; font-size: 0.95rem; }
.contact-form-box { background: var(--bg-alt); border-radius: var(--radius); padding: 32px; }
.contact-form-box h3 { margin-bottom: 6px; font-size: 1.2rem; }
.form-sub { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.875rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: var(--font); transition: border-color 0.2s, box-shadow 0.2s; background: white; color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(242,167,74,0.15); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 20px; color: #1a7a3a; background: #e8f5e9; border-radius: var(--radius); margin-top: 16px; font-weight: 600; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* === ZONES LAYOUT === */
.zones-inner { display: flex; gap: 48px; align-items: flex-start; flex-wrap: wrap; }
.zones-list { flex: 1; min-width: 260px; }
.zones-note { color: var(--text-muted); margin: 16px 0; font-size: 0.95rem; }


/* === SERVICE CARDS === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; text-decoration: none; color: var(--text); border: 1px solid var(--border); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-icon { font-size: 2rem; margin-bottom: 10px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.service-card p { color: var(--text-muted); font-size: 0.9rem; flex: 1; margin-bottom: 16px; line-height: 1.6; }
.card-link { color: var(--amber); font-weight: 600; font-size: 0.875rem; margin-top: auto; }
@media (max-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

/* === PROCESS GRID === */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.process-step { padding: 24px 16px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.process-step-icon { font-size: 2.4rem; margin-bottom: 12px; line-height: 1; }
.process-number { width: 28px; height: 28px; border-radius: 50%; background: var(--amber); color: var(--dark); font-weight: 800; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.process-step h3 { font-weight: 700; margin-bottom: 8px; font-size: 1rem; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }


/* === CTA BANNER === */
.cta-banner { background: var(--dark); color: white; text-align: center; padding: 72px 0; }
.cta-banner h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1rem; }
.cta-phone { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--amber); display: block; margin-bottom: 28px; text-decoration: none; line-height: 1; }
.cta-phone:hover { color: white; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER LOGO & CONTACT === */
.footer-logo { color: white; font-weight: 800; font-size: 1.3rem; margin-bottom: 12px; display: block; }
.footer-logo span { color: var(--amber); }
.footer-contact a { color: rgba(255,255,255,0.7); font-size: 0.875rem; display: block; margin-bottom: 6px; text-decoration: none; }
.footer-contact a:hover { color: var(--amber); }
