/* ==========================================================================
   EL PARAISO AQUA DINE RESTAURANT
   Visual Theme: Luxury Tropical Aquatic & Oceanic Fine Dining
   ========================================================================== */

:root {
  /* ── Core Aquatic & Deep Ocean Palette ───────────────────────────────── */
  --ocean-abyss:    #02121b;   /* Midnight oceanic trench              */
  --ocean-deep:     #031822;   /* Deep sea navy                        */
  --ocean-dark:     #052433;   /* Rich underwater ocean blue           */
  --ocean-mid:      #0b3a4e;   /* Sunlit ocean depth                   */
  --ocean-surface:  #134e6b;   /* Sea-glass blue                       */
  --ocean-slate:    #1e3a4b;   /* Muted ocean stone                    */

  --aqua:           #0eb8b2;   /* Vibrant tropical turquoise           */
  --aqua-bright:    #1cd4cc;   /* Radiant turquoise highlight          */
  --aqua-light:     #5eead4;   /* Crystal clear lagoon surface         */
  --aqua-foam:      #e6faf8;   /* Soft sea-foam tint                   */
  --aqua-dark:      #08857f;   /* Deep aqua shadow                     */
  --aqua-glow:      rgba(14, 184, 178, 0.32);
  --aqua-mist:      rgba(14, 184, 178, 0.08);

  --sea-green:      #10b981;   /* Coastal emerald                      */
  --sea-green-soft: #34d399;   /* Soft reef green                      */

  --gold:           #c9a35e;   /* Champagne gold accent                */
  --gold-light:     #e5cb8e;   /* Soft warm champagne highlight        */
  --gold-bright:    #dfb15b;   /* Radiant gold                         */
  --gold-dark:      #9e7b39;   /* Deep bronze-gold                     */
  --gold-glow:      rgba(201, 163, 94, 0.35);

  --bg-page:        #f4fafb;   /* Crisp sea-breeze off-white           */
  --bg-card:        #ffffff;   /* Pure white card surface              */
  --bg-soft:        #ecf6f7;   /* Soft lagoon alternate section        */
  --bg-accent:      #e0f2f4;   /* Pale sea-mist tone                   */
  --bg-dark:        #031c28;   /* Dark container background            */

  --text-main:      #0e232c;   /* Deep charcoal body text              */
  --text-muted:     #4c6a75;   /* Balanced secondary body text         */
  --text-light:     #7f9fa9;   /* Subdued label text                   */
  --text-on-dark:   #e8f6f8;   /* Bright sea-foam text for dark areas  */

  --line-subtle:    #d4e7e9;   /* Light card & divider border          */
  --line-light:     #e9f3f4;   /* Ultra-soft border                    */
  --line-glass:     rgba(255, 255, 255, 0.16); /* Frosted glass border */

  /* ── Typography ─────────────────────────────────────────────────────── */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* ── Elevation Shadows & Glows ──────────────────────────────────────── */
  --shadow-sm: 0 4px 16px rgba(3, 24, 34, 0.06);
  --shadow-md: 0 12px 32px rgba(3, 24, 34, 0.10);
  --shadow-lg: 0 24px 56px rgba(3, 24, 34, 0.15);
  --shadow-dark: 0 20px 48px rgba(0, 0, 0, 0.40);
  --shadow-aqua: 0 8px 30px rgba(14, 184, 178, 0.32);
  --shadow-gold: 0 8px 30px rgba(201, 163, 94, 0.35);

  /* ── Radii ──────────────────────────────────────────────────────────── */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* Base Reset & Smooth Rendering */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  background-color: var(--bg-page);
  font-family: var(--sans);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* ==========================================================================
   FLOATING WATER BUBBLES BACKGROUND EFFECT
   ========================================================================== */

.water-bubbles-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -60px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), rgba(14, 184, 178, 0.15) 60%, rgba(28, 212, 204, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2), 0 0 15px rgba(14, 184, 178, 0.2);
  animation: floatBubble linear infinite;
}

