/* ============================================
   SOLÉA BOUTIQUE SPA — Landing Page Stylesheet
   Design: Luxury Boutique / Warm Gold & Cream
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --color-gold: #B8956A;
  --color-gold-light: #D4B896;
  --color-gold-dark: #9A7A54;
  --color-rose-gold: #C9A88C;
  --color-dark: #1A1714;
  --color-dark-warm: #2C2421;
  --color-cream: #FAF6F1;
  --color-beige: #F0EAE0;
  --color-warm-gray: #E8E0D6;
  --color-text: #2C2421;
  --color-text-light: #F5F0EB;
  --color-text-muted: #8C7E72;
  --color-overlay: rgba(26, 23, 20, 0.55);
  --color-overlay-dark: rgba(26, 23, 20, 0.75);
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --section-padding: 120px;
  --container-width: 1200px;
  --header-height: 80px;

  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: 0.25s ease;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(44, 36, 33, 0.08);
  --shadow-card-hover: 0 16px 48px rgba(44, 36, 33, 0.15);
  --shadow-elevated: 0 24px 64px rgba(44, 36, 33, 0.12);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark-warm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.section-label {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  font-weight: 500;
  display: inline-block;
}

.section-title {
  margin-bottom: 24px;
  position: relative;
}

.section-description {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.1rem;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  margin: 24px auto 0;
  border: none;
}

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

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  font-weight: 600;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border: 2px solid var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}

.btn-outline-dark:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.3);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 48px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-smooth);
  background: transparent;
}

.header.scrolled {
  background: rgba(26, 23, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1001;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 6px;
  line-height: 1;
}

.logo-tagline {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-top: 4px;
}

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

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  font-weight: 500;
}

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

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

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

.nav-book-btn {
  padding: 10px 28px;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold) !important;
  border-radius: 2px;
  transition: all var(--transition-smooth) !important;
}

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

.nav-book-btn:hover {
  background: var(--color-gold) !important;
  color: var(--color-white) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 23, 20, 0.3) 0%,
    rgba(26, 23, 20, 0.5) 50%,
    rgba(26, 23, 20, 0.7) 100%
  );
  z-index: 1;
}

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

.hero-logo {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 12px;
  margin-bottom: 8px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 48px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-gold-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 1; height: 50px; }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  background: var(--color-cream);
}

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

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--color-gold-light);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.4;
}

.about-text .section-label {
  text-align: left;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 28px;
}

.about-text p {
  margin-bottom: 20px;
  text-align: left;
}

.about-text .gold-line {
  margin: 28px 0 0;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-warm-gray);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* ==========================================
   WHY US / USP SECTION
   ========================================== */
.why-us {
  background: var(--color-beige);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.usp-card {
  background: var(--color-white);
  padding: 48px 36px;
  border-radius: 4px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-rose-gold));
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

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

.usp-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-cream), var(--color-beige));
  color: var(--color-gold);
  font-size: 1.8rem;
}

.usp-card h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.usp-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  background: var(--color-dark);
  position: relative;
}

.services .section-label {
  color: var(--color-gold-light);
}

.services .section-title {
  color: var(--color-white);
}

.services .section-description {
  color: rgba(255, 255, 255, 0.6);
}

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

.service-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  group: service;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(26, 23, 20, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: all var(--transition-smooth);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(26, 23, 20, 0.2) 0%,
    rgba(26, 23, 20, 0.9) 100%
  );
}

.service-card h3 {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
}

.service-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   MENU SECTION
   ========================================== */
.menu {
  background: var(--color-cream);
  position: relative;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 12px 28px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  font-weight: 600;
}

.menu-tab:hover {
  color: var(--color-gold);
}

.menu-tab.active {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(184, 149, 106, 0.08);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 80px;
  max-width: 960px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-warm-gray);
  transition: all var(--transition-fast);
}

.menu-item:hover {
  border-color: var(--color-gold-light);
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark-warm);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--color-warm-gray);
  min-width: 40px;
  align-self: center;
  margin-bottom: 4px;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-gold);
  font-weight: 600;
  white-space: nowrap;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery {
  background: var(--color-dark);
  padding-bottom: 0;
}

