@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --aegean-dark: #071E26;
  --aegean-deep: #0B2C37;
  --aegean: #13495B;
  --turquoise: #208798;
  --turquoise-light: #48B5C5;
  --terracotta: #C6683D;
  --terracotta-hover: #D77A50;
  --gold: #CBA358;
  --sand: #F8F5EE;
  --sand-card: #FAF8F3;
  --whitewash: #FFFFFF;
  --ink: #142226;
  --ink-muted: #536A70;
  --border: #E0E7E5;
  --border-light: #EBF0EE;
  --shadow-sm: 0 4px 12px rgba(11, 44, 55, 0.06);
  --shadow-md: 0 12px 28px rgba(11, 44, 55, 0.12);
  --shadow-lg: 0 24px 48px rgba(11, 44, 55, 0.22);
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  background-color: var(--sand);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--aegean-dark);
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  display: inline-block;
}

/* Glass Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1000;
  transition: all var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  height: 70px;
  background: rgba(11, 44, 55, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(198, 104, 61, 0.3);
}

.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

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

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

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

.btn-cta {
  background: linear-gradient(135deg, var(--terracotta), #D77A50);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(198, 104, 61, 0.35);
  transition: all var(--transition-fast) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 104, 61, 0.5);
  background: linear-gradient(135deg, #D77A50, var(--terracotta));
}

.btn-cta::after {
  display: none !important;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 5%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.05);
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 30, 38, 0.5) 0%, rgba(11, 44, 55, 0.35) 50%, rgba(7, 30, 38, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin-top: 40px;
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--sand);
}

.hero-badge span {
  color: var(--gold);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 400;
}

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

.btn-primary {
  background: var(--terracotta);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(198, 104, 61, 0.4);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: var(--terracotta-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(198, 104, 61, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* Quick Stats Bar */
.stats-bar {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: -60px auto 0;
  background: var(--whitewash);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 30px;
  gap: 20px;
  border: 1px solid var(--border-light);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 15px;
  border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(32, 135, 152, 0.1);
  color: var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-text h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--aegean-dark);
  margin-bottom: 2px;
}

.stat-text p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* Sections */
section {
  padding: 100px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  color: var(--aegean-dark);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--ink-muted);
}

/* Overview & Description */
.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.overview-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--aegean-deep);
}

.overview-text p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-bottom: 20px;
  white-space: pre-line;
}

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

.info-card {
  background: var(--whitewash);
  padding: 26px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--turquoise-light);
}

.info-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--aegean);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* NEW LUXURY PHOTO GALLERY SUITE (MOSAIC & LIGHTBOX) */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
  background: var(--aegean-dark);
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.mosaic-item.main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

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

.mosaic-item:hover img {
  transform: scale(1.08);
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 30, 38, 0.75) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.mosaic-item:hover .mosaic-overlay {
  opacity: 1;
}

.mosaic-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-view-all {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--aegean-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.btn-view-all:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--aegean-deep);
  color: white;
  border-color: var(--aegean-deep);
  box-shadow: 0 4px 12px rgba(11, 44, 55, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  background: var(--sand-card);
}

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

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 30, 38, 0.8) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Full-Screen Interactive Gallery Suite Modal */
.gallery-modal-suite {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 30, 38, 0.98);
  backdrop-filter: blur(20px);
  z-index: 5000;
  flex-direction: column;
  color: white;
}

.gallery-modal-suite.active {
  display: flex;
  animation: fadeIn 0.25s ease-out;
}

.suite-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
}

.suite-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.suite-counter {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.suite-close {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.suite-close:hover {
  background: var(--terracotta);
  transform: scale(1.1);
}

.suite-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 80px;
  overflow: hidden;
}

.suite-main img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease;
}

.suite-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

.suite-nav-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-50%) scale(1.08);
}

.suite-prev { left: 24px; }
.suite-next { right: 24px; }

.suite-caption {
  position: absolute;
  bottom: 15px;
  background: rgba(7, 30, 38, 0.85);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.suite-thumbnails {
  height: 110px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 30px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.suite-thumb {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  border: 2px solid transparent;
}

.suite-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suite-thumb:hover, .suite-thumb.active {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.05);
}

/* Amenities Section */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.amenity-card {
  background: var(--whitewash);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--turquoise-light);
}

