/* Barvne spremenljivke: posodobi vrednosti po izvozu barv iz Manumed_logo.ai */
:root {
  --brand-1: #009bdf; /* primarna po logotipu */
  --brand-2: #939598; /* sekundarna po logotipu */
  --ink: #0f1a1a;
  --muted-ink: #4a5a5a;
  --bg: #f7fbfa;
  --surface: #ffffff;
  --border: #e3ecea;

  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);

  /* RGBA vrednosti za široko podporo */
  --brand-1-rgb: 0, 155, 223;   /* #009bdf */
  --brand-2-rgb: 147, 149, 152; /* #939598 */
  --brand-1-soft: rgba(var(--brand-1-rgb), 0.18);
  --brand-2-soft: rgba(var(--brand-2-rgb), 0.14);
}

/* Osnove tipografije in reset */
* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--ink);
  /* Nežno globalno ozadje (manj izrazito, glavni poudarki so po sekcijah) */
  background:
    radial-gradient(1200px 800px at 80% 0%, rgba(var(--brand-1-rgb), 0.10), transparent 70%),
    radial-gradient(1400px 900px at 60% 110%, rgba(var(--brand-1-rgb), 0.12), transparent 72%),
    radial-gradient(1000px 700px at -10% 95%, rgba(var(--brand-2-rgb), 0.10), transparent 74%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  background-repeat: no-repeat;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Top emergency banner */
.top-banner { 
  position: relative; 
  z-index: 1200; 
  background: linear-gradient(90deg, #e6f7ff, #f0faff); 
  border-bottom: 1px solid var(--border); 
  color: #0b2b3a; 
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.top-banner-inner { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 14px; 
  padding: 8px 0; 
  flex-wrap: wrap; 
  min-height: 44px; 
}
.top-banner .badge { background: var(--brand-1); color: #fff; padding: 4px 8px; border-radius: 999px; font-weight: 700; font-size: 12px; letter-spacing: .6px; }
.top-banner .msg { font-weight: 600; }
.top-banner .banner-cta { color: var(--brand-1); font-weight: 700; }
.top-banner .banner-cta:hover { text-decoration: underline; }

/* Glava */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  overflow: visible; /* dovoli, da logo lahko 'visi' iz pasice */
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0; /* minimalen padding, pasica ostane nizka */
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-top: -26px;  /* dodatno izniči višino večjega logotipa */
  margin-bottom: -26px;
}
.logo-img { width: 138px; height: 138px; object-fit: contain; display: block; }
.logo-img.small { width: 80px; height: 80px; }
.brand-name { letter-spacing: 0.2px; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a { padding: 10px 12px; border-radius: 10px; font-size: 1.15rem; }
/* Ne preglasi gumbov v navigaciji */
.site-nav a:not(.btn):hover { background: var(--bg); }

/* Mobile menu */
.menu-toggle { display: none; font-size: 22px; line-height: 1; background: transparent; border: 1px solid var(--border); width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center; }
.menu-toggle:hover { background: var(--bg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--brand-1); color: white; border-color: transparent; }
.btn-primary:hover { background: color-mix(in oklab, var(--brand-1), white 8%); }
.btn-ghost { background: transparent; }

/* Hero */
.hero { padding: 64px 0; background: transparent; scroll-margin-top: 80px; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.hero h1 { 
  font-size: clamp(28px, 4vw, 36px); 
  line-height: 1.15; 
  margin: 0 0 14px 0; 
  color: var(--ink);
  font-weight: 600;
}
/* Unified paragraph styling */
p {
  color: var(--muted-ink);
  line-height: 1.6;
  margin: 0 0 18px 0;
}

.hero p { 
  margin: 0 0 18px 0; 
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-media img { border-radius: 18px; box-shadow: var(--shadow-md); }

/* Google Reviews Banner */
.google-reviews-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 16px 20px;
  border: 2px solid var(--brand-1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}

.reviews-content h3 {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.reviews-content p {
  margin: 0;
  font-size: 14px;
  color: var(--muted-ink);
}

.reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.reviews-rating .stars {
  display: flex;
  gap: 2px;
}

.reviews-rating .stars span {
  color: #fbbc04;
  font-size: 16px;
}

.reviews-rating .rating-count {
  font-size: 13px;
  color: var(--muted-ink);
  font-weight: 500;
}

.reviews-rating .google-logo {
  font-size: 14px;
  font-weight: 500;
  color: #4285f4;
}

@media (max-width: 640px) {
  .google-reviews-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .reviews-rating {
    align-items: center;
  }
}

/* Sekcije */
.section { padding: 64px 0; background: transparent; scroll-margin-top: 80px; }
.section-accent {
  background: transparent;
  position: relative;
}


/* Unified h2 styling for all sections */
h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

/* Center h2 only in specific sections */
.section h2,
.services h2,
.pricing-section h2,
.map-section h2,
.section-accent h2 {
  text-align: center;
}

/* Left align h2 in hero and two-column sections */
.hero h2,
.grid.two-cols h2 {
  text-align: left;
}

/* Services section (cards look like the reference) */
.services { background: transparent; }

.services .cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
.services .card {
  border-radius: 18px;
  padding: 22px;
  border-color: #e8f1f8;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(var(--brand-1-rgb), 0.06), transparent 70%),
    #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.services .card h3 { font-size: 20px; display: flex; align-items: center; gap: 10px; }
.services .card h3::before {
  content: "";
  width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(var(--brand-1-rgb), 0.12);
  box-shadow: inset 0 0 0 1px rgba(var(--brand-1-rgb), 0.18);
}
.services .card:nth-child(1) h3::before { content: "🤸"; }
.services .card:nth-child(2) h3::before { content: "🧑‍⚕️"; }
.services .card:nth-child(3) h3::before { content: "💧"; }
.services .card:nth-child(4) h3::before { content: "💆"; }
.services .card:nth-child(5) h3::before { content: "🦴"; }
.services .card:nth-child(6) h3::before { content: "🎯"; }
.services .card:nth-child(7) h3::before { content: "📘"; }
.services .card p { font-size: 15px; }

@media (max-width: 980px) {
  .services .cards { grid-template-columns: 1fr; }
}

.grid.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }

/* Tipografija in berljivost */
.measure { max-width: 68ch; }
.lead { 
  font-size: clamp(16px, 2.2vw, 18px); 
  color: var(--muted-ink);
  line-height: 1.6;
}
.readable { align-items: start; }

/* Section descriptions */
.section-description {
  text-align: center;
  color: var(--muted-ink);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.6;
}

/* Okvir za slike */
.media-frame { border-radius: 18px; box-shadow: var(--shadow-md); outline: 1px solid rgba(0,0,0,0.04); }

/* Form card look in hero */
.form-card { 
  border-radius: 22px; 
  box-shadow: 0 20px 60px rgba(0,0,0,0.10); 
  padding: 24px; 
  background: var(--surface);
  border: 1px solid #e8f1f8; 
  gap: 5px; 
}

.form-card .form-grid { 
  grid-template-columns: 1fr 1fr; 
  gap: 5px; 
}

@media (max-width: 760px) { 
  .form-card { 
    padding: 20px; 
    gap: 12px;
  }
  
  .form-card .form-grid { 
    grid-template-columns: 1fr; 
    gap: 12px;
  } 
}

/* Seznam težav/prednosti */
.feature-list { list-style: none; padding: 0; margin: 8px 0 14px 0; display: grid; gap: 8px; }
.feature-list li { position: relative; padding-left: 28px; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 10%, rgba(255,255,255,0) 11%), var(--brand-1);
  box-shadow: 0 0 0 2px rgba(var(--brand-1-rgb), 0.15);
}

/* Kartice storitev */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin: 0 0 8px 0; font-size: 18px; }
.card p { margin: 0; color: var(--muted-ink); font-size: 15px; line-height: 1.5; }

/* Checklist */
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 26px; padding-left: 18px; }
.checklist li { margin-bottom: 8px; }
.checklist li::marker { color: var(--brand-1); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 24px 0; background: #ffffff; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; margin-top: -14px; margin-bottom: -14px; }
.footer-nav { display: inline-flex; gap: 12px; }
.footer-nav a { padding: 6px 8px; border-radius: 8px; }
.footer-nav a:hover { background: var(--bg); }

/* Logo placeholder (zamenjaj, ko bo SVG/PNG) */
.logo-placeholder {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), var(--shadow-sm);
}
.logo-placeholder.small { width: 28px; height: 28px; border-radius: 8px; }


.cards .card:hover { border-color: color-mix(in oklab, var(--brand-1), white 65%); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

/* Prepreči zgodnje kazanje barvnega ozadja zaradi collapse-a marginov */
.section + .section-accent { margin-top: 0; }

/* Responsivnost */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid.two-cols { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; 
    top: 100%; 
    right: 0; 
    left: 0; 
    background: #fff;
    border-bottom: 1px solid var(--border); 
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    padding: 0; 
    flex-direction: column; 
    gap: 6px;
    display: flex; 
    overflow: hidden; 
    max-height: 0; 
    opacity: 0; 
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.2s ease, padding 0.2s ease;
    z-index: 9999 !important;
  }
  body.menu-open .site-nav { 
    max-height: 320px; 
    opacity: 1; 
    pointer-events: auto; 
    transform: translateY(0); 
    padding: 10px;
  }
  body.menu-open .menu-toggle { transform: rotate(90deg); transition: transform 0.2s ease; }
  .site-nav a { padding: 12px; }
}
@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .footer-inner { 
    grid-template-columns: 1fr; 
    gap: 20px; 
    text-align: center;
    justify-items: center;
  }
  
  .footer-brand {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  
  .footer-nav a {
    padding: 12px 16px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    transition: background 0.2s ease;
  }
  
  .footer-nav a:hover {
    background: var(--bg);
  }
  
  .footer-meta {
    padding-top: 8px;
    border-top: 1px solid var(--border);
    width: 100%;
    text-align: center;
  }
  .top-banner { 
    position: relative; 
  }
  .top-banner-inner { 
    flex-direction: column; 
    gap: 6px; 
    padding: 6px 0 10px; 
    min-height: 44px; /* Ohrani enako višino kot desktop */
    text-align: center; 
  }
  .top-banner .msg { 
    font-size: 14px; 
    line-height: 1.35; 
  }
  .site-header { 
    position: sticky; 
    top: 0;
  }
  .hero,
  .section { padding: 44px 0; scroll-margin-top: 80px; }
}


/* Forme */
.form { 
  background: var(--surface); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 20px; 
  box-shadow: var(--shadow-sm); 
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field { 
  display: flex; 
  flex-direction: column; 
  gap: 2px; 
  margin: 0;
  padding: 0;
}

.form-field label { 
  font-weight: 600; 
  font-size: 15px;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
}

/* Inputs */
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  outline: none;
  font-size: 15px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .06s ease;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.03);
}

.form-field textarea { 
  min-height: 120px; 
  resize: vertical; 
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

.form-field input::placeholder, .form-field textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: rgba(var(--brand-1-rgb), 0.5);
  box-shadow: 0 0 0 4px rgba(var(--brand-1-rgb), 0.10), inset 0 1px 2px rgba(0,0,0,0.03);
  transform: translateY(-1px);
}

.form .btn-primary { 
  padding: 14px 18px; 
  border-radius: 14px; 
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  font-weight: 600;
  margin-top: 8px;
}

.form .btn-primary:hover { 
  transform: translateY(-1.5px); 
}

.error { 
  color: #c0342b; 
  min-height: 0; 
  font-size: 13px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
}

.form-actions { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  margin-top: 8px; 
}

.form-status { 
  color: var(--muted-ink); 
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

@media (max-width: 760px) {
  .form-grid { 
    grid-template-columns: 1fr; 
    gap: 8px;
  }
  
  .form {
    padding: 16px;
    gap: 8px;
  }
  
  .form-field input, .form-field select, .form-field textarea {
    padding: 12px 14px;
  }
}

/* Privacy policy page styling */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.privacy-content h1 {
  font-size: clamp(28px, 5vw, 44px);
  margin-bottom: 32px;
  color: var(--ink);
  border-bottom: 2px solid var(--brand-1);
  padding-bottom: 16px;
}

.privacy-content h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.privacy-content p {
  margin-bottom: 16px;
  color: var(--muted-ink);
}

.privacy-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.privacy-content li {
  margin-bottom: 8px;
  color: var(--muted-ink);
}

.privacy-content strong {
  color: var(--ink);
}

/* Pricing section styling */
.pricing-section {
  background: transparent;
}



.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--brand-1-rgb), 0.3);
}



.pricing-header {
  text-align: center;
  margin-bottom: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-header h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: var(--brand-1);
  margin-bottom: 4px;
}

.duration {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  margin-bottom: 8px;
}

.pricing-description {
  color: var(--muted-ink);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  margin-top: auto;
}

.pricing-note {
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(var(--brand-1-rgb), 0.06);
  border: 1px solid rgba(var(--brand-1-rgb), 0.15);
  border-radius: 12px;
  text-align: center;
}

.pricing-note p {
  margin: 0;
  font-size: 14px;
  color: var(--muted-ink);
}

.pricing-note strong {
  color: var(--ink);
}

.pricing-cta {
  text-align: center;
  margin-top: 32px;
}

.pricing-cta .btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pricing-card {
    padding: 20px;
  }
  
  .price {
    font-size: 32px;
  }
}