.gallery .section-label { color: var(--color-gold-light); }
.gallery .section-title { color: var(--color-white); }
.gallery .section-description { color: rgba(255, 255, 255, 0.6); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 6px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 20, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(26, 23, 20, 0.4);
}

.gallery-zoom-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-smooth);
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================
   OFFERS SECTION
   ========================================== */
.offers {
  background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-cream) 100%);
  position: relative;
  overflow: hidden;
}

.offers::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.1), transparent);
  border-radius: 50%;
}

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

.offer-card {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  position: relative;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.offer-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 6px 16px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
  font-weight: 600;
}

.offer-image {
  height: 240px;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.offer-content {
  padding: 28px;
}

.offer-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.offer-content p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.offer-price .current {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold);
  font-weight: 600;
}

.offer-price .original {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

/* ==========================================
   BOOKING SECTION
   ========================================== */
.booking {
  position: relative;
  overflow: hidden;
}

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

.booking-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-dark);
}

.booking-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.booking-info {
  color: var(--color-white);
}

.booking-info .section-label {
  color: var(--color-gold-light);
}

.booking-info h2 {
  color: var(--color-white);
  margin-bottom: 24px;
}

.booking-info > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.booking-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 149, 106, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.booking-feature span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.booking-form-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: 48px;
  box-shadow: var(--shadow-elevated);
}

.booking-form-card h3 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.booking-form-card > p {
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.9rem;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-warm-gray);
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-cream);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.12);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-submit-btn {
  width: 100%;
  padding: 18px;
  margin-top: 8px;
}

/* ==========================================
   FOOTER / CONTACT SECTION
   ========================================== */
.footer {
  background: var(--color-dark);
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-name {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.footer-brand .logo-tagline {
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.footer-column h4 {
  color: var(--color-white);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-accent);
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--color-gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item .icon {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-map {
  margin-top: 16px;
  border-radius: 4px;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  border: none;
  filter: grayscale(0.3) contrast(1.1);
  border-radius: 4px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

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

/* ==========================================
   LIGHTBOX MODAL
   ========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  animation: lightboxIn 0.4s ease;
}

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

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: transparent;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: transparent;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .header {
    padding: 0 24px;
  }

  .about-grid {
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .menu-grid {
    gap: 20px 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --header-height: 70px;
  }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 60px 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

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

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero-logo {
    letter-spacing: 6px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 380px;
  }

  .about-image::after {
    display: none;
  }

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

  .about-text .section-label,
  .about-text h2,
  .about-text p {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  /* USP */
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 320px;
  }

  .service-card p {
    opacity: 1;
    transform: translateY(0);
  }

  /* Menu */
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    gap: 4px;
  }

  .menu-tab {
    padding: 10px 16px;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  /* Offers */
  .offers-grid {
    grid-template-columns: 1fr;
  }

  /* Booking */
  .booking-form-card {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  /* Lightbox */
  .lightbox-close {
    top: 16px;
    right: 16px;
  }

  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

@media (max-width: 480px) {
  .header {
    padding: 0 16px;
  }

  .logo-name {
    font-size: 1.3rem;
    letter-spacing: 4px;
  }

  .container {
    padding: 0 16px;
  }

  .about-stats {
    flex-direction: column;
    gap: 24px;
  }

  .service-card {
    height: 280px;
  }
}

/* ==========================================
   FLOATING CONTACT WIDGET
   ========================================== */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.contact-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-smooth);
  position: relative;
  text-decoration: none;
}

.contact-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

/* Tooltip styles */
.contact-tooltip {
  position: absolute;
  right: 60px;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.contact-btn:hover .contact-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Individual Brand Colors */
.contact-btn.zalo {
  background: #0068ff;
}

.contact-btn.whatsapp {
  background: #25d366;
}

.contact-btn.messenger {
  background: linear-gradient(135deg, #006aff, #00e5ff);
}

.contact-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Animations for attention */
@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(184, 149, 106, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(184, 149, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 149, 106, 0); }
}

/* Optional: Add a pulse to the main contact button if there was one, 
   but here we have multiple. Let's make them pop. */

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-contact {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  
  .contact-btn {
    width: 45px;
    height: 45px;
  }
  
  .contact-tooltip {
    display: none; /* Hide tooltips on mobile */
  }
}
