/* ============================================================
   MUDr. Eduard Habl — Zubní lékař | styles.css (desktop)
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --brand:        #1568C2;
  --brand-dark:   #0D4580;
  --brand-mid:    #1260B0;
  --brand-light:  #8EC4EA;
  --brand-bg:     #F0F5FC;
  --brand-bg2:    #DEEDF9;
  --accent:       #E9C46A;
  --accent-dark:  #D4A843;
  --text:         #1A2840;
  --text-muted:   #455A75;
  --text-light:   #7A96B5;
  --white:        #FFFFFF;
  --dark:         #0B2242;
  --shadow-sm:    0 2px 12px rgba(21,104,194,0.1), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 20px rgba(21,104,194,0.14), 0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:    0 8px 36px rgba(21,104,194,0.2), 0 16px 64px rgba(0,0,0,0.13);
  --shadow-xl:    0 16px 56px rgba(21,104,194,0.24), 0 32px 96px rgba(0,0,0,0.15);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   200ms ease;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

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: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
h2 { font-size: clamp(2.3rem, 3.6vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }

p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Section base ── */
section {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  font-size: 1.0625rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 200ms ease, transform 200ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 200ms ease, border-color 200ms ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(21,104,194,0.35);
}

.btn-primary:hover {
  background: var(--brand-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,104,194,0.45);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(21,104,194,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-outline-brand {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-outline-brand:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,104,194,0.3);
}

.btn:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

/* ── Scroll Animation ── */
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 350ms ease-out, transform 350ms ease-out;
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(255,255,255,0.0);
  transition: background 300ms ease, backdrop-filter 300ms ease, box-shadow 300ms ease, padding 300ms ease;
}

.navbar.scrolled {
  background: rgba(21,104,194,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 12px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.navbar-logo-icon svg {
  width: 26px;
  height: 26px;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
}

.navbar-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.navbar-logo-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color var(--transition);
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-light);
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.navbar-nav a:hover {
  color: var(--white);
}

.navbar-nav a:hover::after {
  transform: scaleX(1);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.navbar-phone:hover {
  color: var(--brand-light);
}

.navbar-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.navbar-cta {
  background: var(--white);
  color: var(--brand-dark);
  border: 2px solid transparent;
  padding: 10px 22px;
  font-size: 0.875rem;
}

.navbar-cta:hover {
  background: var(--brand-light);
  color: var(--brand-dark);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--brand-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 250ms ease;
}

.mobile-menu.open {
  opacity: 1;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  font-weight: 600;
}

.mobile-menu-phone {
  font-size: 1.2rem !important;
  color: var(--brand-light) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--brand-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/img1.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,34,66,0.88) 0%,
    rgba(13,69,128,0.65) 45%,
    rgba(21,104,194,0.28) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--brand-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero h1 em {
  font-style: normal;
  color: var(--brand-light);
}

.hero-subline {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 560px;
}

.hero-subline strong {
  color: var(--white);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-bottom: 32px;
}

.hero-bottom-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-address-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
}

.hero-address-inner svg {
  width: 15px;
  height: 15px;
  color: var(--brand-light);
  flex-shrink: 0;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--brand-dark);
  padding: 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  position: relative;
}

.trust-stat + .trust-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.trust-stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(21,104,194,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.trust-stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--brand-light);
}

.trust-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}

.trust-stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

/* ================================================================
   INSURANCE / POJIŠŤOVNY
   ================================================================ */
.insurance-section {
  background: var(--brand-bg);
  padding: 64px 0;
}

.insurance-header {
  text-align: left;
  margin-bottom: 40px;
}

.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.insurer-badge {
  background: var(--white);
  border: 1.5px solid #C0D8F0;
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 200ms ease;
  cursor: default;
  flex: 0 0 auto;
}

.insurer-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.insurer-badge img {
  height: 28px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
}

.insurer-code {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: var(--brand-bg2);
  border: 1px solid rgba(21,104,194,0.2);
  border-radius: 100px;
  padding: 2px 8px;
  letter-spacing: 0.04em;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21,104,194,0.15);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 200ms ease;
}

.service-card:hover .service-icon {
  background: var(--brand-light);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--brand);
}

.service-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-section {
  background: var(--brand-bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--brand);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-image-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-image-badge-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  display: block;
  letter-spacing: 0.04em;
}

.about-content .section-label {
  display: block;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content > p {
  margin-bottom: 16px;
}

.about-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-list-check {
  width: 24px;
  height: 24px;
  background: var(--brand);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-list-check svg {
  width: 14px;
  height: 14px;
  color: var(--white);
}

.about-list-item p {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

.about-list-item span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-section {
  background: var(--white);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,34,66,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 300ms ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section {
  background: #F4F8FC;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(21,104,194,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  fill: var(--accent);
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(21,104,194,0.1);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}

.testimonial-location {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-section {
  background: var(--white);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid rgba(21,104,194,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 200ms ease;
}

.faq-item.open {
  border-color: var(--brand);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  transition: background 200ms ease, color 200ms ease;
}

.faq-question:hover {
  background: var(--brand-bg);
}

.faq-item.open .faq-question {
  background: var(--brand-bg);
  color: var(--brand-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--brand-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 200ms ease, transform 200ms ease;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--brand);
  transition: transform 200ms ease;
}

.faq-item.open .faq-icon {
  background: var(--brand);
}

.faq-item.open .faq-icon svg {
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms ease, opacity 280ms ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-section {
  background: var(--brand-bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-block-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 10px;
}

.contact-phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}

.contact-phone-link:hover {
  color: var(--brand);
}

.contact-phone-icon {
  width: 48px;
  height: 48px;
  background: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(21,104,194,0.3);
}

.contact-phone-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.contact-address-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(21,104,194,0.1);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text);
}

.hours-table tr.today td {
  color: var(--brand);
  font-weight: 600;
}

.hours-table tr.closed td:last-child {
  color: var(--text-light);
}

.parking-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(21,104,194,0.07);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.parking-note svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 280px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 4px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--brand-bg);
  border: 1.5px solid rgba(21,104,194,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  resize: none;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(21,104,194,0.12);
}

.form-group textarea {
  height: 100px;
  line-height: 1.6;
}

.form-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-gdpr input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-gdpr a {
  color: var(--brand);
  text-decoration: underline;
}

.form-gdpr a:hover {
  color: var(--brand-dark);
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: rgba(21,104,194,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo-sub {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, transform 200ms ease;
}

.footer-social-link:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.7);
}

.footer-social-link:hover svg {
  color: var(--white);
}

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color 200ms ease;
}

.footer-nav a:hover {
  color: var(--brand-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--brand-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a,
.footer-contact-item p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.5;
  transition: color 200ms ease;
}

.footer-contact-item a:hover {
  color: var(--brand-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

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

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color 200ms ease;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ================================================================
   STICKY MOBILE CTA — hidden on desktop
   ================================================================ */
.sticky-mobile-cta {
  display: none;
}