.b1 { left: 8%;  width: 24px; height: 24px; animation-duration: 18s; animation-delay: 0s; }
.b2 { left: 22%; width: 14px; height: 14px; animation-duration: 24s; animation-delay: 4s; }
.b3 { left: 38%; width: 32px; height: 32px; animation-duration: 20s; animation-delay: 2s; }
.b4 { left: 55%; width: 18px; height: 18px; animation-duration: 22s; animation-delay: 7s; }
.b5 { left: 70%; width: 26px; height: 26px; animation-duration: 19s; animation-delay: 1s; }
.b6 { left: 84%; width: 12px; height: 12px; animation-duration: 26s; animation-delay: 5s; }
.b7 { left: 92%; width: 28px; height: 28px; animation-duration: 21s; animation-delay: 3s; }
.b8 { left: 48%; width: 20px; height: 20px; animation-duration: 25s; animation-delay: 8s; }

@keyframes floatBubble {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50vh) translateX(25px);
    opacity: 0.6;
  }
  85% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-105vh) translateX(-20px);
    opacity: 0;
  }
}

/* ==========================================================================
   TYPOGRAPHY & ACCENT BADGES
   ========================================================================== */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--aqua-dark);
  font-size: 11.5px;
  font-weight: 700;
  margin: 0 0 12px;
  display: inline-block;
  font-family: var(--sans);
}

.eyebrow.light {
  color: var(--aqua-light);
  letter-spacing: 2.5px;
}

.eyebrow.aqua-eyebrow {
  color: var(--aqua-bright);
}

.eyebrow.gold {
  color: var(--gold-light);
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 184, 178, 0.15);
  border: 1px solid rgba(94, 234, 212, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.eyebrow-pill .eyebrow {
  margin: 0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua-bright);
  box-shadow: 0 0 0 0 rgba(28, 212, 204, 0.8);
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(28, 212, 204, 0.8);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(28, 212, 204, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(28, 212, 204, 0);
  }
}

/* ==========================================================================
   NAVIGATION & HEADER (Luminous Glass Header)
   ========================================================================== */

.site-header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5.5vw, 84px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(2, 18, 27, 0.88) 0%, rgba(3, 24, 34, 0.55) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(14, 184, 178, 0.18);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  height: 74px;
  background: rgba(2, 18, 27, 0.97);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(14, 184, 178, 0.35);
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.1;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

/* Logo image inside the header brand link */
.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua-bright);
  filter: drop-shadow(0 2px 12px rgba(28, 212, 204, 0.45));
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.brand:hover .brand-mark {
  transform: rotate(15deg) scale(1.1);
  color: var(--gold-light);
}

.brand b {
  font: 700 22px/1 var(--serif);
  letter-spacing: 1.2px;
  color: #ffffff;
  display: block;
}

.brand small {
  display: block;
  font-size: 8.5px;
  letter-spacing: 3px;
  margin-top: 5px;
  color: var(--aqua-light);
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
}

.nav a {
  color: rgba(235, 248, 250, 0.88);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua-bright), var(--gold-light));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  width: 100%;
}

.nav a.nav-cta {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-dark) 100%);
  color: #041822;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 18px rgba(201, 163, 94, 0.35);
  transition: all 0.3s ease;
}

.nav a.nav-cta::after {
  display: none;
}

.nav a.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 163, 94, 0.5);
  color: #021017;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(14, 184, 178, 0.2);
  border-color: var(--aqua-bright);
}

.menu-toggle i {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: 0.3s ease;
  border-radius: 2px;
}

/* ==========================================================================
   BUTTONS & CALL-TO-ACTIONS (Aqua Luxury Styling)
   ========================================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, var(--aqua) 0%, var(--aqua-dark) 100%);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.6px;
  cursor: pointer;
  box-shadow: var(--shadow-aqua);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--sans);
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  background: linear-gradient(135deg, var(--aqua-bright) 0%, var(--aqua) 100%);
  color: var(--ocean-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 212, 204, 0.45);
}

.button span {
  transition: transform 0.3s ease;
}

.button:hover span {
  transform: translateX(4px);
}

/* Champagne Gold Primary Accent Button */
.button-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-dark) 100%);
  color: #041620;
  box-shadow: var(--shadow-gold);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
}

.button-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 100%);
  color: #020e14;
  box-shadow: 0 12px 36px rgba(201, 163, 94, 0.55);
  transform: translateY(-3px);
}

