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

:root {
  --blue:      #1a4a7a;
  --blue-mid:  #2563a8;
  --blue-light:#4a90d9;
  --sky:       #e8f4fd;
  --gold:      #c8902a;
  --gold-light:#e8b84b;
  --cream:     #fdf8f0;
  --white:     #ffffff;
  --dark:      #1a1a1a;
  --gray:      #6b7280;
  --gray-light:#f3f4f6;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --font-script:'Dancing Script', cursive;

  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
  --transition: .3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

.section { padding: 96px 0; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--blue); margin-bottom: 40px; }
h3 { font-size: 1.4rem; margin-bottom: 8px; }
h4 { font-size: 1.05rem; color: var(--blue); }
p  { line-height: 1.7; color: var(--gray); }

.section-label {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.section-label.light { color: var(--gold-light); }
h2.light { color: var(--white); }
p.light  { color: rgba(255,255,255,.85); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,144,42,.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
}
.navbar.scrolled .nav-links a,
.navbar.scrolled .lang-btn { color: var(--blue); }
.navbar.scrolled .logo-el  { color: var(--blue); }
.navbar.scrolled .logo-en  { color: var(--gold); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-el {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  transition: color var(--transition);
}
.logo-en {
  font-family: var(--font-script);
  font-size: .9rem;
  color: var(--gold-light);
  margin-top: -2px;
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--gold-light); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}
.navbar.scrolled .lang-toggle { color: var(--gray); }
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
  padding: 2px 4px;
}
.lang-btn.active { color: var(--gold-light); }
.navbar.scrolled .lang-btn { color: var(--gray); }
.navbar.scrolled .lang-btn.active { color: var(--gold); }
.lang-btn:hover { color: var(--gold-light); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .burger span { background: var(--blue); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1800&q=85');
  background-size: cover;
  background-position: center 40%;
  animation: slowZoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,30,60,.55) 0%,
    rgba(10,30,60,.4)  50%,
    rgba(10,30,60,.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-tagline {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  font-style: italic;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,100% { opacity: 1; top: 6px; }
  50%      { opacity: 0; top: 22px; }
}

/* ── ABOUT ── */
.about { background: var(--cream); }

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

.img-stack {
  position: relative;
  height: 500px;
}
.img-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.img-accent {
  position: absolute;
  width: 55%;
  height: 45%;
  bottom: -32px;
  right: -32px;
  border-radius: var(--radius);
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: var(--shadow);
  z-index: 2;
}
.badge-icon { font-size: 1.4rem; }

.about-text { padding-bottom: 40px; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; }

.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.feat-icon { font-size: 1.8rem; flex-shrink: 0; }
.feature strong { display: block; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.feature small  { color: var(--gray); font-size: .9rem; }

/* ── DAILY SPECIALS ── */
.daily {
  position: relative;
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}
.daily-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/ellinikon-garides-pasta.jpg');
  background-size: cover;
  background-position: center;
}
.daily-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,40,80,.88) 0%, rgba(30,60,100,.82) 100%);
}
.daily .container { position: relative; z-index: 2; }

.daily-intro {
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
}

.specials-grid {
  justify-content: center;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.special-card {
  background: rgba(255,255,255,.95);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left;
}
.special-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.special-img { height: 200px; overflow: hidden; }
.special-img img { transition: transform .6s ease; }
.special-card:hover .special-img img { transform: scale(1.08); }

.special-body { padding: 20px; }
.special-body h3 { color: var(--blue); font-size: 1.2rem; margin-bottom: 6px; }
.special-body p  { font-size: .9rem; }

.specials-empty { grid-column: 1/-1; text-align: center; padding: 40px 0; font-size: 1.1rem; opacity: .8; }
.specials-photo { grid-column: 1/-1; border-radius: 16px; overflow: hidden; max-height: 320px; }
.specials-photo img { width: 100%; height: 100%; object-fit: cover; }

.daily-cta p { color: rgba(255,255,255,.8); margin-bottom: 20px; font-size: 1rem; }

/* ── MENU ── */
.menu { background: var(--white); }

.menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--blue);
  color: var(--white);
}

.menu-cat { display: none; }
.menu-cat.active { display: block; }

.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; }

.menu-sub {
  grid-column: 1 / -1;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 1.75rem 0 0.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-light);
}
.menu-sub:first-child { margin-top: 0; }

.menu-item {
  display: flex;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}
.mi-text { flex: 1; }
.mi-text h4 { margin-bottom: 3px; font-size: .97rem; }
.mi-text p  { font-size: .85rem; color: var(--gray); }

