/* =========================================================
   GLOBAL STYLES
========================================================= */

:root {
  --bg-dark: #0b0b0f;
  --bg-black: #050608;
  --bg-card: #111111;
  --gold: #D4AF37;
  --text-light: #f5f5f5;
  --text-muted: #d0d0d0;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--text-light);
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}


/* =========================================================
   HEADER
========================================================= */

.header {
  width: 100%;
  background: var(--bg-black);
  position: fixed;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  text-decoration: none;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.4rem;
  font-weight: 700;
}

.logo-sub {
  font-size: 0.8rem;
  color: var(--gold);
}

.nav-desktop ul {
  display: flex;
  gap: 30px;
}

.nav-desktop a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-desktop a:hover::after {
  width: 100%;
}


/* MOBILE NAV */

.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gold);
}

.nav-mobile {
  display: none;
  background: var(--bg-black);
  width: 100%;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.nav-mobile a {
  color: var(--text-light);
  padding: 12px 0;
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  height: 100vh;
  position: relative;
  padding-top: 100px;
  display: flex;
  align-items: center;
}

.hero-bg {
  background: url('/images/hero-men-salon.jpg') center/cover no-repeat;
  filter: brightness(0.45);
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0));
  z-index: -1;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-tagline {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.hero-highlight {
  font-size: 1rem;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 25px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: #000;
  font-weight: 600;
}

.btn-primary:hover {
  background: #c29b2f;
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

.hero-info {
  margin-top: 10px;
  font-size: 0.95rem;
}


/* =========================================================
   SECTION HEADERS
========================================================= */

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.kicker {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.sub {
  margin-top: 8px;
  color: var(--text-muted);
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why {
  padding: 120px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.why-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212,175,55,0.25);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.service-card {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 12px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212,175,55,0.25);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.price {
  display: block;
  margin: 10px 0;
  color: var(--gold);
  font-weight: 600;
}

.service-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gold);
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}


/* Highlighted service */
.service-card.highlight {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(212,175,55,0.3);
}


/* =========================================================
   GALLERY (Uniform Grid)
========================================================= */

.gallery {
  padding: 120px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
}

.gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.55);
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--gold);
  font-size: 0.85rem;
}


/* =========================================================
   PACKAGES
========================================================= */

.packages {
  padding: 120px 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.package-card {
  background: var(--bg-card);
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.25);
}

.package-card ul {
  margin: 15px 0 10px;
  padding-left: 20px;
}

.package-badge {
  background: var(--gold);
  color: #000;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 15px;
  font-weight: 600;
}

.package-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(212,175,55,0.35);
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews {
  padding: 120px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.review-card {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.25);
}

.review-card img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
}

.stars {
  color: var(--gold);
  margin: 8px 0;
}

.review-text {
  font-size: 0.9rem;
}


/* =========================================================
   BOOKING FORM
========================================================= */

.booking {
  padding: 120px 0;
}

.booking-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.booking-form label {
  margin-bottom: 6px;
  color: var(--gold);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px;
  border-radius: 6px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-light);
}

.btn-submit {
  width: 100%;
  margin-top: 15px;
}

.form-note {
  margin-top: 10px;
  text-align: center;
  color: var(--text-muted);
}


/* PREMIUM MODAL */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: var(--transition);
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--bg-card);
  padding: 40px;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  border: 1px solid var(--gold);
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 15px;
  top: 10px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
}


/* =========================================================
   CONTACT & LOCATION
========================================================= */

.contact {
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}

.contact-info h3 {
  font-size: 1.7rem;
}

.contact-info p {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.social-icons a {
  color: var(--gold);
  transition: var(--transition);
}

.social-icons a:hover {
  color: #fff;
}

.contact-map img {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #000;
  padding: 60px 0 25px;
  margin-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  text-align: center;
  margin-top: 25px;
  color: var(--text-muted);
  font-size: 0.85rem;
}


/* =========================================================
   FLOATING BUTTONS (WhatsApp, Call, Map)
========================================================= */

.float-btn {
  position: fixed;
  bottom: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  box-shadow: 0 0 15px rgba(212,175,55,0.45);
  transition: var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(212,175,55,0.7);
}

.float-btn.whatsapp {
  right: 25px;
}

.float-btn.call {
  left: 25px;
}

.float-btn.map {
  right: 25px;
  bottom: 90px;
}


/* =========================================================
   SCROLL REVEAL ANIMATIONS
========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.7s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 700px) {
  .nav-desktop {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-mobile {
    display: none;
  }
  .nav-mobile.active {
    display: block;
  }
  .services-grid,
  .packages-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ================== CONTACT & LOCATION SECTION ================== */

.contact-section {
  padding: 80px 20px;
  background: #050508;
  color: #f5f5f5;
}

.contact-container {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: flex-start;
}

.contact-details {
  font-family: "Montserrat", sans-serif;
}

.contact-details p {
  font-size: 0.95rem;
  color: #d0d0d0;
  line-height: 1.6;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.contact-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin: 16px 0 8px;
}

.contact-details a {
  color: #d4af37;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-hours {
  margin: 16px 0;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 24px;
  font-size: 0.9rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f5f5f5;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.social-link:hover {
  background: #d4af37;
  color: #050505;
  border-color: #d4af37;
}

.contact-directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

/* Map styling */
.contact-map {
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container iframe:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
}

/* Responsive Contact */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

