/* =============================================
   BeauBa Salon - Main Stylesheet
   ============================================= */

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

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark: #A07830;
  --bg: #0A0A0A;
  --bg2: #111111;
  --bg3: #1A1A1A;
  --card: #161616;
  --border: rgba(201, 168, 76, 0.18);
  --text: #E8E8E8;
  --text-muted: #888;
  --white: #fff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* =============================================
   NAVBAR
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav-logo .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}
.nav-logo .logo-main span { color: var(--white); }
.nav-logo .logo-salon {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--gold);
  text-align: center;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.btn-booknow {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-booknow:hover { background: var(--gold); color: #000; }

/* ---- MOBILE TOGGLE ---- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- MOBILE NAV DRAWER ---- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .close-btn {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

/* =============================================
   SHARED COMPONENTS
   ============================================= */

/* Section header */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Page hero (inner pages) */
.page-hero {
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 74px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.22);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  color: var(--white);
  font-weight: 400;
}
.page-hero h1 span { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Buttons */
.btn-primary {
  padding: 14px 32px;
  background: var(--gold);
  color: #000;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-gold-border {
  padding: 16px 48px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}
.btn-gold-border:hover { background: var(--gold); color: #000; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 80px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .logo-foot {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
}
.footer-brand .logo-foot span { color: var(--white); }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* =============================================
   HOME — HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center / cover no-repeat;
  filter: brightness(0.35);
  transform: scale(1.05);
  animation: zoomOut 8s ease forwards;
}
@keyframes zoomOut { to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 40%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 680px;
  animation: fadeUp 1s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 28px;
  background: rgba(201, 168, 76, 0.08);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); font-style: italic; }
.hero p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; }

/* =============================================
   HOME — WHY CHOOSE
   ============================================= */
.why-section {
  padding: 100px 80px;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 28px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s;
}
.why-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-6px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { width: 48px; height: 48px; color: var(--gold); margin-bottom: 20px; }
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   HOME — SERVICES PREVIEW
   ============================================= */
.services-preview {
  padding: 80px 80px 100px;
  background: var(--bg2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: transform 0.3s;
}
.service-card:hover { transform: scale(1.02); }
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 40%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.service-card .price { font-size: 13px; color: var(--gold); letter-spacing: 0.5px; }
.view-all-wrap { text-align: center; margin-top: 48px; }

/* =============================================
   HOME — ABOUT STRIP
   ============================================= */
.about-strip {
  padding: 80px;
  background: var(--bg3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip-img {
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
  position: relative;
}
.about-strip-img img { width: 100%; height: 100%; object-fit: cover; }
.about-strip-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 12px;
  transform: translate(12px, 12px);
  pointer-events: none;
}
.about-strip-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-strip-content h2 span { color: var(--gold); font-style: italic; }
.about-strip-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.stats-row { display: flex; gap: 40px; }
.stat h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--gold);
  font-weight: 600;
}
.stat p { font-size: 13px; color: var(--text-muted); letter-spacing: 1px; margin-top: 4px; }

/* =============================================
   HOME — MEMBERSHIP PLAN
   ============================================= */
.membership-strip {
  padding: 80px;
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(201, 168, 76, 0.05) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.membership-strip-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.membership-strip-content h2 span { color: var(--gold); font-style: italic; }
.membership-strip-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.membership-strip-img {
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
  position: relative;
}
.membership-strip-img img { width: 100%; height: 100%; object-fit: cover; }
.membership-strip-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 12px;
  transform: translate(12px, 12px);
  pointer-events: none;
}

/* =============================================
   HOME — TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 80px;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.test-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: border-color 0.3s;
}
.test-card:hover { border-color: rgba(201,168,76,0.4); }
.stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.test-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.test-author { font-size: 13px; color: var(--gold); font-weight: 500; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-main { padding: 100px 80px; }
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.about-story img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}
.about-story h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-story h2 span { color: var(--gold); }
.about-story p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}
.team-section { text-align: center; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-6px); }
.team-card img { width: 100%; height: 280px; object-fit: cover; }
.team-card-body { padding: 24px; }
.team-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}
.team-card .role { font-size: 13px; color: var(--gold); letter-spacing: 1px; margin-bottom: 12px; }
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-content-area { padding: 80px; background: var(--bg); }

.service-tab-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 12px 40px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.tab-btn:first-child { border-radius: 4px 0 0 4px; }
.tab-btn:last-child  { border-radius: 0 4px 4px 0; }
.tab-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 20px;
}
.search-bar input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  width: 100%;
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar svg { color: var(--text-muted); flex-shrink: 0; }

.services-accordion { max-width: 900px; margin: 0 auto; }
.acc-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--card);
}
.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  cursor: pointer;
  transition: background 0.2s;
}
.acc-header:hover { background: rgba(201,168,76,0.06); }
.acc-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
}
.acc-title svg { color: var(--gold); }
.acc-arrow { color: var(--gold); transition: transform 0.3s; }
.acc-item.open .acc-arrow { transform: rotate(180deg); }
.acc-body { display: none; padding: 0 28px 24px; }
.acc-item.open .acc-body { display: block; }

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-row:last-child { border-bottom: none; }
.service-row-name { font-size: 14px; color: var(--text); }
.service-row-price { font-size: 14px; color: var(--gold); font-weight: 500; }

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-area { padding: 80px; background: var(--bg); }
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 24px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item:nth-child(4n+1) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* =============================================
   CONTACT / BOOKING PAGE
   ============================================= */
.contact-area {
  padding: 80px;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact-info h2 span { color: var(--gold); }
.contact-info > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 13px; color: var(--gold); letter-spacing: 1px; margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* Booking form */
.booking-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}
.booking-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-group label span { color: var(--gold); }
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-muted); }
select.form-input { cursor: pointer; }
select.form-input option { background: var(--bg2); }

.input-icon-wrap { position: relative; }
.input-icon-wrap .input-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
.input-icon-wrap .form-input { padding-left: 42px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: #000;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

.success-msg {
  display: none;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--gold);
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .hero-content { padding: 0 24px; }

  .why-section,
  .services-preview,
  .testimonials,
  .about-strip,
  .membership-strip,
  .about-main,
  .services-content-area,
  .gallery-area,
  .contact-area { padding: 60px 24px; }

  .about-strip,
  .membership-strip,
  .about-story,
  .contact-area { grid-template-columns: 1fr; }

  .services-grid,
  .team-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(4n+1) { grid-column: span 1; aspect-ratio: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-row { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }
}