.menu-note {
  margin-top: 32px;
  font-size: .85rem;
  color: var(--gray);
  font-style: italic;
  text-align: center;
}

/* ── GALLERY ── */
.gallery { background: var(--cream); padding-bottom: 0; }
.gallery .container { margin-bottom: 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
}
.g-item {
  position: relative;
  overflow: hidden;
}
.g-item img { transition: transform .6s ease; }
.g-item:hover img { transform: scale(1.08); }

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,60,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  color: var(--white);
  font-family: var(--font-script);
  font-size: 1.2rem;
}

/* ── QUOTE ── */
.quote-section {
  background: var(--blue);
  padding: 80px 0;
  text-align: center;
}
blockquote { position: relative; }
.quote-mark {
  font-family: var(--font-head);
  font-size: 6rem;
  color: rgba(255,255,255,.15);
  line-height: 0;
  vertical-align: -2.5rem;
  margin-right: 8px;
}
blockquote p {
  display: inline;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
}
blockquote cite {
  display: block;
  margin-top: 16px;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2px;
}

/* ── CITABILITY BLOCK (visible to AI crawlers, hidden from human visitors) ── */
.citability-block {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.citability-block p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 820px;
}

/* ── REVIEWS ── */
.reviews { background: var(--cream); }

.reviews-summary {
  text-align: center;
  margin-bottom: 2.5rem;
}

.rating-big {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.reviews-summary p {
  color: var(--gray);
  font-size: 0.95rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold-light);
}

.review-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}

.akoli-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.akoli-badge-icon { font-size: 2rem; }

.akoli-badge strong {
  display: block;
  font-size: 1rem;
  font-family: var(--font-head);
}

.akoli-badge small {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ── CONTACT ── */
.contact { background: var(--white); }

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

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

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.info-icon { font-size: 1.6rem; flex-shrink: 0; }
.info-card strong { display: block; font-weight: 700; color: var(--blue); margin-bottom: 4px; font-size: .9rem; letter-spacing: .5px; text-transform: uppercase; }
.info-card p { font-size: .95rem; color: var(--dark); }
.info-card a { color: var(--blue-mid); font-weight: 600; }
.info-card a:hover { color: var(--gold); }

.map-placeholder {
  position: relative;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-map {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-map iframe { display: block; }
.map-pin {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--blue);
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.pin-icon { font-size: 1.2rem; }

/* ── FOOTER ── */
.footer {
  background: var(--blue);
  color: rgba(255,255,255,.85);
  padding: 48px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  margin-bottom: 24px;
}

.footer-logo .logo-el { color: var(--white); font-size: 2rem; }
.footer-logo p { color: rgba(255,255,255,.6); font-size: .85rem; margin-top: 4px; }

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-social { display: flex; justify-content: flex-end; }
.footer-social a {
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
  padding: 8px;
}
.footer-social a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-wave { font-size: 1.4rem; }

/* ── MOBILE MENU ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: var(--blue);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; color: var(--white); }
  .burger { display: flex; z-index: 1001; }
  .lang-toggle { margin-left: auto; }
  .btn-reserve { display: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .specials-grid {
  justify-content: center;
  justify-content: center; grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .img-stack { height: 360px; }
  .img-accent { display: none; }
  .about-badge { top: -14px; left: 16px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-tall, .g-wide { grid-column: auto; grid-row: auto; }
  .menu-items { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .specials-grid {
  justify-content: center;
  justify-content: center; grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  h2 { font-size: 1.8rem; }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESERVE BUTTON (NAVBAR) ── */
.btn-reserve {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-reserve:hover { background: var(--gold-light); transform: scale(1.04); }

/* ── MODAL OVERLAY ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,40,.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── MODAL BOX ── */
.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 72px rgba(0,0,0,.3);
  transform: translateY(24px);
  transition: transform .3s ease;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--dark); }

.modal-header { text-align: center; margin-bottom: 1.8rem; }
.modal-icon { font-size: 2.2rem; display: block; margin-bottom: .5rem; }
.modal-header h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: .4rem;
}
.modal-header p { color: var(--gray); font-size: .92rem; }

/* ── FORM ── */
.reservation-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group select {
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  padding: .65rem .9rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,144,42,.15);
}
.form-group input.invalid,
.form-group select.invalid { border-color: #e05252; }

.btn-full { width: 100%; justify-content: center; margin-top: .5rem; }

/* ── SUCCESS STATE ── */
.modal-success {
  text-align: center;
  padding: 2rem 1rem;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.modal-success h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: .5rem;
}
.modal-success p { color: var(--gray); }

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 2rem 1.2rem; }
}

@media (max-width: 900px) {
  .btn-reserve { display: none; }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}