/* Frosted Glass Ghost Button */
.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ocean-dark);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
/* Header logo image */
.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
}

/* Footer logo image */
.footer-logo-img {
  height: 38px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

@media (max-width: 580px) {
  .brand-logo-img {
    height: 34px;
  }
}

/* ==========================================================================
   HERO SECTION (Luxury Tropical Waterfront Ambience)
   ========================================================================== */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  padding: clamp(130px, 15vw, 190px) clamp(24px, 7vw, 110px) 110px;
  background: linear-gradient(175deg, rgba(2, 18, 27, 0.86) 0%, rgba(4, 34, 48, 0.76) 55%, rgba(2, 18, 27, 0.94) 100%),
              url('https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=2000&q=85') center/cover no-repeat;
  overflow: hidden;
}

/* Subtle Animated Ambient Water Reflections */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 65%, rgba(14, 184, 178, 0.25) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(201, 163, 94, 0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: waterCaustic 12s ease-in-out infinite alternate;
}

@keyframes waterCaustic {
  0% {
    opacity: 0.65;
    transform: scale(1) translateY(0);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.05) translateY(-8px);
  }
  100% {
    opacity: 0.75;
    transform: scale(1.02) translateY(5px);
  }
}

/* Bottom Radiant Lagoon Glow */
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(14, 184, 178, 0.35) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-content {
  max-width: 880px;
  position: relative;
  z-index: 2;
  animation: heroEntry 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroEntry {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font: 700 clamp(44px, 6.4vw, 86px)/1.04 var(--serif);
  margin: 0 0 20px;
  letter-spacing: -0.5px;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
  color: #ffffff;
}

.hero h1 span {
  display: block;
  font-size: 0.42em;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 3px;
}

.hero-copy {
  font: 400 clamp(20px, 2.3vw, 28px)/1.4 var(--serif);
  margin: 20px 0 14px;
  color: rgba(240, 252, 254, 0.96);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-support {
  font-size: 16px;
  color: rgba(210, 240, 245, 0.90);
  margin: 0 0 30px;
  max-width: 620px;
  line-height: 1.8;
}

/* Trust Badges in Hero */
.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 24, 34, 0.7);
  border: 1px solid rgba(201, 163, 94, 0.4);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.trust-badge .stars {
  color: var(--gold-bright);
  font-size: 14px;
  letter-spacing: 2px;
}

.trust-badge .trust-text {
  font-size: 12.5px;
  color: #ffffff;
}

.trust-pill {
  background: rgba(14, 184, 178, 0.18);
  border: 1px solid rgba(94, 234, 212, 0.35);
  color: var(--aqua-light);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(230, 248, 250, 0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  transition: all 0.3s ease;
}

.scroll-hint:hover {
  color: var(--aqua-bright);
  transform: translateX(-50%) translateY(2px);
}

.scroll-hint span {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(230, 248, 250, 0.55);
  border-radius: var(--radius-full);
  position: relative;
}

.scroll-hint span::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 6px;
  width: 2px;
  height: 7px;
  background: var(--aqua-bright);
  border-radius: 2px;
  animation: mouseWheel 2s infinite;
}

@keyframes mouseWheel {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Organic Flowing Wave Transition */
.wave-divider {
  position: relative;
  width: 100%;
  height: 80px;
  margin-top: -79px;
  z-index: 10;
  line-height: 0;
  color: var(--ocean-dark);
  pointer-events: none;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==========================================================================
   HIGHLIGHTS STRIP (4 Pillars of Aqua Dine)
   ========================================================================== */

.highlights-strip {
  background: var(--ocean-dark);
  padding: 40px clamp(24px, 7vw, 110px);
  position: relative;
  z-index: 15;
  border-bottom: 1px solid rgba(14, 184, 178, 0.2);
}

.highlights-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}

.highlight-item:hover {
  background: rgba(14, 184, 178, 0.12);
  border-color: rgba(94, 234, 212, 0.35);
  transform: translateY(-4px);
}

.highlight-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.highlight-text h4 {
  font: 700 16px/1.3 var(--serif);
  color: var(--aqua-light);
  margin: 0 0 6px;
  letter-spacing: 0.3px;
}

.highlight-text p {
  font-size: 12.5px;
  color: rgba(210, 240, 245, 0.82);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   SECTIONS & ABOUT EXPERIENCE
   ========================================================================== */

.section {
  padding: clamp(80px, 9vw, 135px) clamp(24px, 7vw, 110px);
  position: relative;
  z-index: 2;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.section-heading h2 {
  font: 700 clamp(32px, 3.8vw, 54px)/1.15 var(--serif);
  margin: 0;
  color: var(--ocean-dark);
  letter-spacing: -0.5px;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading.centered h2 {
  margin-bottom: 12px;
}

.text-link {
  color: var(--aqua-dark);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--aqua);
  padding-bottom: 4px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.text-link span {
  transition: transform 0.3s ease;
}

.text-link:hover {
  color: var(--aqua);
  border-color: var(--gold);
  transform: translateX(4px);
}

.text-link:hover span {
  transform: translateX(3px);
}

.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  background: var(--bg-page);
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.image-card > span {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(2, 18, 27, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--aqua-light);
  border: 1px solid rgba(14, 184, 178, 0.35);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.2px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.image-floating-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line-subtle);
}

.image-floating-badge .icon {
  font-size: 22px;
}

.image-floating-badge strong {
  display: block;
  font-size: 13.5px;
  color: var(--ocean-dark);
  line-height: 1.2;
}

.image-floating-badge small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.about-image {
  height: 540px;
  border-radius: 200px 200px 24px 24px;
  border: 6px solid #ffffff;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(14, 184, 178, 0.25);
}

.about-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 18px;
  color: var(--ocean-dark);
  font-family: var(--serif);
  line-height: 1.15;
}

.about-copy .lead-text {
  font-size: 18px;
  color: var(--aqua-dark);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: var(--serif);
}

.about-copy::before {
  content: '';
  display: block;
  width: 56px;
  height: 3.5px;
  background: linear-gradient(90deg, var(--aqua), var(--gold));
  border-radius: 3px;
  margin-bottom: 24px;
}

.about-copy p:not(.eyebrow):not(.lead-text) {
  color: var(--text-muted);
  font-size: 15.5px;
  margin: 0 0 20px;
  line-height: 1.8;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--line-subtle);
}

.stat-card {
  background: var(--bg-soft);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-subtle);
  text-align: center;
}

.stat-num {
  display: block;
  font: 700 24px/1.2 var(--serif);
  color: var(--ocean-dark);
}

.stat-lbl {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
  display: block;
}

/* ==========================================================================
   AQUA DINING EXPERIENCE SECTION (Atmospheric Deep Ocean Lagoon)
   ========================================================================== */

.aqua-experience {
  background: linear-gradient(145deg, var(--ocean-abyss) 0%, var(--ocean-deep) 45%, var(--ocean-dark) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Floating Underwater Shimmer */
.aqua-experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(14, 184, 178, 0.20) 0%, transparent 48%),
    radial-gradient(circle at 15% 75%, rgba(201, 163, 94, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(94, 234, 212, 0.16) 0%, transparent 55%);
  pointer-events: none;
  animation: causticFloat 14s ease-in-out infinite alternate;
}

@keyframes causticFloat {
  0%   { opacity: 0.7; transform: scale(1) rotate(0deg); }
  100% { opacity: 1;   transform: scale(1.04) rotate(1deg); }
}

.aqua-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.aqua-visual {
  position: relative;
}

.aqua-visual-main {
  height: 490px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(94, 234, 212, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(14, 184, 178, 0.25);
  position: relative;
}

.visual-glow-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(2, 18, 27, 0.85);
  backdrop-filter: blur(10px);
  color: var(--aqua-light);
  border: 1px solid rgba(14, 184, 178, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.aqua-visual-accent {
  position: absolute;
  bottom: -32px;
  right: -28px;
  width: 250px;
  height: 250px;
  border-radius: var(--radius-md);
  border: 4px solid var(--ocean-dark);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.accent-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-bright);
  color: #03141c;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.aqua-copy h2 {
  font: 700 clamp(36px, 4.5vw, 62px)/1.1 var(--serif);
  margin: 0 0 20px;
  color: #ffffff;
}

.aqua-copy p {
  color: rgba(215, 242, 245, 0.90);
  font-size: 15.5px;
  margin-bottom: 28px;
  line-height: 1.8;
}

.aqua-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.aqua-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 20px;
  border-radius: var(--radius-md);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.aqua-feature-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--aqua-bright);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(14, 184, 178, 0.25);
}

.card-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(14, 184, 178, 0.2);
  border: 1px solid rgba(94, 234, 212, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.aqua-feature-card h3 {
  font: 600 18px/1.3 var(--serif);
  margin: 0 0 8px;
  color: var(--aqua-light);
}

.aqua-feature-card p {
  font-size: 13px;
  color: rgba(200, 235, 240, 0.85);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   FAVORITES / FEATURED DISHES
   ========================================================================== */

.favorites {
  background: var(--bg-soft);
}

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

.featured-card {
  padding: 0;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-subtle);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--aqua);
}

.featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-card:hover img {
  transform: scale(1.06);
}

.featured-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-card .dish-category {
  color: var(--aqua-dark);
  text-transform: uppercase;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
}

.featured-card h3 {
  font: 600 19px/1.35 var(--serif);
  margin: 8px 0 12px;
  color: var(--ocean-dark);
}

.featured-card .price {
  font-weight: 700;
  color: var(--aqua-dark);
  font-size: 16.5px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line-subtle);
}

