/* ═══════════════════════════════════════════════════════════════
   YUNUS GÜNGÖR HAIR DESIGNER — Premium Corporate Dark Theme
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;

  /* Dark Corporate Palette */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-tertiary: #1a1a24;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.04);

  --text-primary: #f0ece4;
  --text-secondary: #a09b93;
  --text-muted: #6b6660;

  /* Luxury Gold System */
  --color-gold: #c9a96e;
  --color-gold-dark: #b08d4f;
  --color-gold-light: #e8d5a8;
  --color-gold-glow: rgba(201, 169, 110, 0.12);
  --color-gold-gradient: linear-gradient(135deg, #c9a96e 0%, #e8d5a8 50%, #c9a96e 100%);
  --color-gold-gradient-dark: linear-gradient(135deg, #b08d4f 0%, #c9a96e 100%);

  /* Status Colors */
  --color-success: #4ade80;
  --color-success-bg: rgba(74, 222, 128, 0.1);
  --color-warning: #fbbf24;
  --color-warning-bg: rgba(251, 191, 36, 0.1);
  --color-danger: #f87171;
  --color-danger-bg: rgba(248, 113, 113, 0.1);

  --border-light: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(201, 169, 110, 0.25);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.15);
  --shadow-gold-lg: 0 16px 48px rgba(201, 169, 110, 0.2);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.05);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

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

button, input, select, textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════ */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* ═══════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════ */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s, box-shadow 0.4s;
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  background-color: rgba(10, 10, 15, 0.9);
  border-bottom-color: var(--border-gold);
}

header.header-hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.2);
  transition: var(--transition);
}

.logo-icon:hover {
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.4);
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font-display);
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

nav ul {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

nav a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold-gradient);
  transition: var(--transition);
  border-radius: var(--radius-full);
}

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

nav a:hover::after {
  width: 100%;
}

.btn-nav {
  background: var(--color-gold-gradient-dark);
  color: var(--bg-primary);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.02em;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  filter: brightness(1.15);
}

/* ═══════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════ */

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border-medium);
  font-size: 1.3rem;
  color: var(--color-gold);
  cursor: pointer;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  z-index: 201;
}

.mobile-menu-btn:hover {
  background-color: var(--bg-glass);
  border-color: var(--color-gold);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-toggle {
  display: none;
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  padding: 10rem 0 7rem;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Ambient glow effects positioned cleanly in corners */
.glow-top-right {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle at 100% 0%, rgba(201, 169, 110, 0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: ambientPulse 8s ease-in-out infinite;
}

.glow-bottom-left {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle at 0% 100%, rgba(201, 169, 110, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: ambientPulse 10s ease-in-out infinite reverse;
}

@keyframes ambientPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 169, 110, 0.1);
  color: var(--color-gold);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.badge i {
  color: #fbbf24;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.05;
  max-width: 850px;
  margin-bottom: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero h1 span {
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.btn-primary {
  background: var(--color-gold-gradient-dark);
  color: var(--bg-primary);
  padding: 1.05rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
  filter: brightness(1.1);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  padding: 1.05rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: var(--bg-glass);
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  transform: translateY(-3px);
}

.hero-image-wrapper {
  margin-top: 5rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: ambientPulse 6s ease-in-out infinite;
}

.hero-logo-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(201, 169, 110, 0.15), var(--shadow-lg);
  border: 3px solid rgba(201, 169, 110, 0.3);
  background-color: var(--bg-secondary);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.hero-logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 80px rgba(201, 169, 110, 0.25), var(--shadow-lg);
  border-color: var(--color-gold);
}

/* ═══════════════════════════════════════
   SECTION BASE
   ═══════════════════════════════════════ */

section {
  width: 100%;
  padding: 7rem 0;
  position: relative;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.divider {
  width: 70px;
  height: 3px;
  background: var(--color-gold-gradient);
  margin: 1.75rem auto 1.5rem;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════ */

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

.service-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: var(--transition);
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.05);
}

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

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 169, 110, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--color-gold-gradient-dark);
  color: var(--bg-primary);
  border-color: transparent;
  transform: scale(1.1) rotate(-3deg);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   UNIFIED SECTION CARD WRAPPER
   ═══════════════════════════════════════ */

.section-card-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--bg-glass);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* ═══════════════════════════════════════
   ABOUT / HAKKIMIZDA
   ═══════════════════════════════════════ */

#about {
  position: relative;
}

#contact {
  position: relative;
}

.about-container {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  border-left: 2px solid var(--color-gold);
  padding-left: 1rem;
  transition: var(--transition);
}

.stat-item:hover {
  border-left-color: var(--color-gold-light);
  transform: translateX(4px);
}

.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-gold-light);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 0.35rem;
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════ */

.reviews-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 3.5rem;
  font-family: var(--font-serif);
  color: rgba(201, 169, 110, 0.08);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  background: rgba(255, 255, 255, 0.04);
}

.review-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.2rem;
}

