/* Klima Antalya - Static SEO Site v2 */
:root {
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --nav-bg: #1e3a5f;
  --nav-bg-dark: #152a45;
  --whatsapp: #25D366;
  --phone-cta: #ff6b35;
  --text: #1a1a1a;
  --text-muted: #5f6368;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --border: #e0e0e0;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  --header-h: 68px;
  --header-top-h: 36px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--nav-bg);
  color: #fff;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid var(--primary);
}

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

/* Trust strip — hidden; badges moved to header-top */
.trust-strip { display: none; }

/* Header */
.site-header {
  background: #fff;
  color: var(--text);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--border), 0 8px 24px rgba(30, 58, 95, 0.08);
}
.header-top {
  background: linear-gradient(90deg, var(--nav-bg) 0%, #243d5e 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--header-top-h);
  padding: 6px 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.header-top-inner::-webkit-scrollbar { display: none; }
.header-badges {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.bayii-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}
.bayii-badge-muted {
  background: transparent;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.75rem;
  opacity: 0.88;
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(140px, auto) 1fr auto;
  align-items: center;
  gap: 12px 20px;
  padding: 0 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: var(--header-h);
}
.brand-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
  padding: 8px 0;
}
.brand-link:hover { text-decoration: none; }
.brand-title {
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.15;
  color: var(--nav-bg);
  letter-spacing: -0.03em;
}
.brand-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  font-size: 0.875rem;
  background: var(--phone-cta);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.15s, transform 0.15s;
}
.header-phone:hover {
  text-decoration: none;
  background: #e55a28;
  transform: translateY(-1px);
}
.header-phone svg { flex-shrink: 0; width: 18px; height: 18px; }
.btn-header-quote {
  display: none;
  padding: 10px 18px;
  font-size: 0.875rem;
  min-height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.btn-header-quote:hover { text-decoration: none; background: var(--primary-dark); }

/* Nav toggle */
.nav-toggle {
  display: none;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--nav-bg);
  padding: 8px;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle-icon { display: block; }
.nav-icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-icon-close { display: block; }

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.nav-overlay:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

/* Site nav */
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  align-items: center;
  justify-content: center;
}
.site-nav > ul > li > a {
  color: var(--nav-bg);
  padding: 8px 11px;
  display: block;
  font-size: 0.875rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}