/* ==========================================================================
   EDITORIAL MENU SECTION & CATEGORY PILLS
   ========================================================================== */

.menu-section {
  background: var(--bg-page);
}

.menu-intro {
  color: var(--text-muted);
  font-size: 15.5px;
  max-width: 580px;
  margin: 0 auto;
}

.menu-search-wrapper {
  max-width: 640px;
  margin: 0 auto 34px;
}

.menu-search {
  background: var(--bg-card);
  border: 1.5px solid var(--line-subtle);
  display: flex;
  align-items: center;
  border-radius: var(--radius-full);
  padding: 4px 22px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.menu-search:focus-within {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px var(--aqua-mist), var(--shadow-sm);
}

.menu-search span {
  font-size: 20px;
  color: var(--aqua-dark);
}

.menu-search input {
  width: 100%;
  font: 14.5px var(--sans);
  padding: 14px 14px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text-main);
}

/* Pill / Tab Category Navigation
   Fixed: removed `justify-content: center`, which — combined with
   `overflow-x: auto` — was centering the pill row before scroll offset
   was applied, cutting off the first pill (e.g. "Beverages") behind the
   left edge. Now left-aligned, with left padding + scroll-padding so the
   first pill always has breathing room and is never clipped. */
.category-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 20px 28px;
  margin: 0 auto 28px;
  max-width: 1100px;
  justify-content: flex-start;
  scroll-padding-left: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.category-nav button {
  flex: 0 0 auto;
  white-space: nowrap;
  border: 1.5px solid var(--line-subtle);
  background: var(--bg-card);
  padding: 11px 24px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font: 600 13px var(--sans);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.category-nav button:hover {
  border-color: var(--aqua);
  color: var(--aqua-dark);
  transform: translateY(-2px);
}

.category-nav button.active {
  background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--aqua-dark) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(14, 184, 178, 0.32);
}

