/* =============================================
   THARI HOTEL & SALÓN — Premium Styles
   ============================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --cream: #F5EFE6;
  --cream-dark: #E8DFD3;
  --coffee: #1C1917;
  --coffee-light: #292524;
  --red: #B91C1C;
  --red-hover: #991B1B;
  --red-glow: rgba(185, 28, 28, 0.4);
  --gold: #D4A853;
  --gold-light: #F0D78C;
  --white: #FFFFFF;
  --text-dark: #1C1917;
  --text-light: #F5EFE6;
  --text-muted: #78716C;
  --shadow-sm: 0 2px 8px rgba(28, 25, 23, 0.08);
  --shadow-md: 0 8px 24px rgba(28, 25, 23, 0.12);
  --shadow-lg: 0 16px 48px rgba(28, 25, 23, 0.18);
  --shadow-glow: 0 0 30px rgba(185, 28, 28, 0.15);
  --radius: 15px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--cream);
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Spacing ---- */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.8;
}

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

.section-subtitle-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 30px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--red);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: width 0.6s ease, height 0.6s ease;
  transform: translate(-50%, -50%);
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--coffee);
  border: 2px solid var(--coffee);
}

.btn-outline:hover {
  background: var(--coffee);
  color: var(--cream);
  transform: translateY(-3px);
}

.btn-light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

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

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(245, 239, 230, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  transition: var(--transition);
}

.nav-logo span {
  color: var(--red);
}

.navbar.scrolled .nav-logo {
  color: var(--coffee);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  transition: var(--transition-fast);
  position: relative;
}

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

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

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

.navbar.scrolled .nav-links a {
  color: var(--text-muted);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--coffee);
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.8rem !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--coffee);
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 25, 23, 0.75) 0%,
    rgba(28, 25, 23, 0.45) 50%,
    rgba(28, 25, 23, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 24px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  padding: 8px 20px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  background: rgba(212, 168, 83, 0.08);
}

.hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.hero-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-dot 2s ease-in-out infinite;
}

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

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ---- Services Section ---- */
.services {
  background: var(--white);
}

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

.service-card {
  padding: 40px 30px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(28, 25, 23, 0.06);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--coffee);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--coffee);
  color: var(--cream);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Rooms Section ---- */
.rooms {
  background: var(--cream);
  position: relative;
}

.rooms-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.room-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--coffee) 0%, var(--coffee-light) 100%);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(28, 25, 23, 0.25);
}

.room-card:nth-child(even) {
  direction: rtl;
}

.room-card:nth-child(even) > * {
  direction: ltr;
}

.room-image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

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

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

.room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  z-index: 2;
}

.room-info {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-type {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}

.room-name {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.room-description {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.room-amenity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.room-amenity svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.5;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.room-price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
}

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

.room-extra {
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.15), rgba(212, 168, 83, 0.1));
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
  margin-bottom: 24px;
}

.room-extra p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.room-extra strong {
  color: var(--gold-light);
}

/* ---- Salon Section (Nightlife) ---- */
.salon {
  background: var(--coffee);
  position: relative;
  overflow: hidden;
}

.salon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(185, 28, 28, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.salon::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.salon .section-label::before {
  background: var(--gold);
}

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

.salon .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.salon-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.salon-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  transition: transform 0.8s ease;
}

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

/* Neon glow effects */
.salon-image::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, var(--red), var(--gold), #7C3AED, var(--red));
  background-size: 300% 300%;
  animation: neon-border 4s ease-in-out infinite;
  z-index: -1;
  opacity: 0.7;
  filter: blur(1px);
}

@keyframes neon-border {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.salon-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2rem;
}

.salon-feature {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  text-align: center;
}

.salon-feature:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.salon-feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.salon-feature h4 {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 4px;
}

.salon-feature p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* Neon text effect */
.neon-text {
  text-shadow:
    0 0 10px var(--red-glow),
    0 0 40px rgba(185, 28, 28, 0.2);
}

/* ---- Offer Banner ---- */
.offer-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-hover) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.offer-content {
  position: relative;
  z-index: 1;
}

.offer-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.offer-banner h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.offer-banner p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.offer-discount {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.2);
  margin-bottom: 0.5rem;
}

/* ---- Packages Section ---- */
.packages {
  background: var(--white);
}

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

.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(28, 25, 23, 0.06);
  transition: var(--transition);
  position: relative;
}

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

.package-card.featured {
  background: linear-gradient(135deg, var(--coffee), var(--coffee-light));
  border: none;
  grid-column: span 2;
}

.package-header {
  padding: 36px 36px 0;
}

.package-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 8px;
}

.package-card.featured .package-label {
  color: var(--gold);
}

.package-name {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.package-card.featured .package-name {
  color: var(--white);
}

.package-ideal {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.package-card.featured .package-ideal {
  color: rgba(255,255,255,0.5);
}

.package-body {
  padding: 0 36px 36px;
}

.package-includes {
  margin-bottom: 24px;
}

.package-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(28, 25, 23, 0.05);
}

.package-card.featured .package-includes li {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.06);
}

.package-includes li svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}

.package-card.featured .package-includes li svg {
  color: var(--gold);
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 36px;
  border-top: 1px solid rgba(28, 25, 23, 0.06);
}

.package-card.featured .package-footer {
  border-color: rgba(255,255,255,0.06);
}

.package-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--coffee);
}

.package-card.featured .package-price {
  color: var(--gold-light);
}

.package-price small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
}

.package-card.featured .package-price small {
  color: rgba(255,255,255,0.4);
}

/* ---- Gallery ---- */
.gallery {
  background: var(--cream);
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.6s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius);
}

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

/* ---- FAQ Section ---- */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--red);
}

.faq-question h3 {
  font-size: 1.05rem;
  font-weight: 700;
  flex: 1;
  padding-right: 20px;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-toggle svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- Map Section ---- */
.map-section {
  background: var(--cream);
  padding-bottom: 0;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
}

.map-info {
  background: var(--coffee);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-info h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.map-info p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.map-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.map-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.map-embed {
  min-height: 450px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- Footer ---- */
.footer {
  background: var(--coffee);
  padding: 80px 0 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--red);
}

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

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

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

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-float .tooltip {
  background: var(--white);
  color: var(--coffee);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.lightbox.active img {
  transform: scale(1);
}

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

.lightbox-close:hover {
  background: var(--red);
}

/* ---- Animations (Scroll Reveal) ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .section-title { font-size: 2.2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .room-card { grid-template-columns: 1fr; }
  .room-card:nth-child(even) { direction: ltr; }
  .room-image { min-height: 280px; }
  .salon-content { grid-template-columns: 1fr; gap: 40px; }
  .map-wrapper { grid-template-columns: 1fr; }
  .map-embed { min-height: 350px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { grid-column: span 1; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { padding: 70px 0; }
  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .offer-discount { font-size: 3.5rem; }
  .offer-banner h2 { font-size: 2rem; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 1.5rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }

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

  .nav-links a {
    color: var(--coffee) !important;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

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

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-buttons { flex-direction: column; }
  .room-info { padding: 30px 24px; }
  .salon-features { grid-template-columns: 1fr 1fr; }
  .map-info { padding: 30px 24px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .gallery-masonry { columns: 1; }
  .salon-features { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .container { padding: 0 16px; }
}