.review-text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: var(--color-gold-gradient-dark);
  color: var(--bg-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.user-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.user-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   BOOKING SECTION
   ═══════════════════════════════════════ */

.booking-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.booking-form-side {
  padding: 3rem;
  border-right: 1px solid var(--border-light);
}

.booking-info-side {
  padding: 3rem;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.04) 0%, rgba(10, 10, 15, 0.5) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-form-side h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.booking-info-side h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background-color: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
  color: var(--text-primary);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Native dropdown options - force black text for readability */
select.form-control option {
  background-color: #ffffff;
  color: #000000;
}

select.form-control option:checked {
  background-color: #f0e6d2;
  color: #000000;
}

/* ═══════════════════════════════════════
   SLOTS
   ═══════════════════════════════════════ */

.slots-container {
  margin-top: 1.5rem;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.slot-btn {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-primary);
}

.slot-btn:hover:not(:disabled) {
  border-color: var(--color-gold);
  background: rgba(201, 169, 110, 0.08);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

.slot-btn.selected {
  background: var(--color-gold-gradient-dark);
  color: var(--bg-primary);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}

.slot-btn:disabled {
  background-color: rgba(255, 255, 255, 0.01);
  border-color: var(--border-light);
  color: var(--text-muted);
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.4;
}

/* ═══════════════════════════════════════
   BOOKING MESSAGE
   ═══════════════════════════════════════ */

.booking-message {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
  animation: fadeInUp 0.3s ease;
}

.booking-message.success {
  background-color: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid rgba(74, 222, 128, 0.2);
  display: block;
}

.booking-message.error {
  background-color: var(--color-danger-bg);
  color: var(--color-danger);
  border: 1px solid rgba(248, 113, 113, 0.2);
  display: block;
}

/* ═══════════════════════════════════════
   INFO BLOCKS (Booking Side)
   ═══════════════════════════════════════ */

.info-block {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.info-item {
  display: flex;
  gap: 1.15rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-item:hover .info-icon {
  background: var(--color-gold-gradient-dark);
  color: var(--bg-primary);
  border-color: transparent;
  transform: scale(1.1);
}

.info-content h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.info-content p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.info-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--color-gold);
  font-weight: 600;
}

.info-map-link:hover {
  color: var(--color-gold-light);
  gap: 0.5rem;
}

/* ═══════════════════════════════════════
   CONTACT / MAP SECTION
   ═══════════════════════════════════════ */

#contact {
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.contact-info-side {
  padding: 3rem;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-map-side {
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.contact-map-side iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.75) contrast(1.1) saturate(0.8);
  transition: var(--transition-slow);
}

.contact-map-side:hover iframe {
  filter: brightness(0.85) contrast(1.05) saturate(0.9);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 5rem 2rem 2.5rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: var(--color-gold-gradient);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-col h3 {
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
  font-weight: 700;
  position: relative;
  color: var(--text-primary);
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 35px;
  height: 2px;
  background: var(--color-gold-gradient);
  border-radius: var(--radius-full);
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.footer-links a::before {
  content: '→';
  color: var(--color-gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
  font-size: 0.8rem;
}

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

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.social-links {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  font-size: 1rem;
}

.social-icon:hover {
  background: var(--color-gold-gradient-dark);
  color: var(--bg-primary);
  border-color: transparent;
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-gold);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ═══════════════════════════════════════
   ADMIN STYLES
   ═══════════════════════════════════════ */

.admin-body {
  background-color: var(--bg-primary);
  padding-top: 6.5rem;
}

.past-row {
  opacity: 0.5;
}

.past-row td {
  color: var(--text-muted);
}

.admin-header {
  border-bottom: 1px solid var(--border-light);
  background-color: var(--bg-secondary);
  padding: 1.25rem 2rem;
}

.admin-nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.admin-badge {
  background: var(--color-gold-gradient-dark);
  color: var(--bg-primary);
  font-size: 0.7rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.btn-logout {
  background: none;
  border: 1px solid var(--border-medium);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
}

.btn-logout:hover {
  background-color: var(--bg-glass);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.admin-content {
  max-width: 1280px;
  margin: 3rem auto;
  padding: 0 2rem;
}

/* ═══════════════════════════════════════
   DASHBOARD CARDS
   ═══════════════════════════════════════ */

.dashboard-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.dashboard-toolbar {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.admin-filters {
  display: flex;
  gap: 0.4rem;
  background-color: var(--bg-tertiary);
  padding: 0.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.filter-btn {
  background: none;
  border: none;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active {
  background: var(--color-gold-gradient-dark);
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold);
}

.filter-btn:hover:not(.active) {
  color: var(--color-gold);
  background-color: rgba(201, 169, 110, 0.05);
}

.toolbar-date {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ═══════════════════════════════════════
   BOOKINGS TABLE
   ═══════════════════════════════════════ */

.bookings-table-wrapper {
  overflow-x: auto;
}

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

.bookings-table th {
  background-color: var(--bg-tertiary);
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bookings-table td {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  vertical-align: middle;
  color: var(--text-secondary);
}

.bookings-table tr:last-child td {
  border-bottom: none;
}

.bookings-table tr:hover {
  background-color: rgba(201, 169, 110, 0.02);
}

/* Status Pills */
.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: capitalize;
}

.status-pill.pending {
  background-color: var(--color-warning-bg);
  color: var(--color-warning);
  border: 1px solid rgba(251, 191, 36, 0.15);
}

.status-pill.approved {
  background-color: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid rgba(74, 222, 128, 0.15);
}

.status-pill.rejected {
  background-color: var(--color-danger-bg);
  color: var(--color-danger);
  border: 1px solid rgba(248, 113, 113, 0.15);
}

.status-pill.completed {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn-action {
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-action.approve {
  background-color: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid rgba(74, 222, 128, 0.15);
}

.btn-action.approve:hover {
  background-color: var(--color-success);
  color: var(--bg-primary);
}

.btn-action.reject {
  background-color: var(--color-warning-bg);
  color: var(--color-warning);
  border: 1px solid rgba(251, 191, 36, 0.15);
}

.btn-action.reject:hover {
  background-color: var(--color-warning);
  color: var(--bg-primary);
}

.btn-action.delete {
  background-color: var(--color-danger-bg);
  color: var(--color-danger);
  border: 1px solid rgba(248, 113, 113, 0.15);
}

.btn-action.delete:hover {
  background-color: var(--color-danger);
  color: var(--bg-primary);
}

.no-bookings {
  padding: 4.5rem 2rem;
  text-align: center;
  color: var(--text-muted);
}

.no-bookings i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--border-medium);
  display: block;
}

/* ═══════════════════════════════════════
   LOGIN / AUTH
   ═══════════════════════════════════════ */

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.login-wrapper::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: ambientPulse 8s ease-in-out infinite;
}

.login-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: ambientPulse 10s ease-in-out infinite reverse;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-glass);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 3rem 2.75rem;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
}

.login-logo {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  margin: 0 auto 1.75rem;
  object-fit: cover;
  background-color: var(--bg-secondary);
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.15);
}

.login-card h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.login-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.login-btn {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */

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

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

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

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

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

/* Floating particles background */
.particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* Horizontal line separator */
.section-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-gold) 50%, transparent 100%);
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 992px)
   ═══════════════════════════════════════ */

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-form-side {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .location-section,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info-side {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .map-container,
  .contact-map-side {
    min-height: 300px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (max-width: 768px)
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
  header {
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    background-color: rgba(10, 10, 15, 0.92) !important;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-container>div:not(.logo-container):not(.header-right) {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-lg);
    z-index: 200;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex !important;
    flex-direction: column;
    border-left: 1px solid var(--border-gold);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 1.75rem;
  }

  nav a {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-secondary);
  }

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

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-form-side {
    padding: 2rem 1.5rem;
  }

  .booking-info-side {
    padding: 2rem 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Admin mobile overrides */
  .dashboard-toolbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
  }

  .admin-filters {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.4rem;
  }

  .admin-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 1 1 auto;
    text-align: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .toolbar-date {
    width: 100%;
    flex-wrap: wrap;
  }

  .toolbar-date input {
    flex: 1;
    min-width: 150px;
  }

  .bookings-table-wrapper {
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .bookings-table,
  .bookings-table thead,
  .bookings-table tbody,
  .bookings-table tr,
  .bookings-table td {
    display: block;
  }

  .bookings-table thead {
    display: none;
  }

  .bookings-table tr {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin: 0 0 1.25rem 0;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
  }

  .bookings-table tr:hover {
    background-color: var(--bg-secondary);
  }

  .bookings-table td {
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
  }

  .bookings-table td:last-child {
    border-bottom: none;
    padding-top: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .bookings-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 1rem;
    text-align: left;
  }

  .action-buttons {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.25rem;
  }

  .btn-action {
    width: 100%;
    justify-content: center;
    padding: 0.6rem;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ═══════════════════════════════════════ */

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    border-left: 2px solid var(--color-gold);
    padding-left: 1rem;
  }

  .admin-nav {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }

  .nav-container {
    padding: 1rem 1.25rem;
  }

  section {
    padding: 4rem 1.25rem;
  }
}

/* ═══════════════════════════════════════
   TOAST NOTIFICATIONS
   ═══════════════════════════════════════ */

#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  width: calc(100% - 48px);
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--color-gold);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, opacity 0.3s;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(20px);
}

.toast.success {
  border-left-color: var(--color-success);
}

.toast.warning {
  border-left-color: var(--color-warning);
}

.toast.danger {
  border-left-color: var(--color-danger);
}

.toast.info {
  border-left-color: var(--color-gold);
}

.toast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 0 0 0 10px;
  transition: var(--transition);
}

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

.toast-body {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-family: var(--font-body);
}

@keyframes toastSlideIn {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes toastFadeOut {
  to {
    transform: translateY(-15px) scale(0.95);
    opacity: 0;
  }
}