.menu-list {
  max-width: 1120px;
  margin: auto;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 36px;
}

.menu-item {
  padding: 22px 26px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line-subtle);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-item:hover {
  border-color: var(--aqua);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.menu-item h4 {
  font-size: 17px;
  margin: 0;
  font-weight: 700;
  color: var(--ocean-dark);
  font-family: var(--serif);
  letter-spacing: 0.2px;
}

.menu-item .notes {
  font-size: 13px;
  color: var(--text-muted);
  margin: 6px 0 0;
  line-height: 1.55;
}

.menu-item .price {
  text-align: right;
  white-space: pre-line;
  font-weight: 700;
  color: var(--aqua-dark);
  font-size: 16px;
}

/* Dietary Indicators */
.food-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  border-radius: 2px;
}

.food-dot::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  margin: 2px;
  border-radius: 50%;
  background: currentColor;
}

.veg { color: #16a34a; }
.nonveg { color: #dc2626; }

.empty-message {
  text-align: center;
  color: var(--text-muted);
  padding: 44px 0;
  font-size: 16px;
}

/* ==========================================================================
   CUSTOMER REVIEWS & SOCIAL PROOF SECTION ("Dekhne se Acha Review Aana Chahiye")
   ========================================================================== */

.reviews-section {
  background: var(--bg-soft);
  position: relative;
}

.reviews-intro {
  color: var(--text-muted);
  font-size: 15.5px;
  max-width: 560px;
  margin: 0 auto;
}

/* Rating Scorecard Banner */
.rating-scorecard {
  max-width: 1100px;
  margin: 0 auto 50px;
  background: var(--bg-card);
  border: 1.5px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-sm);
  background-image: radial-gradient(circle at 100% 0%, rgba(14, 184, 178, 0.08) 0%, transparent 60%);
}

.scorecard-main {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--line-subtle);
  padding-right: 40px;
}

