/* ============================================================
   MING RESORT PHUKET - Hotel Website Stylesheet
   Luxury Pool Villa Hotel | Mai Khao, Phuket
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+Thai:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Primary Palette ── */
  --color-navy:         #1a3a5c;
  --color-navy-deep:    #0f2440;
  --color-navy-light:   #2a5580;
  --color-navy-pale:    #e8eef5;

  --color-gold:         #c9a96e;
  --color-gold-light:   #dfc697;
  --color-gold-dark:    #a8893f;
  --color-gold-shimmer: #e4d4a5;

  --color-teal:         #1a3c34;
  --color-teal-light:   #2d5e4f;

  --color-white-warm:   #faf8f5;
  --color-white:        #ffffff;

  --color-charcoal:     #1a1a1a;
  --color-gray:         #6b6b6b;
  --color-gray-light:   #c4c4c4;
  --color-gray-pale:    #e8e8e8;

  --color-cream:        #f5f0e8;
  --color-cream-dark:   #ece4d4;

  /* ── Semantic Colors ── */
  --color-bg-primary:   var(--color-white-warm);
  --color-bg-secondary: var(--color-white);
  --color-bg-dark:      var(--color-navy-deep);
  --color-text-primary: var(--color-charcoal);
  --color-text-secondary: var(--color-gray);
  --color-accent:       var(--color-gold);

  /* ── Typography ── */
  --font-heading:    'Playfair Display', Georgia, serif;
  --font-subheading: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-thai:       'Noto Sans Thai', 'Inter', sans-serif;

  --fs-display:    clamp(2.8rem, 6vw, 5.5rem);
  --fs-h1:         clamp(2.2rem, 4.5vw, 4rem);
  --fs-h2:         clamp(1.8rem, 3.5vw, 3rem);
  --fs-h3:         clamp(1.4rem, 2.5vw, 2rem);
  --fs-h4:         clamp(1.15rem, 2vw, 1.5rem);
  --fs-body-lg:    1.125rem;
  --fs-body:       1rem;
  --fs-body-sm:    0.9375rem;
  --fs-caption:    0.875rem;
  --fs-small:      0.8125rem;

  --lh-heading:    1.2;
  --lh-body:       1.7;

  --fw-light:      300;
  --fw-regular:    400;
  --fw-medium:     500;
  --fw-semibold:   600;
  --fw-bold:       700;

  /* ── Spacing ── */
  --space-xs:      0.5rem;
  --space-sm:      0.75rem;
  --space-md:      1rem;
  --space-lg:      1.5rem;
  --space-xl:      2rem;
  --space-2xl:     3rem;
  --space-3xl:     4rem;
  --space-4xl:     6rem;

  --section-py:    clamp(4rem, 8vw, 8rem);
  --section-px:    clamp(1rem, 5vw, 2rem);

  /* ── Layout ── */
  --container-lg:  1140px;
  --nav-height:    80px;

  /* ── Border Radius ── */
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     12px;
  --radius-xl:     20px;
  --radius-full:   50%;
  --radius-pill:   9999px;

  /* ── Shadows ── */
  --shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md:     0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg:     0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl:     0 16px 48px rgba(0, 0, 0, 0.15);

  /* ── Transitions ── */
  --transition-fast:   0.2s ease;
  --transition-base:   0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; height: auto; }
img { object-fit: cover; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
a:hover { color: var(--color-gold); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--color-gold); color: var(--color-white); }

/* ==========================================================
   UTILITIES
   ========================================================== */
.container {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.gold-separator {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  margin: var(--space-md) auto var(--space-lg);
}

.gold-separator--left { margin-left: 0; }

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body-sm);
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--color-white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

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

/* ==========================================================
   NAVIGATION
   ========================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 0 var(--section-px);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(15, 36, 64, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  height: 64px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

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

.nav-logo-icon {
  width: 40px;
  height: 32px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  color: var(--color-gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

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

.nav-links li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
}

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

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

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

.lang-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-switch {
  background: rgba(255,255,255,0.12);
  padding: 3px 10px !important;
  border-radius: var(--radius-pill);
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}

.lang-switch:hover,
.lang-switch.active {
  background: var(--color-gold) !important;
  color: var(--color-white) !important;
}

.menu-toggle {
  display: none;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  margin: 5px 0;
  transition: all 0.3s;
}

.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(5px, -5px); }

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15,36,64,0.35) 0%, rgba(15,36,64,0.5) 50%, rgba(26,26,26,0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  padding: 0 var(--space-xl);
}

.hero-logo-large {
  width: 120px;
  height: auto;
  margin-bottom: var(--space-lg);
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.hero-subtitle {
  font-family: var(--font-subheading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.slide-indicators {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slide-dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  width: 24px;
  border-radius: 5px;
}

/* ==========================================================
   ABOUT SECTION
   ========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

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

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.about-badge {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: var(--color-navy-deep);
  color: var(--color-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge .badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
}

.about-badge .badge-text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.about-features {
  margin-top: var(--space-xl);
}

.about-features li {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.feature-icon {
  color: var(--color-gold);
  font-size: 0.5rem;
  margin-top: 6px;
}

.about-features li strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.about-features li span {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* ==========================================================
   STATS SECTION
   ========================================================== */
