/* ═══════════════════════════════════════════════════════════════════
   DENTAL CASTLE — styles.css
   Theme: Refined luxury medical · Calming teal & white palette
   ═══════════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ──────────────────────────────────────────────── */
:root {
  --c-teal:        #0B8FAC;
  --c-teal-dark:   #076E85;
  --c-teal-light:  #E0F5F9;
  --c-teal-mid:    #C2EAF2;
  --c-navy:        #0F2D45;
  --c-navy-mid:    #1A3C5E;
  --c-white:       #FFFFFF;
  --c-off-white:   #F7FBFD;
  --c-gray-100:    #EFF4F7;
  --c-gray-200:    #D9E6ED;
  --c-gray-500:    #6B8EA0;
  --c-gray-700:    #3A5A6E;
  --c-text:        #1A3C5E;
  --c-text-light:  #5A7A8E;
  --c-gold:        #FBBF24;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-xs:  0 2px 8px rgba(11,143,172,0.08);
  --shadow-sm:  0 4px 20px rgba(11,143,172,0.12);
  --shadow-md:  0 8px 40px rgba(11,143,172,0.16);
  --shadow-lg:  0 16px 60px rgba(11,143,172,0.20);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container:  1200px;
  --section-pad: 96px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  color: var(--c-navy);
  font-weight: 600;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }

em { font-style: italic; color: var(--c-teal); }

p { color: var(--c-text-light); font-size: 1rem; line-height: 1.75; }

/* ── LAYOUT HELPERS ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: var(--section-pad) 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; }

/* ── SECTION TAG ────────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-teal);
  background: var(--c-teal-light);
  border: 1px solid var(--c-teal-mid);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-teal);
  color: white;
  box-shadow: 0 4px 20px rgba(11,143,172,0.35);
}
.btn-primary:hover {
  background: var(--c-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(11,143,172,0.45);
}

.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-white {
  background: white;
  color: var(--c-teal-dark);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--c-teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-full { width: 100%; justify-content: center; }

/* ── ANIMATIONS ─────────────────────────────────────────────────── */
.fade-up, .fade-left, .fade-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.fade-up    { transform: translateY(36px); }
.fade-left  { transform: translateX(-36px); }
.fade-right { transform: translateX(36px); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(11,143,172,0.10);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon svg path {
  fill: var(--c-teal);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: white;
  transition: color 0.3s;
}
.logo-text strong { font-weight: 700; color: var(--c-teal); }

.navbar.scrolled .logo-text { color: var(--c-navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--c-teal);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--c-gray-700); }
.navbar.scrolled .nav-links a:hover { color: var(--c-teal); }

.nav-cta {
  background: var(--c-teal) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 500 !important;
  box-shadow: 0 4px 16px rgba(11,143,172,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--c-teal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(11,143,172,0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--c-navy); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--c-gray-200);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 0;
  font-weight: 500;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-gray-100);
  font-size: 0.95rem;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-cta {
  margin-top: 8px;
  text-align: center;
  background: var(--c-teal);
  color: white !important;
  border-radius: 50px;
  padding: 14px !important;
  border-bottom: none !important;
}

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

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

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 30, 50, 0.82) 0%,
    rgba(11, 143, 172, 0.45) 60%,
    rgba(7, 30, 50, 0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(11,143,172,0.25);
  border: 1px solid rgba(11,143,172,0.5);
  color: rgba(255,255,255,0.9);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title em {
  color: #7FDCEF;
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  animation: bounce 2s infinite ease-in-out;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

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

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

/* Image stack */
.img-stack {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px;
}

.img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.img-float {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid white;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.img-badge {
  position: absolute;
  top: 32px; left: -20px;
  background: var(--c-teal);
  color: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  text-align: center;
  min-width: 90px;
}
.img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.img-badge span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.88;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* About text */
.about-text .section-tag { margin-bottom: 14px; }
.about-text h2 { margin-bottom: 22px; }

.about-lead {
  font-size: 1.1rem;
  color: var(--c-text);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-text p:last-of-type { margin-bottom: 28px; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text);
}

.feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--c-teal-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SERVICES ───────────────────────────────────────────────────── */
.services { background: var(--c-off-white); }

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

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--c-gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-teal), #5BC8DC);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-teal-mid);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: var(--c-teal-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--c-teal);
}
.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg circle {
  stroke: white;
}

.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p  { font-size: 0.9rem; line-height: 1.65; margin-bottom: 18px; }

.card-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--c-teal);
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
  display: block;
}
.service-card:hover .card-link {
  opacity: 1;
  transform: translateX(0);
}