.score-big {
  font: 800 56px/1 var(--serif);
  color: var(--ocean-dark);
}

.score-stars .stars {
  color: var(--gold-bright);
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.score-stars span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.scorecard-badges {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: space-around;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-icon {
  font-size: 26px;
}

.badge-item strong {
  display: block;
  font-size: 14px;
  color: var(--ocean-dark);
  font-family: var(--serif);
}

.badge-item small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1280px;
  margin: 0 auto;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1.5px solid var(--line-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--aqua);
  box-shadow: var(--shadow-md), 0 0 20px rgba(14, 184, 178, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--aqua-bright);
  box-shadow: 0 4px 10px rgba(14, 184, 178, 0.25);
}

.reviewer-info {
  flex: 1;
}

.reviewer-info h4 {
  font: 700 16px/1.2 var(--serif);
  margin: 0 0 3px;
  color: var(--ocean-dark);
}

.reviewer-tag {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
}

.review-rating {
  color: var(--gold-bright);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-body {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--line-subtle);
  font-size: 11.5px;
}

.verified-badge {
  color: var(--sea-green);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-date {
  color: var(--text-light);
}

/* Review Action Callout */
.review-action-banner {
  max-width: 900px;
  margin: 50px auto 0;
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-dark) 100%);
  color: #ffffff;
  padding: 34px 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(14, 184, 178, 0.3);
  box-shadow: var(--shadow-lg);
}

.action-text h3 {
  font: 700 24px var(--serif);
  margin: 0 0 6px;
  color: #ffffff;
}

.action-text p {
  margin: 0;
  color: rgba(210, 240, 245, 0.85);
  font-size: 14.5px;
}

/* ==========================================================================
   GALLERY SECTION (Refined Masonry & Lightbox)
   ========================================================================== */

.gallery {
  background: var(--bg-page);
}

.gallery-note {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 6px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  grid-auto-rows: 240px;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--line-subtle);
}

.gallery-grid figure:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-grid figure::after {
  content: '✦ Enlarge View';
  position: absolute;
  inset: 0;
  background: rgba(2, 18, 27, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.07);
}

.gallery-grid figure:hover::after {
  opacity: 1;
}

/* ==========================================================================
   RESERVATION SECTION (Luxury Split Ocean Card)
   ========================================================================== */

.reservation-section {
  background: var(--bg-soft);
}

.reservation {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin: 0 auto;
  max-width: 1280px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line-subtle);
}

.reservation-intro {
  padding: clamp(44px, 6vw, 84px);
  background: linear-gradient(145deg, var(--ocean-abyss) 0%, var(--ocean-deep) 60%, var(--ocean-dark) 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.reservation-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(14, 184, 178, 0.22) 0%, transparent 55%);
  pointer-events: none;
}

