@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0a1628;
  --primary-light: #162a4a;
  --accent: #c9a84c;
  --accent-light: #e8d48b;
  --accent-dark: #a07d2e;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --text: #e0dcd4;
  --text-dark: #1a1a1a;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-light: 0 4px 16px rgba(0,0,0,0.1);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 2px;
}
.logo span { color: var(--white); font-weight: 400; }
.nav-links {
  display: flex; list-style: none; gap: 32px; align-items: center;
}
.nav-links a {
  color: var(--white); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  position: relative; padding-bottom: 4px;
  transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.header-cta {
  display: flex; gap: 12px; align-items: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--accent); color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent); color: var(--primary);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366; color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}
.btn-call {
  background: var(--accent); color: var(--primary);
}
.btn-call:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 28px; height: 2px; background: var(--white);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION COMMON ===== */
.section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); margin-bottom: 20px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text);
  max-width: 600px; margin-bottom: 48px;
  opacity: 0.85;
}
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }
.section-light { background: var(--off-white); }
.section-light .section-title { color: var(--text-dark); }
.section-light .section-subtitle { color: #555; }
.section-light .section-tag { color: var(--accent-dark); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/salon.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; color: var(--accent);
  margin-bottom: 24px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  color: var(--white); line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal; color: var(--accent);
  position: relative;
}
.hero p {
  font-size: 1.15rem; color: var(--text);
  margin-bottom: 36px; max-width: 520px;
  opacity: 0.9;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; margin-top: 60px;
  padding-top: 32px; border-top: 1px solid var(--glass-border);
}
.hero-stat h3 {
  font-family: var(--font-heading);
  font-size: 2rem; color: var(--accent);
}
.hero-stat p { font-size: 0.85rem; color: var(--text); opacity: 0.7; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-images {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  position: relative;
}
.about-images img {
  width: 100%; border-radius: var(--radius);
  object-fit: cover; transition: var(--transition);
}
.about-images img:first-child { height: 320px; grid-column: 1 / -1; }
.about-images img:nth-child(2),
.about-images img:nth-child(3) { height: 200px; }
.about-images img:hover { transform: scale(1.02); }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 36px;
}
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
}
.about-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); border-radius: var(--radius-sm);
  color: var(--primary); font-size: 1.2rem;
}
.about-feature h4 {
  font-size: 0.95rem; color: var(--white); margin-bottom: 4px;
}
.about-feature p {
  font-size: 0.82rem; color: var(--text); opacity: 0.7;
}

/* ===== ROOMS ===== */
.rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-color: var(--accent);
}
.room-card-img {
  position: relative; height: 260px; overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition);
}
.room-card:hover .room-card-img img { transform: scale(1.08); }
.room-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: var(--primary);
  padding: 4px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
}
.room-card-body { padding: 24px; }
.room-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; color: var(--white); margin-bottom: 8px;
}
.room-card-body p {
  font-size: 0.9rem; color: var(--text); opacity: 0.8;
  margin-bottom: 20px;
}
.room-amenities {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px;
}
.room-amenity {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text); opacity: 0.7;
}
.room-amenity svg { width: 16px; height: 16px; color: var(--accent); }
.room-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--glass-border);
}

/* ===== FACILITIES ===== */
.facilities-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.facility-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 32px 24px;
  text-align: center; transition: var(--transition);
  backdrop-filter: blur(10px);
}
.facility-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  background: rgba(201,168,76,0.08);
}
.facility-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%; font-size: 1.5rem; color: var(--primary);
}
.facility-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem; color: var(--white); margin-bottom: 8px;
}
.facility-card p {
  font-size: 0.85rem; color: var(--text); opacity: 0.75;
}

/* ===== GALLERY ===== */
.gallery-filters {
  display: flex; gap: 12px; justify-content: center;
  margin-bottom: 40px; flex-wrap: wrap;
}
.gallery-filter {
  padding: 8px 24px; border-radius: 50px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--text); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  font-family: var(--font-body);
}
.gallery-filter:hover,
.gallery-filter.active {
  background: var(--accent); color: var(--primary);
  border-color: var(--accent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  height: 260px;
  transition: var(--transition);
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.8) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.9rem; color: var(--white); font-weight: 500;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  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.05'%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");
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--primary); margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  font-size: 1.1rem; color: var(--primary);
  opacity: 0.8; margin-bottom: 32px;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ===== LOCATION ===== */
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 24px; }
.location-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.location-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: var(--accent); font-size: 1.2rem;
}
.location-item h4 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.location-item p { font-size: 0.9rem; color: var(--text); opacity: 0.8; }
.location-item a { color: var(--accent); text-decoration: none; }
.location-item a:hover { text-decoration: underline; }
.map-wrapper {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 450px;
}
.map-wrapper iframe { width: 100%; height: 100%; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 24px;
  transition: var(--transition);
  text-decoration: none;
}
.contact-card:hover {
  border-color: var(--accent);
  transform: translateX(8px);
}
.contact-card-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1.4rem;
}
.contact-card-icon.phone { background: rgba(201,168,76,0.15); color: var(--accent); }
.contact-card-icon.whatsapp { background: rgba(37,211,102,0.15); color: #25D366; }
.contact-card-icon.email { background: rgba(59,130,246,0.15); color: #3b82f6; }
.contact-card-icon.address { background: rgba(239,68,68,0.15); color: #ef4444; }
.contact-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; color: var(--text); opacity: 0.8; }
.contact-form {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 40px;
  backdrop-filter: blur(10px);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem; color: var(--white); margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem;
  color: var(--text); margin-bottom: 8px; font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white); font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--accent);
  background: rgba(201,168,76,0.05);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== FOOTER ===== */
.footer {
  background: rgba(0,0,0,0.3);
  padding: 60px 0 24px; border-top: 1px solid var(--glass-border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-about .logo { display: inline-block; margin-bottom: 16px; }
.footer-about p { font-size: 0.9rem; opacity: 0.7; margin-bottom: 20px; }
.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem; color: var(--white);
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: var(--text); text-decoration: none;
  font-size: 0.9rem; opacity: 0.7;
  transition: var(--transition);
}
.footer ul a:hover { color: var(--accent); opacity: 1; }
.footer-bottom {
  text-align: center; padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem; opacity: 0.5;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 64px; height: 64px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.6); }
}
.floating-whatsapp-tooltip {
  position: absolute; right: 76px; top: 50%; transform: translateY(-50%);
  background: #fff; color: #333; padding: 8px 16px;
  border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-light);
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.floating-whatsapp:hover .floating-whatsapp-tooltip { opacity: 1; }

/* ===== LIGHTBOX ===== */
.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;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img {
  max-width: 90%; max-height: 85vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 50%; 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(--accent); color: var(--primary); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 50%; color: var(--white);
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--accent); color: var(--primary); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
    background: var(--primary); flex-direction: column;
    justify-content: center; align-items: center;
    transition: var(--transition); gap: 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.active { right: 0; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 200px; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 240px; }
  .facilities-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}
