*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: #99f6e4;
  color: #0c4a6e;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-scrolled #navbar {
  background: rgba(12, 74, 110, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #f0fdf9;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.85; }

.nav-logo-text { white-space: nowrap; }

.nav-logo-icon { color: #99f6e4; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(240, 253, 249, 0.85);
  font-weight: 700;
  font-size: 0.938rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: #99f6e4; }

.nav-cta {
  background: #99f6e4 !important;
  color: #0c4a6e !important;
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  font-weight: 800 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: #5eead4 !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  color: #f0fdf9;
  padding: 0.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0c4a6e;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 26, 41, 0.92) 0%,
    rgba(12, 74, 110, 0.85) 50%,
    rgba(4, 47, 73, 0.9) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 25% 25%, #99f6e4 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, #99f6e4 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 8rem 1.5rem 4rem;
  color: #f0fdf9;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(153, 246, 228, 0.15);
  border: 1px solid rgba(153, 246, 228, 0.3);
  color: #99f6e4;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: #f0fdf9;
}

.hero-subtitle {
  font-size: clamp(1.063rem, 2vw, 1.313rem);
  line-height: 1.7;
  color: rgba(240, 253, 249, 0.8);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(240, 253, 249, 0.7);
  font-size: 0.938rem;
  font-weight: 600;
}

.hero-trust-item svg { color: #99f6e4; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(240, 253, 249, 0.5);
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #99f6e4;
  color: #0c4a6e;
}

.btn-primary:hover {
  background: #5eead4;
  box-shadow: 0 8px 30px rgba(153, 246, 228, 0.35);
}

.btn-secondary {
  background: rgba(240, 253, 249, 0.12);
  color: #f0fdf9;
  border: 2px solid rgba(240, 253, 249, 0.3);
}

.btn-secondary:hover {
  background: rgba(240, 253, 249, 0.2);
  border-color: rgba(240, 253, 249, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 1.5rem;
}

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

.text-center { text-align: center; }

.mb-16 { margin-bottom: 4rem; }

.mt-10 { margin-top: 2.5rem; }

.section-label {
  display: inline-block;
  color: #0d9488;
  font-size: 0.813rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #0c4a6e;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #475569;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.link-underline {
  color: #0d9488;
  font-weight: 700;
  border-bottom: 2px solid rgba(13, 148, 136, 0.3);
  transition: border-color 0.2s, color 0.2s;
}

.link-underline:hover {
  color: #0f766e;
  border-color: #0f766e;
}

/* ===== ABOUT ===== */
.about {
  background: #fffbeb;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(12, 74, 110, 0.2);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-float {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 55%;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(12, 74, 110, 0.25);
  border: 6px solid #fffbeb;
}

.about-img-float img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text { padding: 1rem 0; }

.about-text p {
  color: #475569;
  font-size: 1.063rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: #0c4a6e;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(153, 246, 228, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  flex-shrink: 0;
}

/* ===== MENU ===== */
.menu {
  background: #f0f7ff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.menu-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(12, 74, 110, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(12, 74, 110, 0.15);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/3.5;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #99f6e4;
  color: #0c4a6e;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-card-body {
  padding: 1.5rem;
}

.menu-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.313rem;
  color: #0c4a6e;
  margin-bottom: 0.5rem;
}

.menu-card-desc {
  color: #64748b;
  font-size: 0.938rem;
  line-height: 1.6;
}

/* ===== WHY US ===== */
.why-us {
  background: #0c4a6e;
  color: #f0fdf9;
}

.why-us .section-label { color: #99f6e4; }

.why-us .section-title { color: #f0fdf9; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(153, 246, 228, 0.15);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(153, 246, 228, 0.4);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: rgba(153, 246, 228, 0.15);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #99f6e4;
}

.why-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: #f0fdf9;
  margin-bottom: 0.75rem;
}

.why-card-desc {
  color: rgba(240, 253, 249, 0.7);
  font-size: 0.938rem;
  line-height: 1.7;
}

/* ===== VISIT ===== */
.visit {
  background: linear-gradient(135deg, #041a29 0%, #0c4a6e 100%);
  color: #f0fdf9;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit-info .section-label { color: #99f6e4; }

.visit-info .section-title { color: #f0fdf9; margin-bottom: 1.25rem; }

.visit-info > p {
  color: rgba(240, 253, 249, 0.75);
  font-size: 1.063rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(153, 246, 228, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #99f6e4;
  flex-shrink: 0;
}

.visit-detail strong {
  display: block;
  color: #f0fdf9;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.visit-detail p {
  color: rgba(240, 253, 249, 0.7);
  font-size: 0.938rem;
  line-height: 1.6;
  margin: 0;
}

.visit-detail a {
  color: #99f6e4;
  transition: color 0.2s;
}

.visit-detail a:hover { color: #5eead4; }

.visit-map {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: #041a29;
  color: rgba(240, 253, 249, 0.7);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f0fdf9;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.938rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  color: #f0fdf9;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(240, 253, 249, 0.6);
  font-size: 0.938rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-links a:hover { color: #99f6e4; }

.footer-contact p {
  font-size: 0.938rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: #99f6e4;
  transition: color 0.2s;
}

.footer-contact a:hover { color: #5eead4; }

.footer-bottom {
  border-top: 1px solid rgba(153, 246, 228, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(240, 253, 249, 0.4);
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-enabled .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0c4a6e;
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 2rem 2rem;
    gap: 1rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(153, 246, 228, 0.1);
  }

  .nav-cta {
    text-align: center;
    margin-top: 1rem;
    border-bottom: none !important;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
  }

  .nav-overlay.show { display: block; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { gap: 3rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 1.25rem; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-float {
    right: 0;
    bottom: -1.5rem;
  }

  .about-features { flex-direction: column; gap: 1rem; }

  .menu-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .why-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .visit-map iframe { height: 300px; }

  .hero-content { padding: 7rem 1.25rem 3rem; }

  .hero-trust { flex-direction: column; align-items: center; gap: 0.75rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .nav-container { padding: 0.875rem 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
