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

/* ==========================================================================
   JOE NAILS PARLOUR - LUXURY STYLING SHEET
   ========================================================================== */

/* Core Styling Tokens */
/* Core Styling Tokens (Joe Nails Parlour - Dark Admin Theme) */
/* Core Styling Tokens (Joe Nails Parlour - Light Admin Theme) */
:root {
  --gold: #C59B27;
  --gold-hover: #A67D15;
  --gold-gradient: linear-gradient(135deg, #A88238 0%, #C59B27 50%, #E5C158 100%);
  --gold-glow: 0 0 15px rgba(197, 155, 39, 0.2);
  --dark-bg: #FCF9F5;
  --dark-surface: #FFFFFF;
  --dark-card: #F7EFE5;
  --soft-pink: #FDFBF7;
  --pink-border: #E8D8C8;
  --white: #FFFFFF;
  --text-dark: #2C2621;
  --text-muted: #6E5C53;
  --text-light: #2C2621;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --border-color: #E8D8C8;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-hover);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 1px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  transition: var(--transition);
}

/* Global Layout & Sections */
section {
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.section-light {
  background-color: var(--white);
  color: var(--text-dark);
}

.section-pink {
  background-color: var(--soft-pink);
  color: var(--text-dark);
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  font-size: 2.8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-light .section-title {
  color: var(--text-dark);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 0;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.header.scrolled .nav-links a {
  color: var(--text-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
  background: var(--gold-hover);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--text-dark);
  box-shadow: var(--gold-glow);
  transform: translateY(-3px);
}

.btn-dark {
  background: #000000;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--border-color);
  transform: translateY(-3px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 5%;
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), url('../assets/beauty_salon_hero.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-content {
  max-width: 800px;
  z-index: 10;
}

.hero-tagline {
  color: var(--gold);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 20px;
  font-weight: 500;
  animation: fadeInDown 1s ease;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease;
}

.hero-services-list {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-style: italic;
  font-family: var(--font-serif);
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

/* Floating Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeInUp 1.4s ease;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-serif);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   GOLD CLUB MEMBERSHIP
   ========================================================================== */
.gold-club-section {
  background: radial-gradient(circle at top right, #1a1a1a 0%, #0d0d0d 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.gold-club-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gold-club-info h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.gold-club-info p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.vip-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.vip-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.vip-benefits li svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Gold Club Loyalty Form */
.gold-club-card {
  background: var(--dark-card);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.gold-club-card::before {
  content: 'GOLD CLUB';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 4rem;
  font-family: var(--font-serif);
  color: rgba(212, 175, 55, 0.03);
  font-weight: 900;
  pointer-events: none;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--gold);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 10px rgba(197, 155, 39, 0.15);
}

/* Tag Box Dropdown Multi-Select */
.select-tag-box {
  min-height: 52px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  cursor: pointer;
  align-items: center;
  position: relative;
}

.select-tag-box::after {
  content: '▼';
  font-size: 0.7rem;
  color: var(--gold);
  position: absolute;
  right: 15px;
}

.tag-placeholder {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tag {
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: scaleIn 0.2s ease;
}

.tag-close {
  cursor: pointer;
  font-weight: 800;
  font-size: 0.85rem;
}

.dropdown-options {
  position: absolute;
  top: 102%;
  left: 0;
  width: 100%;
  background: var(--dark-surface);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-sm);
  z-index: 100;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.dropdown-option {
  padding: 12px 18px;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-option:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

.dropdown-option.selected {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  font-weight: 600;
}

/* ==========================================================================
   SERVICES SHOWCASE
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--dark-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.service-image-wrapper {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 30px;
}

.service-card-title {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

/* ==========================================================================
   FULL PRICELIST SECTION
   ========================================================================== */
.price-section {
  background-color: var(--white);
  color: var(--text-dark);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.price-category-card {
  background: var(--soft-pink);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--pink-border);
  box-shadow: 0 10px 30px rgba(255,183,197,0.15);
  transition: var(--transition);
}

.price-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255,183,197,0.3);
}

.category-header {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-title {
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 700;
}

.category-icon {
  color: var(--gold);
}

.price-list {
  list-style: none;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.price-item-name {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.price-item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(0,0,0,0.2);
  margin: 0 10px;
}

.price-item-value {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}

/* ==========================================================================
   OFFERS SECTION
   ========================================================================== */
.offers-section {
  background: radial-gradient(circle at bottom left, #1a1a1a 0%, #0c0c0c 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.offers-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.offer-banner {
  background: var(--dark-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: var(--gold-glow);
  position: relative;
  overflow: hidden;
  animation: pulseGold 3s infinite alternate;
}

.offer-banner-content {
  flex: 1;
}

.offer-badge {
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 15px;
}

.offer-title {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.offer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.countdown-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
}

.countdown-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 15px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 70px;
}

.countdown-num {
  font-size: 1.8rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.countdown-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   IMAGE CAROUSEL & GALLERY SYSTEM
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  color: var(--text-light);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  transform: scale(0.9);
}

.gallery-card:hover img {
  transform: scale(1.15);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
  transform: scale(1);
}

.overlay-title {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 5px;
}

.overlay-category {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.overlay-price {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--white);
  font-size: 1.2rem;
}

/* Image Carousel CSS */
.carousel-wrapper {
  position: relative;
  height: 480px;
  max-width: 1000px;
  margin: 50px auto 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: flex-end;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 10;
}

.carousel-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.carousel-content {
  position: relative;
  z-index: 5;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  padding: 40px;
  width: 100%;
  color: var(--white);
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: flex;
  gap: 10px;
  z-index: 20;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background: var(--gold);
  width: 25px;
  border-radius: 5px;
}

/* ==========================================================================
   TESTIMONIALS (REVIEWS SLIDER)
   ========================================================================== */
.reviews-section {
  background-color: var(--soft-pink);
  color: var(--text-dark);
}

.reviews-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.review-card {
  display: none;
  animation: fadeIn 0.8s ease;
}

.review-card.active {
  display: block;
}

.review-stars {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 30px;
  color: #333;
}

.review-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.review-name {
  font-weight: 600;
  font-size: 1rem;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.review-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.review-nav-btn:hover {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}

/* ==========================================================================
   BEAUTY ACADEMY
   ========================================================================== */
.academy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.academy-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 450px;
}

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

.academy-courses {
  list-style: none;
  margin-top: 30px;
  margin-bottom: 40px;
}

.academy-course-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.academy-course-item svg {
  color: var(--gold);
}

.course-title {
  font-weight: 600;
  font-size: 1.05rem;
}

/* ==========================================================================
   MAP & LOCATION & CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.contact-card {
  background: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--radius-md);
}

.info-list {
  list-style: none;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.info-item svg {
  color: var(--gold);
  margin-top: 4px;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.info-value {
  font-size: 1.05rem;
  font-weight: 500;
}

/* Map frame placeholder */
.map-wrapper {
  height: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: #1c1c1c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
}

.map-placeholder svg {
  color: var(--gold);
  margin-bottom: 15px;
}

/* Contact Form inside index.html */
.contact-form {
  background: var(--dark-card);
  padding: 45px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #0b0b0b;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 5% 30px 5%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
  max-width: 320px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.social-btn:hover {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: var(--gold-glow);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 40px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   ADMIN PORTAL LAYOUT
   ========================================================================== */
.admin-body {
  background-color: var(--dark-bg);
  color: var(--text-dark);
}

.admin-header {
  background: var(--dark-surface);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 15px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.admin-badge {
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-logout {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.admin-logout:hover {
  color: var(--gold);
}

/* Admin Sidebar & Main Content Grid */
.admin-container {
  display: flex;
  min-height: calc(100vh - 75px);
}

.admin-sidebar {
  width: 250px;
  background: var(--dark-surface);
  border-right: 1px solid var(--border-color);
  padding: 30px 15px;
  flex-shrink: 0;
}

.sidebar-menu {
  list-style: none;
}

.sidebar-item {
  margin-bottom: 8px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.sidebar-link.active, .sidebar-link:hover {
  color: var(--gold);
  background: rgba(197, 155, 39, 0.08);
  border-left: 3px solid var(--gold);
}

.sidebar-link.active svg, .sidebar-link:hover svg {
  color: var(--gold);
}

.admin-main {
  flex-grow: 1;
  padding: 40px;
  background-color: var(--dark-bg);
  overflow-y: auto;
}

.admin-section {
  display: none;
}

.admin-section.active {
  display: block;
}

.admin-section-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

/* Analytics & Dashboard Cards */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.admin-stat-card {
  background: var(--dark-surface);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.admin-stat-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: var(--transition);
}

.admin-stat-card:hover::after {
  background: var(--gold-gradient);
}

.stat-card-icon {
  width: 54px;
  height: 54px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.stat-card-info {
  display: flex;
  flex-direction: column;
}

.stat-card-val {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-card-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Admin Tables */
.admin-actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.admin-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-select {
  padding: 10px 15px;
  background: var(--dark-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  outline: none;
}

.admin-search-wrapper {
  position: relative;
}

.admin-search-input {
  padding: 10px 15px 10px 40px;
  background: var(--dark-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  width: 250px;
  outline: none;
  transition: var(--transition);
}

.admin-search-input:focus {
  border-color: var(--gold);
  width: 300px;
}

.admin-search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.table-wrapper {
  background: var(--dark-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow-x: auto;
  box-shadow: 0 15px 30px rgba(197, 155, 39, 0.05);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  padding: 18px 20px;
  background: var(--dark-card);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-color);
}

.admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-dark);
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: rgba(197, 155, 39, 0.03);
  color: var(--text-dark);
}

/* Service Pill Tags inside table */
.service-pill {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 5px;
  margin-bottom: 4px;
}

.status-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-active {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}

.status-inactive {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

.status-pending {
  background: rgba(243, 156, 18, 0.15);
  color: #f39c12;
  border: 1px solid rgba(243, 156, 18, 0.3);
}

.status-contacted {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

.status-admitted {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.status-completed {
  background: rgba(155, 89, 182, 0.15);
  color: #9b59b6;
  border: 1px solid rgba(155, 89, 182, 0.3);
}

.status-declined {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.action-btn {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-edit {
  background: rgba(0, 123, 255, 0.15);
  color: #007bff;
}

.btn-edit:hover {
  background: #007bff;
  color: var(--white);
}

.btn-delete {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

.btn-delete:hover {
  background: #dc3545;
  color: var(--white);
}

/* Modal Popup Window */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.modal-card {
  background: var(--dark-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 550px;
  max-height: calc(100vh - 30px);
  display: flex;
  flex-direction: column;
  box-shadow: var(--gold-glow);
  overflow: hidden;
  animation: modalIn 0.3s ease;
  margin: auto;
}

.modal-card form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.modal-header {
  padding: 16px 24px;
  background: var(--dark-surface);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.modal-title {
  font-size: 1.3rem;
  color: var(--text-dark);
}

.modal-close {
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.modal-footer {
  padding: 16px 24px;
  background: var(--dark-surface);
  border-top: 1px solid var(--border-color);
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  flex-shrink: 0;
}

/* Admin Section Header Layout */
.admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

/* Upload Dropzone Component */
.upload-dropzone {
  border: 2px dashed rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.upload-dropzone:hover, .upload-dropzone.dragover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: var(--gold-glow);
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.upload-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 4px;
}

.upload-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.upload-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.upload-preview-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.upload-preview-img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  border: 1px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.upload-preview-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-sm {
  padding: 6px 14px !important;
  font-size: 0.75rem !important;
}

/* SMS Broadcaster Grid */
.broadcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.overview-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

.preview-sms-card {
  background: var(--dark-surface);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.phone-simulator {
  background: #000;
  border: 8px solid #222;
  border-radius: 30px;
  height: 380px;
  margin-top: 20px;
  padding: 25px 15px;
  position: relative;
  color: var(--white);
}

.phone-screen {
  background: #1a1a1a;
  height: 100%;
  border-radius: 12px;
  padding: 15px;
  overflow-y: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica;
}

.phone-bubble {
  background: #e5e5ea;
  color: #000;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.85rem;
  max-width: 85%;
  line-height: 1.4;
  margin-bottom: 10px;
  word-wrap: break-word;
  align-self: flex-start;
}

/* Settings Forms Grid */
.settings-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

/* Admin Dashboard Analytics Graphs Layout */
.analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.analytics-card {
  background: var(--dark-surface);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: var(--radius-md);
}

/* Admin Login Page Portal Overlay styling */
.admin-login-body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.login-card {
  background: var(--dark-surface);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 50px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--gold-glow);
  text-align: center;
}

.login-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.login-subtitle {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  display: block;
}

/* ==========================================================================
   CSS KEYFRAME ANIMATIONS & HELPER TRANSITIONS
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseGold {
  0% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
  }
  100% {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    border-color: rgba(212, 175, 55, 1);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Floating Animation elements */
.floating-element {
  animation: float 6s ease-in-out infinite;
}

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

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS (MOBILE FIRST / MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 992px) {
  section {
    padding: 60px 6%;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .gold-club-grid, .academy-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .academy-image {
    height: 300px;
    order: 2;
  }

  .broadcast-grid, .settings-grid, .analytics-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.3rem;
  }

  .nav-container {
    padding: 12px 5%;
  }

  .nav-cta .btn-gold {
    padding: 8px 14px;
    font-size: 0.7rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: calc(100vh - 65px);
    background: rgba(18,18,18,0.98);
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    text-align: center;
    justify-content: center;
    padding-top: 80px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-services-list {
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
  }

  .hero-actions .btn {
    padding: 10px 18px;
    font-size: 0.75rem;
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .carousel-wrapper {
    height: 320px;
  }

  .carousel-content {
    padding: 20px;
  }

  .carousel-content h3 {
    font-size: 1.4rem !important;
  }

  .carousel-content p {
    font-size: 0.8rem !important;
    max-width: 100% !important;
  }

  .section-title {
    font-size: 2.0rem;
  }

  .admin-container {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    overflow: hidden;
  }

  .sidebar-menu {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .sidebar-item {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .sidebar-link {
    padding: 8px 14px;
    font-size: 0.8rem;
    justify-content: center;
    border-bottom: 2px solid transparent;
    border-left: none !important;
  }

  .sidebar-link.active, .sidebar-link:hover {
  color: var(--gold);
  background: rgba(197, 155, 39, 0.08);
  border-left: 3px solid var(--gold);
}

  .admin-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
  }

  .admin-actions-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .admin-filters {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .admin-filters .admin-select {
  padding: 10px 15px;
  background: var(--dark-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  outline: none;
}

  .admin-search-wrapper, .admin-search-input {
    width: 100% !important;
  }

  .admin-main {
    padding: 20px 15px;
  }

  .admin-section-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

  .admin-section-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .admin-section-header .btn {
    width: 100%;
  }

  .upload-dropzone {
    padding: 18px 12px;
  }

  .broadcast-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .overview-layout-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .analytics-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .hide-mobile {
    display: none !important;
  }

  .admin-table {
    font-size: 0.7rem !important;
  }

  .admin-table th, .admin-table td {
    padding: 6px 8px !important;
  }

  .offer-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px 20px;
  }

  .countdown-wrapper {
    justify-content: center;
    gap: 8px !important;
    width: 100%;
  }

  .countdown-box {
    min-width: 50px !important;
    padding: 8px 4px !important;
  }

  .countdown-num {
    font-size: 1.15rem !important;
  }

  .countdown-label {
    font-size: 0.6rem !important;
  }

  .phone-simulator {
    max-width: 320px;
    margin: 20px auto 0 auto;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Pushes buttons down on mobile when select services dropdown is open */
  .dropdown-options {
    position: relative;
    top: 0;
    margin-top: 8px;
    box-shadow: none;
    border-color: rgba(212, 175, 55, 0.3);
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.15rem;
  }

  .nav-cta .btn-gold {
    display: none; /* Hide in header, users can use Hero CTAs or Footer */
  }

  .nav-container {
    padding: 12px 4%;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .stat-item {
    align-items: center;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   BOOKING PORTAL & SESSION SLOTS
   ========================================================================== */
.booking-section {
  padding: 80px 5%;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.booking-card-form {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.booking-card-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}
.booking-card-form .form-input {
  width: 100%;
  padding: 12px;
  background: #181818;
  border: 1px solid #333;
  color: #fff;
  border-radius: 6px;
  transition: var(--transition);
}
.booking-card-form .form-input:focus {
  border-color: var(--gold);
}
.booking-card-form select.form-input {
  height: 48px;
}

@media (max-width: 768px) {
  .booking-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .booking-card-form {
    padding: 25px !important;
  }
}