.stats-section {
  background: var(--color-navy-deep);
  padding: var(--space-3xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================
   ROOMS / VILLA CARDS
   ========================================================== */
.villa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.villa-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s, box-shadow 0.4s;
}

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

.villa-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.villa-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

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

.villa-card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-navy-deep);
  color: var(--color-gold);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.villa-card-content {
  padding: var(--space-lg);
}

.villa-card-location {
  font-size: 0.8rem;
  color: var(--color-gold-dark);
  font-weight: 500;
  margin-bottom: 4px;
}

.villa-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.villa-card-desc {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.villa-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-gray-pale);
}

.villa-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.villa-card-rating .stars { color: var(--color-gold); font-size: 0.8rem; }
.rating-text { font-size: 0.8rem; color: var(--color-text-secondary); }
.villa-card-beds { font-size: 0.8rem; color: var(--color-text-secondary); font-weight: 500; }

/* ==========================================================
   FACILITIES (GYM & SPA OVERVIEW)
   ========================================================== */
.facilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.facility-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.facility-card-image {
  height: 280px;
  overflow: hidden;
}

.facility-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-card-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facility-card-content h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
}

.facility-card-content p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.facility-tag {
  display: inline-block;
  background: var(--color-navy-pale);
  color: var(--color-navy);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
}

.facility-tag--gold {
  background: rgba(201, 169, 110, 0.15);
  color: var(--color-gold-dark);
}

/* ==========================================================
   SPA SECTION
   ========================================================== */
.spa-section {
  background: var(--color-cream);
}

.spa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.spa-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.spa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.spa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}

.spa-icon {
  width: 64px;
  height: 64px;
  background: var(--color-cream);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.spa-icon svg {
  color: var(--color-gold-dark);
}

.spa-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
}

.spa-card .spa-duration {
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.spa-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.spa-price-unit {
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
}

.spa-booking-notice {
  background: linear-gradient(135deg, var(--color-navy-deep), var(--color-navy));
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  margin-top: var(--space-2xl);
}

.spa-booking-notice h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.spa-booking-notice p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

.spa-booking-notice .booking-highlight {
  color: var(--color-gold);
  font-weight: 600;
}

/* ==========================================================
   GALLERY
   ========================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
  aspect-ratio: 4/3;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--large { grid-column: span 2; }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials-section {
  background: var(--color-navy-deep);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: var(--space-xl) 0;
}

.testimonial-slide.active { display: block; }

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  font-family: var(--font-subheading);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.testimonial-author-info { text-align: left; }
.testimonial-author-info strong { color: var(--color-white); font-size: 1rem; display: block; }
.testimonial-author-info span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.testimonial-rating { color: var(--color-gold); }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-xl);
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.testimonial-dots button.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  width: 24px;
  border-radius: 5px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--color-navy-deep);
  color: rgba(255,255,255,0.8);
  padding-top: 4px;
}

.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--color-navy-light), var(--color-gold), var(--color-navy-light));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding: var(--space-3xl) 0;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-logo { margin-bottom: var(--space-md); }
.footer-logo .logo-text { font-size: 1.5rem; }

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-contact svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) 0;
  text-align: center;
}

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

/* ==========================================================
   LIGHTBOX
   ========================================================== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active { display: flex; }

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.3s;
}

.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* ==========================================================
   BACK TO TOP
   ========================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--color-gold); transform: translateY(-3px); }

/* ==========================================================
   ANIMATIONS
   ========================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .villa-grid { grid-template-columns: repeat(2, 1fr); }
  .spa-grid { grid-template-columns: repeat(3, 1fr); }
  .facility-card { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item--large { grid-column: span 2; }
}

@media (min-width: 1024px) {
  .villa-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (max-width: 1023px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 36, 64, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 1000;
  }

  .nav-links.active { display: flex; }
  .nav-links li a { font-size: 1.2rem; color: var(--color-white); }
  .menu-toggle { display: block; }

  .lang-switcher {
    flex-direction: row;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .spa-card { padding: var(--space-lg); }
  .spa-price { font-size: 1.5rem; }
}