/* ── WHY CHOOSE US ──────────────────────────────────────────────── */
.why-us {
  background: linear-gradient(135deg, var(--c-navy) 0%, #0D4F72 50%, var(--c-teal-dark) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,143,172,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.why-text { padding-top: 16px; }
.why-text h2 { color: white; margin-bottom: 20px; }
.why-text p  { color: rgba(255,255,255,0.72); margin-bottom: 36px; font-size: 1.05rem; }

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(11,143,172,0.5);
  transform: translateX(6px);
}

.why-icon {
  width: 48px; height: 48px;
  background: rgba(11,143,172,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg path, .why-icon svg rect, .why-icon svg circle { stroke: #7FDCEF; }

.why-card h3 { color: white; font-size: 1.05rem; margin-bottom: 6px; }
.why-card p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials { background: var(--c-white); }

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

.testi-card {
  background: var(--c-off-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
}

.testi-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0;
  color: var(--c-teal-mid);
  position: absolute;
  top: 36px; right: 32px;
  opacity: 0.7;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-teal-mid);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testi-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--c-text);
  margin-bottom: 28px;
  font-style: normal;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-teal), var(--c-teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-navy);
  font-family: var(--font-body);
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 0.8rem;
  color: var(--c-teal);
  font-weight: 500;
}

/* ── BOOKING ────────────────────────────────────────────────────── */
.booking {
  position: relative;
  background: linear-gradient(150deg, #063550 0%, var(--c-teal-dark) 40%, #085A72 100%);
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 50%, rgba(11,143,172,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.booking-info h2 { color: white; margin-bottom: 20px; }
.booking-info p  { color: rgba(255,255,255,0.72); margin-bottom: 36px; font-size: 1.05rem; }

.booking-contact { display: flex; flex-direction: column; gap: 14px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

/* Form */
.booking-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.form-group label span { color: var(--c-teal); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--c-gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--c-text);
  background: var(--c-off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(11,143,172,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--c-gray-500);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-note {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 12px;
  min-height: 20px;
  transition: var(--transition);
}
.form-note.success { color: #16a34a; }
.form-note.error   { color: #dc2626; }

/* ── LOCATION ───────────────────────────────────────────────────── */
.location { background: var(--c-off-white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: stretch;
}

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

.info-card {
  background: white;
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}
.info-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--c-teal-mid);
}

.info-icon {
  width: 44px; height: 44px;
  background: var(--c-teal-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--c-navy); }
.info-card p, .info-card address { font-size: 0.9rem; color: var(--c-text-light); line-height: 1.65; }
.info-card a { color: var(--c-teal); font-weight: 500; }
.info-card a:hover { text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
.hours-table td { padding: 4px 0; color: var(--c-text-light); }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--c-text); }
.closed { color: #ef4444 !important; font-weight: 500 !important; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
  border: 1px solid var(--c-gray-200);
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer { background: var(--c-navy); }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 260px;
}

.footer-logo .logo-text { color: white; }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--c-teal);
  border-color: var(--c-teal);
  color: white;
  transform: translateY(-3px);
}

.footer-nav h3, .footer-services h3, .footer-contact h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

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

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--c-teal); padding-left: 4px; }

.footer-services li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
}

.footer-contact address,
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--c-teal); }
.hours-brief { font-size: 0.8rem !important; color: rgba(255,255,255,0.45) !important; margin-top: 10px !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin: 0 6px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--c-teal); }

/* ── BACK TO TOP ────────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 32px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-teal);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(11,143,172,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 999;
}
.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover {
  background: var(--c-teal-dark);
  transform: translateY(-3px);
}

/* ── UTILITIES ──────────────────────────────────────────────────── */
.hide-mobile { display: block; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

/* ── TABLET (≤ 1024px) ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .about-grid         { gap: 48px; }
  .why-inner          { gap: 48px; }
  .booking-inner      { gap: 48px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
}

/* ── SMALL TABLET / LARGE MOBILE (≤ 768px) ─────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .hide-mobile { display: none; }

  .hero-content { padding-top: 100px; }
  .hero-stats   { gap: 20px; padding: 18px 24px; }
  .stat-divider { display: none; }

  .about-grid         { grid-template-columns: 1fr; gap: 40px; }
  .about-images       { order: -1; }
  .img-stack          { padding-bottom: 48px; padding-right: 48px; max-width: 480px; margin: 0 auto; }

  .services-grid      { grid-template-columns: 1fr; gap: 18px; }

  .why-inner          { grid-template-columns: 1fr; gap: 40px; }
  .why-text           { text-align: center; }
  .why-text .btn      { margin: 0 auto; display: inline-flex; }

  .testimonials-grid  { grid-template-columns: 1fr; gap: 20px; }

  .booking-inner      { grid-template-columns: 1fr; gap: 40px; }
  .booking-form       { padding: 32px 24px; }
  .form-row           { grid-template-columns: 1fr; gap: 0; }

  .location-grid      { grid-template-columns: 1fr; gap: 32px; }
  .map-container      { min-height: 300px; }

  .footer-grid        { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 6px; }
}

/* ── MOBILE (≤ 480px) ──────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --section-pad: 44px; }

  .hero-content   { padding: 90px 16px 60px; }
  .hero-actions   { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .booking-form   { padding: 28px 18px; }
  .img-stack      { padding-bottom: 40px; padding-right: 40px; }

  .testi-card::before { display: none; }

  .container { padding: 0 16px; }
}

/* ── REDUCED MOTION ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-left, .fade-right { opacity: 1; transform: none; transition: none; }
  .hero-img    { animation: none; }
  .hero-scroll { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
