/* ============ TOKENS ============ */
:root {
  --navy: #0d2a5e;
  --navy-deep: #081d44;
  --blue: #1a6bb5;
  --sky: #4a90d9;
  --sky-light: #87cefa;
  --bg: #ffffff;
  --bg-soft: #f3f7fc;
  --ink: #0a1530;
  --muted: #5a6a85;
  --border: #e3ebf5;
  --wa: #25d366;
  --wa-dark: #128c4a;

  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Lato', system-ui, sans-serif;

  --shadow-sm: 0 2px 10px rgba(13,42,94,0.06);
  --shadow-md: 0 12px 30px rgba(13,42,94,0.12);
  --shadow-lg: 0 24px 60px rgba(13,42,94,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--navy);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.text-accent { color: var(--sky-light); }

/* ============ EYEBROW ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--sky-light);
  margin-bottom: 18px;
}
.eyebrow .dash {
  display: inline-block; width: 28px; height: 2px; background: var(--sky-light);
}
.eyebrow-dark { color: var(--blue); }
.eyebrow-dark .dash.dark { background: var(--blue); }
.eyebrow-light { color: var(--sky-light); }
.eyebrow-light .dash.light { background: var(--sky-light); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 999px;
  white-space: nowrap;
}
.btn-block { width: 100%; padding: 16px; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-skylight { background: var(--sky); color: #fff; }
.btn-skylight:hover { background: var(--blue); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,0.35); }
.btn-nav {
  background: var(--navy); color: #fff;
  padding: 10px 18px; font-size: 12px;
}
.btn-nav:hover { background: var(--blue); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  z-index: 50;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.nav.scrolled {
  box-shadow: 0 6px 20px rgba(13,42,94,0.08);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-svg { width: 60px; height: 60px; flex-shrink: 0; }
.logo-img { width: 60px; height: 60px; flex-shrink: 0; object-fit: contain; border-radius: 10px; background: #fff; }
.hero-logo-img { width: 110px; height: 110px; margin: 0 auto 18px; object-fit: contain; display: block; }
.contact-logo-img { width: 80px; height: 80px; margin-bottom: 18px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-display); font-weight: 900;
  font-size: 24px; color: var(--navy); letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px; color: var(--blue); letter-spacing: 0.22em; margin-top: 4px;
}
.logo-main.light { color: #fff; }
.logo-sub.light { color: var(--sky-light); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 600;
  font-size: 13px; color: var(--ink); letter-spacing: 0.05em;
  position: relative; padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: right; transition: transform 0.25s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none; background: none; border: none; font-size: 24px;
  color: var(--navy); cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--blue) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.wave { position: absolute; left: 0; right: 0; width: 100%; }
.wave1 { bottom: 0; height: 60%; }
.wave2 { bottom: 0; height: 80%; opacity: 0.7; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-size: clamp(44px, 7vw, 88px);
  color: #fff;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.78);
  max-width: 520px; margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center; gap: 28px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; color: var(--sky-light); line-height: 1;
}
.stat-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6); margin-top: 6px;
}
.hero-stats .divider {
  width: 1px; height: 36px; background: rgba(255,255,255,0.15);
}

.hero-right { display: flex; justify-content: center; }
.hero-card {
  background: #fff; color: var(--navy);
  border-radius: 24px; padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  width: 100%; max-width: 380px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.4);
}
.hero-logo { width: 96px; height: 96px; margin: 0 auto 18px; }
.hero-card-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 18px; letter-spacing: 0.05em; color: var(--navy);
}
.hero-card-tag {
  font-size: 13px; color: var(--muted); margin: 8px 0 22px;
  font-style: italic;
}
.phone-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 12px 22px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; transition: all 0.2s;
}
.phone-pill:hover { background: var(--navy); transform: translateY(-2px); }

/* ============ SECTION HEAD ============ */
.section-head { margin-bottom: 60px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-size: clamp(34px, 4.5vw, 54px);
  margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 17px; color: var(--muted);
}

/* ============ SERVICES ============ */
.services { padding: 100px 0; background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.35s ease;
  cursor: default;
}
.service-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px; color: var(--blue);
  letter-spacing: 0.2em; margin-bottom: 18px;
}
.service-card h3 {
  font-size: 22px; margin-bottom: 14px; color: var(--navy);
  transition: color 0.3s;
}
.service-card p {
  color: var(--muted); font-size: 15px;
  transition: color 0.3s;
}
.service-arrow {
  display: inline-block; margin-top: 24px;
  font-size: 22px; color: var(--blue);
  transition: transform 0.3s, color 0.3s;
}
.service-card:hover {
  background: var(--navy); border-color: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover h3,
.service-card:hover .service-arrow { color: #fff; }
.service-card:hover .service-num { color: var(--sky-light); }
.service-card:hover p { color: rgba(255,255,255,0.78); }
.service-card:hover .service-arrow { transform: translateX(6px); }

/* ============ SALES ============ */
.sales { padding: 100px 0; background: var(--bg-soft); }
.sales-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sales-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}
.sales-tile .emoji {
  font-size: 42px; margin-bottom: 14px;
  transition: transform 0.3s;
}
.sales-tile .tile-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--navy);
  transition: color 0.3s;
}
.sales-tile:hover {
  background: var(--blue); border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26,107,181,0.3);
}
.sales-tile:hover .emoji { transform: scale(1.15); }
.sales-tile:hover .tile-name { color: #fff; }

/* ============ ABOUT ============ */
.about {
  padding: 110px 0;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 70px; align-items: center;
}
.year-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(135,206,250,0.2);
  border-radius: 24px;
  padding: 60px 50px;
  position: relative;
  text-align: left;
}
.year {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(80px, 11vw, 140px);
  color: var(--sky-light);
  line-height: 1;
}
.year-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: #fff;
  margin-top: 16px;
}
.year-badge {
  position: absolute;
  bottom: -22px; right: -10px;
  background: var(--sky);
  color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.1em;
  padding: 12px 22px; border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.about-text {
  font-size: 16px; color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
}
.about-list { list-style: none; margin-bottom: 32px; }
.about-list li {
  padding: 10px 0;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ============ CONTACT ============ */
.contact { padding: 100px 0; background: var(--bg-soft); }
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-left {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: #fff;
  padding: 50px 40px;
}
.contact-logo { width: 70px; height: 70px; margin-bottom: 18px; }
.contact-name {
  color: #fff; font-size: 20px; margin-bottom: 6px;
}
.contact-tag {
  color: var(--sky-light); font-style: italic;
  font-size: 14px; margin-bottom: 28px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.contact-item a:hover { color: var(--sky-light); }
.ci-icon { font-size: 18px; flex-shrink: 0; }
.contact-buttons {
  display: flex; flex-direction: column; gap: 12px; margin-top: 24px;
}

.contact-right { padding: 50px 40px; }
.form-title {
  font-size: 22px; margin-bottom: 24px; color: var(--navy);
}
.form-row { margin-bottom: 14px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-note {
  margin-top: 12px; font-size: 13px; color: var(--wa-dark); text-align: center;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 40px;
  border-top: 4px solid var(--sky-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.logo-footer { margin-bottom: 18px; }
.footer-tag {
  color: var(--sky-light); font-style: italic;
  margin-bottom: 22px;
}
.footer-copy { font-size: 13px; margin-bottom: 14px; }
.footer-addr { font-size: 13px; line-height: 1.7; }
.footer-right { text-align: right; }
.footer-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--sky-light); margin-bottom: 10px;
}
.footer-phone {
  display: block; font-family: var(--font-display); font-weight: 900;
  font-size: 28px; color: #fff; margin-bottom: 6px;
}
.footer-phone:hover { color: var(--sky-light); }
.footer-email {
  display: block; font-size: 14px; margin-bottom: 18px;
}
.footer-email:hover { color: var(--sky-light); }

/* ============ FLOATING ============ */
.floating {
  position: fixed;
  right: 20px; bottom: 24px;
  z-index: 60;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.05em;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa { background: var(--wa); }
.float-wa:hover { background: var(--wa-dark); transform: translateY(-3px); }
.float-call { background: var(--blue); }
.float-call:hover { background: var(--navy); transform: translateY(-3px); }
.fb-icon { font-size: 16px; }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 16px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-toggle { display: block; }
  .btn-nav { display: none; }

  .hero { padding: 120px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .hero-card { max-width: 320px; padding: 32px 24px; }

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

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .year-card { padding: 40px 30px; }
  .year-badge { right: 0; bottom: -18px; }

  .contact-card { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 36px 28px; }

  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-right { text-align: left; }

  .floating { right: 14px; bottom: 14px; gap: 10px; }
  .fb-text { display: none; }
  .float-btn {
    width: 52px; height: 52px;
    padding: 0; justify-content: center;
  }
  .fb-icon { font-size: 22px; }
}

@media (max-width: 520px) {
  .logo-svg, .logo-img { width: 48px; height: 48px; }
  .logo-main { font-size: 19px; }
  .logo-sub { font-size: 9px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 10px; }
  .footer-phone { font-size: 22px; }
}

/* ============ GALLERY SLIDESHOW ============ */
.gallery { padding: 100px 0; background: var(--bg); }
.slideshow {
  position: relative;
  margin-top: 48px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.slide {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy-deep);
}
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(8,29,68,0.92), rgba(8,29,68,0));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.slide-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.slide-nav.prev { left: 20px; }
.slide-nav.next { right: 20px; }
.slide-dots {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  display: flex; justify-content: center; gap: 8px;
  z-index: 2;
}
.slide-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}
.slide-dots button.active { background: #fff; width: 28px; border-radius: 5px; }

.year-badge-top {
  display: inline-block;
  padding: 6px 14px;
  background: var(--sky-light);
  color: var(--navy);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

@media (max-width: 720px) {
  .slide-caption { font-size: 1rem; padding: 18px 18px 22px; }
  .slide-nav { width: 42px; height: 42px; font-size: 1.5rem; }
  .gallery { padding: 70px 0; }
}

/* ============ BRANDS ============ */
.brands { padding: 100px 0; background: var(--bg); }
.text-accent-blue { color: var(--blue); }
.brands-showcase {
  margin: 40px auto 32px;
  max-width: 900px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.brands-showcase img { width: 100%; height: auto; border-radius: 12px; }
.brand-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
.brand-chips li {
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: transform 0.2s, background 0.2s;
}
.brand-chips li:hover { background: var(--blue); transform: translateY(-2px); }
@media (max-width: 600px) {
  .brands { padding: 64px 0; }
  .brands-showcase { padding: 16px; border-radius: 16px; }
}

/* ============ ICONS & SOCIALS ============ */
.icon-wa {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -0.2em;
  margin-right: 4px;
}
.btn-whatsapp .icon-wa { color: #fff; }

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  flex: 1;
  justify-content: center;
}
.social-btn svg {
  width: 1.2em;
  height: 1.2em;
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.08);
}
.social-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-fb {
  background: #1877f2;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-socials .social-btn {
  flex: 0 0 auto;
  padding: 8px 14px;
  font-size: 13px;
}

@media (max-width: 600px) {
  .social-row { flex-direction: column; }
  .footer-socials { flex-wrap: wrap; }
}

/* ============ MAP ============ */
.map-wrap {
  margin-top: 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  flex-wrap: wrap;
}
.map-title {
  font-size: 22px;
  margin-bottom: 4px;
}
.map-sub {
  color: var(--muted);
  font-size: 14px;
}
.map-frame {
  width: 100%;
  line-height: 0;
  background: var(--bg-soft);
}
.map-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4285F4;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.btn-google:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.08);
}

.footer-hours {
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.85;
}
.footer-google {
  display: inline-block;
  margin-top: 10px;
  color: var(--sky-light);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.footer-google:hover { border-color: var(--sky-light); }

@media (max-width: 600px) {
  .map-head { padding: 18px 18px; }
  .map-frame iframe { height: 320px; }
}