/* Map section styling */
.map-section {
  background: transparent;
}



.section-description {
  text-align: center;
  color: var(--muted-ink);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.map-container {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  display: block;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-1-soft);
  border-radius: 12px;
  flex-shrink: 0;
}

.card-content h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.business-name {
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 4px 0;
  font-size: 14px;
}

.address {
  color: var(--muted-ink);
  margin: 0;
  line-height: 1.4;
  font-size: 14px;
}

.phone a, .email a {
  color: var(--brand-1);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.phone a:hover, .email a:hover {
  text-decoration: underline;
}

.phone, .email {
  margin: 2px 0;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
  color: var(--muted-ink);
  font-size: 14px;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-1);
  font-weight: bold;
}

.hours {
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 4px 0;
  font-size: 14px;
}

.availability {
  color: var(--brand-1);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  .location-info {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .contact-card {
    padding: 16px;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Mobile menu fixes */
@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .site-nav {
    position: absolute !important;
    top: 100% !important;
    z-index: 1100 !important;
  }
}

/* Privacy policy link styling */
.form-field label a {
  color: var(--brand-1);
  text-decoration: underline;
}

.form-field label a:hover {
  color: color-mix(in oklab, var(--brand-1), black 15%);
}
/* Form scroll anchor */
#reservation-form {
  scroll-margin-top: 100px;
}
/* Success page styling - only for success.html */
.success-section {
  padding: 0;
  min-height: calc(100vh - 44px - 138px - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-content {
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.success-icon {
  margin-bottom: 24px;
}

.like-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.success-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.success-title .highlight {
  color: var(--brand-1);
}

.success-message {
  font-size: 16px;
  color: var(--muted-ink);
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Success page body layout - only apply to success page */
body.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.success-page main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .success-section {
    min-height: calc(100vh - 100px - 138px - 120px);
  }
  
  .success-content {
    padding: 15px;
  }
  
  .like-icon {
    width: 80px;
    height: 80px;
  }
  
  .success-title {
    font-size: clamp(24px, 5vw, 32px);
  }
  
  .success-message {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .success-actions {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .success-actions .btn {
    width: 100%;
    max-width: 250px;
  }
}