.site-nav > ul > li > a:hover { background: var(--bg-alt); text-decoration: none; color: var(--primary); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: transparent;
  border: none;
  color: var(--nav-bg);
  padding: 8px 11px;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  min-height: 40px;
  font-weight: 500;
}
.nav-dropdown-btn:hover,
.nav-dropdown:focus-within > .nav-dropdown-btn { background: var(--bg-alt); color: var(--primary); }
.nav-caret { font-size: 0.65rem; opacity: 0.7; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-group-label {
  display: block;
  padding: 8px 16px 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.nav-dropdown-menu a {
  color: var(--text);
  padding: 10px 16px;
  font-size: 0.875rem;
  display: block;
  text-decoration: none;
}
.nav-dropdown-menu a:hover { background: var(--bg-alt); text-decoration: none; }

/* Breadcrumb */
.breadcrumb {
  padding: 12px 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: var(--max-width);
  margin: 0 auto;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 4px; color: var(--border); }
.breadcrumb a { color: var(--text-muted); }

/* Answer block */
.answer-block {
  background: linear-gradient(135deg, #e8f0fe 0%, #f5f7fa 100%);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin: 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.answer-block p { margin: 0; font-size: 1.05rem; line-height: 1.65; }

/* Hero */
.hero {
  position: relative;
  background: var(--nav-bg);
  color: #fff;
  overflow: hidden;
}
.hero-with-img { min-height: 420px; }
.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,95,0.85) 0%, rgba(30,58,95,0.55) 100%);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 20px 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 16px;
  line-height: 1.2;
  max-width: 720px;
}
.hero-lead {
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 0 28px;
  opacity: 0.95;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  min-height: 48px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-phone { background: var(--phone-cta); color: #fff; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: #e8f0fe; }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.85);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }

/* Sections */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  margin: 0 0 8px;
  color: var(--nav-bg);
}
.section-subtitle {
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 640px;
  font-size: 1.05rem;
}

/* Contact page */
.contact-simple { max-width: 640px; }
.contact-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 20px;
  line-height: 1.65;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-card h3 {
  margin: 12px 0 8px;
  font-size: 1.15rem;
  color: var(--nav-bg);
}
.service-card h3 a { color: inherit; text-decoration: none; }
.service-card h3 a:hover { color: var(--primary); }
.service-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
.card-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

/* Brand grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.brand-item {
  background: #fff;
  border: 1px solid var(--border);
  padding: 18px 12px;
  text-align: center;
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--nav-bg);
  font-size: 0.9rem;
  transition: border-color 0.15s, background 0.15s;
}
.brand-item a { color: inherit; text-decoration: none; }
.brand-item span { color: var(--nav-bg); }
.brand-item:hover { border-color: var(--primary); background: #e8f0fe; }

/* Content prose */
.content-section h2 {
  font-size: 1.35rem;
  color: var(--nav-bg);
  margin: 28px 0 12px;
}
.content-section h2:first-child { margin-top: 0; }
.content-section p { margin: 0 0 16px; }

/* CTA box */
.cta-box {
  background: linear-gradient(135deg, var(--nav-bg), #2a5080);
  color: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 32px 20px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.cta-box h2 { color: #fff; margin: 0 0 12px; font-size: 1.5rem; }
.cta-box p { margin: 0 0 20px; opacity: 0.95; }
.cta-box .btn { margin: 4px; }

/* Highlight box */
.highlight-box {
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: #fff;
}
.highlight-box h2 { margin-top: 0; color: var(--nav-bg); }

/* FAQ */
.faq-list { margin: 24px 0; }
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: #fff;
}
.faq-list summary {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list .faq-answer {
  padding: 0 20px 16px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* HowTo steps */
.howto-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.howto-steps li {
  counter-increment: step;
  padding: 20px 16px 20px 56px;
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-weight: 500;
}
.howto-steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Regions list */
.regions-list {
  columns: 2;
  column-gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.regions-list li {
  padding: 8px 0;
  break-inside: avoid;
}
.regions-list a { font-weight: 500; }

/* Footer */
.site-footer {
  background: var(--nav-bg-dark);
  color: rgba(255,255,255,0.9);
  padding: 56px 0 24px;
  margin-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h3 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 12px;
}
.footer-address {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 8px;
  color: rgba(255,255,255,0.8);
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.site-footer li { margin-bottom: 6px; }
.site-footer a { color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}
.footer-location h4 {
  color: #fff;
  font-size: 0.9375rem;
  margin: 0 0 8px;
  font-weight: 700;
}
.footer-location-service {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-note {
  margin: 12px 0 0;
  font-size: 0.875rem;
}
.footer-note a { color: rgba(255,255,255,0.9); }
.footer-location p {
  margin: 0 0 12px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer-location p a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.footer-location p a:hover { color: #fff; text-decoration: underline; }
.footer-map {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: var(--radius);
  display: block;
}
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  z-index: 9999;
  display: flex;
  gap: 10px;
}
.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.15s;
}
.floating-cta a:hover { transform: scale(1.03); text-decoration: none; }
.floating-cta .fab-wa { background: var(--whatsapp); }
.floating-cta .fab-call { background: var(--phone-cta); }

/* Quote modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal h2 { margin: 0 0 20px; color: var(--nav-bg); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-alt);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  min-height: 48px;
}
.form-group textarea { min-height: 100px; resize: vertical; }

/* Main */
main { min-height: 50vh; }
main > .section:first-child,
main > .trust-strip + .hero { margin-top: 0; }
.page-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--nav-bg);
  margin: 0 20px 16px;
  max-width: var(--max-width);
  padding-left: 0;
}
.content-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 24px;
}

/* 404 */
.error-page {
  text-align: center;
  padding: 80px 20px;
}
.error-page h1 { font-size: 4rem; color: var(--primary); margin: 0; }

/* Desktop nav layout */
@media (min-width: 993px) {
  .btn-header-quote { display: inline-flex; }
  .nav-toggle { display: none !important; }
  .nav-overlay { display: none !important; }
  .floating-cta {
    right: 20px;
    bottom: 24px;
    flex-direction: column;
    align-items: stretch;
  }
  .floating-cta a {
    padding: 14px 20px;
    border-radius: var(--radius);
    min-height: 48px;
    min-width: 160px;
  }
}

/* Mobile drawer nav */
@media (max-width: 992px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 8px 16px;
    min-height: 56px;
  }
  .brand-tagline { display: none; }
  .brand-title { font-size: 1rem; }
  .header-top-inner { justify-content: flex-start; padding: 6px 16px; }
  .bayii-badge-muted { display: none; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--nav-bg-dark);
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: calc(var(--header-h) + var(--header-top-h) + 20px) 0 32px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.35);
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    justify-content: flex-start;
  }
  .site-nav > ul > li > a {
    padding: 14px 24px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.92);
  }
  .site-nav > ul > li > a:hover { background: rgba(255,255,255,0.08); color: #fff; }
  .nav-dropdown-btn {
    width: 100%;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    color: rgba(255,255,255,0.92);
  }
  .nav-dropdown-btn:hover { background: rgba(255,255,255,0.08); color: #fff; }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    background: rgba(0,0,0,0.25);
    border-radius: 0;
    border: none;
    max-height: none;
    padding: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-group-label {
    color: rgba(255,255,255,0.5);
    padding: 12px 24px 4px;
  }
  .nav-dropdown-menu a {
    color: rgba(255,255,255,0.9);
    padding: 12px 24px 12px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: #fff; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-locations { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { padding-bottom: 72px; }
  .section { padding: 40px 0; }
  .hero-with-img { min-height: 340px; }
  .hero-content { padding: 36px 16px 44px; }
  .regions-list { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-locations { grid-template-columns: 1fr; }
  .header-phone span.text { display: none; }
  .header-phone { padding: 10px 12px; min-width: 44px; justify-content: center; }
  .header-badges { gap: 6px; }
  .bayii-badge { font-size: 0.625rem; padding: 3px 8px; }
  .floating-cta {
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: row;
    width: 100%;
    gap: 0;
  }
  .floating-cta a {
    flex: 1;
    padding: 14px 12px;
    border-radius: 0;
    min-height: 56px;
    font-size: 0.95rem;
  }
  .locations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; }
}