.reservation-intro h2 {
  color: #ffffff;
  font-size: clamp(34px, 3.8vw, 52px);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.reservation-intro p:not(.eyebrow) {
  color: rgba(215, 242, 245, 0.88);
  font-size: 15.5px;
  position: relative;
  z-index: 1;
  line-height: 1.75;
}

.reservation-perks {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.perk-item span {
  font-size: 20px;
}

.perk-item strong {
  display: block;
  font-size: 13.5px;
  color: var(--aqua-light);
}

.perk-item small {
  display: block;
  font-size: 11.5px;
  color: rgba(200, 235, 240, 0.8);
}

.reservation-form-wrapper {
  padding: clamp(40px, 6vw, 80px);
}

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

.form-grid .full-width {
  grid-column: span 2;
}

.reservation label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
  color: var(--ocean-dark);
  display: block;
}

.reservation input, .reservation select, .reservation textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1.5px solid var(--line-subtle);
  background: var(--bg-page);
  padding: 13px 16px;
  font: 14px var(--sans);
  border-radius: var(--radius-sm);
  outline: none;
  color: var(--text-main);
  transition: all 0.25s ease;
}

.reservation input:focus, .reservation select:focus, .reservation textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3.5px var(--aqua-mist);
  background: #ffffff;
}

.reservation form > .button {
  margin-top: 26px;
  width: 100%;
}

.form-status {
  font-size: 14px;
  color: var(--aqua-dark);
  margin-top: 14px;
  font-weight: 600;
}

/* ==========================================================================
   CONTACT & MAP SECTION
   ========================================================================== */

.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--ocean-dark);
  color: #ffffff;
  position: relative;
}

.contact-info {
  padding: clamp(60px, 8vw, 130px);
}

.contact h2 {
  font-size: clamp(36px, 4.2vw, 58px);
  margin-bottom: 22px;
  color: #ffffff;
  font-family: var(--serif);
}

.contact address {
  font-style: normal;
  color: rgba(215, 242, 245, 0.88);
  font-size: 16.5px;
  margin-bottom: 26px;
  line-height: 1.8;
}

.contact-timings {
  margin-bottom: 36px;
}

.timing-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: var(--radius-md);
}

.timing-badge span {
  font-size: 22px;
}

.timing-badge strong {
  display: block;
  font-size: 13.5px;
  color: var(--aqua-light);
}

.timing-badge p {
  margin: 0;
  font-size: 13px;
  color: rgba(210, 240, 245, 0.85);
}

.contact-form {
  margin: clamp(40px, 6vw, 84px);
  align-self: center;
  padding: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 16px;
}

.contact-form h3 {
  font: 600 28px var(--serif);
  margin: 0;
  color: #ffffff;
}

.form-subtext {
  font-size: 13px;
  color: rgba(200, 235, 240, 0.8);
  margin: 0 0 10px;
}

.contact-form input, .contact-form textarea {
  font: 14px var(--sans);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-sm);
  outline: none;
  color: var(--text-main);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--aqua-bright);
  box-shadow: 0 0 0 3px var(--aqua-mist);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.map {
  padding: 90px 7vw;
  background: linear-gradient(rgba(2, 18, 27, 0.65), rgba(2, 18, 27, 0.7)),
              url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?auto=format&fit=crop&w=1800&q=70') center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map > div {
  background: rgba(244, 250, 251, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 52px;
  max-width: 600px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(14, 184, 178, 0.3);
  text-align: center;
}

.map h2 {
  font-size: 38px;
  margin: 0 0 14px;
  color: var(--ocean-dark);
  font-family: var(--serif);
}

.map p:not(.eyebrow) {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
}

/* ==========================================================================
   FOOTER (Abyssal Deep Ocean with Champagne Touches)
   ========================================================================== */

footer {
  background: var(--ocean-abyss);
  color: rgba(185, 220, 225, 0.85);
  padding: 76px 7vw 36px;
  text-align: center;
  border-top: 1px solid rgba(14, 184, 178, 0.25);
  position: relative;
  z-index: 2;
}

.footer-top {
  margin-bottom: 20px;
}

footer .brand {
  justify-content: center;
  color: #ffffff;
}

footer .brand b {
  color: #ffffff;
}

/* Logo image inside the footer brand link */
.footer-logo-img {
  height: 38px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.footer-tagline {
  font-size: 14px;
  color: var(--aqua-light);
  margin-top: 12px;
  letter-spacing: 0.8px;
}

.footer-address {
  font-size: 14px;
  margin: 20px auto 30px;
  max-width: 600px;
  color: rgba(160, 200, 205, 0.8);
  line-height: 1.75;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;