.amenity-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(32, 135, 152, 0.12), rgba(72, 181, 197, 0.2));
  color: var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.amenity-text h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--aegean-dark);
  margin-bottom: 6px;
}

.amenity-text p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Bedrooms Section */
.bedrooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.bedroom-card {
  background: var(--whitewash);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

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

.bedroom-card-body {
  padding: 24px;
}

.bedroom-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--aegean-deep);
  margin-bottom: 12px;
}

.bedroom-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.bedroom-feature i {
  color: var(--terracotta);
  width: 20px;
}

/* Booking & Availability Section */
.booking-section {
  background: var(--aegean-dark);
  color: white;
  border-radius: 24px;
  padding: 60px 40px;
  margin: 60px auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 135, 152, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.booking-header {
  text-align: center;
  margin-bottom: 50px;
}

.booking-header h2 {
  color: white;
}

.booking-header p {
  color: rgba(255, 255, 255, 0.8);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
}

/* Live Calendar Widget */
.calendar-box {
  background: var(--whitewash);
  border-radius: 18px;
  padding: 30px;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.calendar-nav h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--aegean-dark);
}

.cal-btn {
  background: var(--sand);
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--aegean);
}

.cal-btn:hover {
  background: var(--aegean);
  color: white;
  border-color: var(--aegean);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.cal-day-name {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 10px;
}

.cal-day {
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--sand);
  border: 1px solid transparent;
  position: relative;
}

.cal-day .day-num {
  font-size: 0.95rem;
}

.cal-day .day-price {
  font-size: 0.65rem;
  color: var(--turquoise);
  font-weight: 700;
  margin-top: 1px;
}

.cal-day:hover:not(.disabled):not(.blocked) {
  background: rgba(32, 135, 152, 0.15);
  border-color: var(--turquoise);
  transform: scale(1.06);
}

.cal-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: transparent;
}

.cal-day.blocked {
  background: #FDF2F2;
  color: #9B2C2C;
  text-decoration: line-through;
  cursor: not-allowed;
  border-color: #FBD5D5;
}

.cal-day.blocked .day-price {
  display: none;
}

.cal-day.selected {
  background: var(--terracotta) !important;
  color: white !important;
  box-shadow: 0 4px 10px rgba(198, 104, 61, 0.4);
}

.cal-day.selected .day-price {
  color: white !important;
}

.cal-day.in-range {
  background: rgba(198, 104, 61, 0.15);
  color: var(--terracotta);
}

.cal-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
}

/* Booking Form Card */
.booking-form-card {
  background: var(--whitewash);
  border-radius: 18px;
  padding: 34px;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.booking-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--aegean-dark);
  margin-bottom: 8px;
}

.price-display-badge {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}

.price-val {
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
}

.price-unit {
  color: var(--ink-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-group {
  margin-bottom: 18px;
}

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

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--aegean-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--sand-card);
  transition: all var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  background: white;
  box-shadow: 0 0 0 3px rgba(32, 135, 152, 0.15);
}

/* Quote Breakdown Box */
.quote-box {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 22px;
  display: none;
  animation: fadeIn 0.3s ease;
}

.quote-box.active {
  display: block;
}

.quote-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.quote-row.total {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--aegean-dark);
  border-top: 1px dashed var(--border);
  padding-top: 12px;
  margin-top: 12px;
  margin-bottom: 0;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--terracotta), #D77A50);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(198, 104, 61, 0.35);
  transition: all var(--transition-fast);
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(198, 104, 61, 0.5);
  background: linear-gradient(135deg, #D77A50, var(--terracotta));
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Modal Success State */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 30, 38, 0.85);
  backdrop-filter: blur(10px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-box {
  background: var(--whitewash);
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(32, 135, 152, 0.15);
  color: var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
}

.modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--aegean-dark);
  margin-bottom: 12px;
}

.modal-box p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Footer */
footer {
  background: var(--aegean-dark);
  color: white;
  padding: 60px 5% 30px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

.copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 70px 5%; }
  .booking-section { padding: 40px 20px; }
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .mosaic-item.main { grid-column: span 1; grid-row: span 1; height: 300px; }
  .mosaic-item { height: 180px; }
  .suite-main { padding: 20px; }
  .suite-nav-btn { width: 44px; height: 44px; font-size: 1.4rem; }
  .suite-prev { left: 10px; }
  .suite-next { right: 10px; }
}
