/* ============================================================
   PREMIUM BARBERSHOP - LUXURY DARK THEME
   ============================================================ */

/* CSS Variables - Premium Color Palette */
:root {
  --brand-primary: #1a1a1a;
  --brand-accent: #c9a962;
  --brand-accent-hover: #d4b978;
  --brand-gold: #d4af37;
  --brand-gold-light: #f4e4a6;
  
  /* Dark Theme Colors */
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #242424;
  --bg-card: #1c1c1c;
  --bg-glass: rgba(26, 26, 26, 0.85);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #808080;
  --text-gold: #c9a962;
  
  /* Border Colors */
  --border-color: rgba(201, 169, 98, 0.2);
  --border-color-hover: rgba(201, 169, 98, 0.4);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(201, 169, 98, 0.15);
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing - Mobile First */
  --section-padding: 3rem;
  --section-padding-md: 4rem;
  --section-padding-lg: 6rem;
  --container-max-width: 1280px;
  --container-padding-x: 1rem;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.3; }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--text-secondary);
}

a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--brand-accent-hover);
}

.text-gold { color: var(--text-gold) !important; }
.text-secondary-custom { color: var(--text-secondary) !important; }
.text-muted-custom { color: var(--text-muted) !important; }

/* ============================================================
   NAVBAR - Glassmorphism Premium
   ============================================================ */

.navbar-premium {
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  transition: all 0.4s ease;
}

.navbar-premium.scrolled {
  background: rgba(15, 15, 15, 0.98);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand-premium {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary) !important;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand-premium:hover {
  color: var(--brand-accent) !important;
}

.navbar-brand-premium .logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.navbar-brand-premium:hover .logo-img {
  filter: brightness(0) invert(0.8) sepia(1) saturate(2) hue-rotate(10deg);
}

.nav-link-premium {
  color: var(--text-secondary) !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 1rem !important;
  position: relative;
  transition: color 0.3s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
}

/* Mobile navbar improvements */
.navbar-collapse {
  background: var(--bg-secondary);
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid var(--border-color);
  max-height: 80vh;
  overflow-y: auto;
}

.navbar-toggler {
  min-height: 48px;
  min-width: 48px;
  padding: 0.75rem;
}

@media (min-width: 992px) {
  .navbar-collapse {
    background: transparent;
    padding: 0;
    margin-top: 0;
    border: none;
    max-height: none;
    overflow-y: visible;
  }
  
  .nav-link-premium {
    padding: 0.5rem 1rem !important;
  }
}

.nav-link-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-premium:hover,
.nav-link-premium.active {
  color: var(--text-primary) !important;
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
  width: 60%;
}

/* Status Badge */
.status-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  border: 1px solid currentColor;
}

.status-badge.open {
  background: rgba(39, 174, 96, 0.15);
  color: #27ae60;
  border-color: rgba(39, 174, 96, 0.3);
}

.status-badge.closed {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border-color: rgba(231, 76, 60, 0.3);
}

/* ============================================================
   BUTTONS - Premium Styles
   ============================================================ */

.btn {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  min-height: 48px;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .btn {
    padding: 0.875rem 2rem;
  }
}

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

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

.btn-premium {
  background: var(--brand-accent);
  color: var(--bg-primary);
  border: 2px solid var(--brand-accent);
}

.btn-premium:hover {
  background: var(--brand-accent-hover);
  border-color: var(--brand-accent-hover);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.3);
}

.btn-outline-premium {
  background: transparent;
  color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
}

.btn-outline-premium:hover {
  background: var(--brand-accent);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-light-premium {
  background: var(--text-primary);
  color: var(--bg-primary);
  border: 2px solid var(--text-primary);
}

.btn-light-premium:hover {
  background: transparent;
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-dark-premium {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 2px solid var(--bg-tertiary);
}

.btn-dark-premium:hover {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

/* ============================================================
   HERO SECTION - Cinematic
   ============================================================ */

.hero-section {
  min-height: 70vh;
  min-height: 70dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  padding: 6rem 0 3rem;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 85vh;
    min-height: 85dvh;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.3) 0%,
    rgba(15, 15, 15, 0.6) 50%,
    rgba(15, 15, 15, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--brand-accent);
}

@media (min-width: 768px) {
  .hero-subtitle::before,
  .hero-subtitle::after {
    width: 40px;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-title em {
  font-style: italic;
  color: var(--brand-accent);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-cta .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero-cta {
    flex-direction: row;
  }
  
  .hero-cta .btn {
    width: auto;
  }
}

/* ============================================================
   PAGE HEROES - Editorial Standalone Pages
   ============================================================ */

.page-hero {
  position: relative;
  padding: 6rem 0 3rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 7rem 0 3.5rem;
  }
}

@media (min-width: 992px) {
  .page-hero {
    padding: 8rem 0 4.5rem;
  }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 169, 98, 0.16), transparent 38%),
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.72) 0%, rgba(15, 15, 15, 0.98) 100%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color-hover), transparent);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .page-hero-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
    gap: 2rem;
    align-items: end;
  }
}

.page-kicker {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  margin-bottom: 1.25rem;
  max-width: 11ch;
}

.page-hero-text {
  font-size: 1.075rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 40rem;
}

.page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.page-hero-panel {
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.94) 0%, rgba(15, 15, 15, 0.98) 100%);
  border: 1px solid var(--border-color);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.page-hero-panel-title {
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.metric-cluster {
  display: grid;
  gap: 1rem;
}

.metric-tile {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.metric-tile:first-child {
  border-top: none;
  padding-top: 0;
}

.metric-value {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  line-height: 1;
  color: var(--text-primary);
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.detail-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-accent);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================================
   SECTIONS - Premium Layout
   ============================================================ */

.section-premium {
  padding: var(--section-padding) var(--container-padding-x);
  position: relative;
}

@media (min-width: 768px) {
  .section-premium {
    padding: var(--section-padding-md) var(--container-padding-x);
  }
}

@media (min-width: 992px) {
  .section-premium {
    padding: var(--section-padding-lg) 0;
  }
}

.section-premium.bg-dark {
  background-color: var(--bg-secondary);
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   CARDS - Premium Glass Cards
   ============================================================ */

.card-premium {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.card-premium:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-glow);
}

.card-premium-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card-premium-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-premium:hover .card-premium-image img {
  transform: scale(1.05);
}

.card-premium-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 15, 15, 0.6) 100%);
}

.card-premium-content {
  padding: 1.75rem;
}

.card-premium-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.card-premium-text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card-premium-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.card-premium-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-accent);
}

.card-premium-price span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-card {
    padding: 2rem;
  }
}

@media (min-width: 1200px) {
  .service-card {
    padding: 2.5rem;
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-4px);
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--brand-accent);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card-text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-accent);
}

.service-card-duration {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   PRICING TABLE - Premium
   ============================================================ */

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.pricing-table th,
.pricing-table td {
  padding: 1.5rem 2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-secondary);
}

.pricing-note-text {
  color: var(--text-secondary);
  line-height: 1.7;
}

.pricing-table tr {
  transition: background 0.3s ease;
}

.pricing-table tr:hover {
  background: rgba(201, 169, 98, 0.03);
}

.pricing-table td {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.pricing-table .service-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--text-primary);
  font-weight: 500;
}

.pricing-table .service-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-accent);
  font-weight: 600;
  text-align: right;
}

/* ============================================================
   GALLERY - Premium Grid
   ============================================================ */

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

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 15, 15, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}

.gallery-zoom-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.gallery-zoom-hint svg {
  stroke: var(--brand-accent);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }
}

@media (min-width: 1200px) {
  .testimonial-card {
    padding: 2.5rem;
  }
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--brand-accent);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-accent);
  border: 2px solid var(--border-color);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}

.testimonial-rating {
  color: var(--brand-accent);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  height: 100%;
}

/* Mobile: Reduce padding to maximize form space */
@media (max-width: 575.98px) {
  .contact-card {
    padding: 1rem;
  }
}

@media (min-width: 768px) {
  .contact-card {
    padding: 2rem;
  }
}

@media (min-width: 1200px) {
  .contact-card {
    padding: 2.5rem;
  }
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--text-primary);
}

.offer-body-copy {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
}

/* Opening Hours */
.opening-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opening-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9375rem;
}

.opening-hours-list li:last-child {
  border-bottom: none;
}

.opening-hours-day {
  color: var(--text-primary);
  font-weight: 500;
}

.opening-hours-time {
  color: var(--text-secondary);
}

.opening-hours-time.closed {
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   FORMS - Premium Inputs
   ============================================================ */

.form-control-premium,
.form-select-premium {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.form-control-premium:focus,
.form-select-premium:focus {
  background: var(--bg-tertiary);
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
  color: var(--text-primary);
  outline: none;
}

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

.form-control-premium.is-invalid,
.form-select-premium.is-invalid {
  border-color: rgba(231, 76, 60, 0.65);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.form-control-premium.is-invalid:focus,
.form-select-premium.is-invalid:focus {
  border-color: rgba(231, 76, 60, 0.85);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.16);
}

.form-label-premium {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Auto-style form inputs inside contact cards */
.contact-card input[type="text"],
.contact-card input[type="password"],
.contact-card input[type="email"],
.contact-card input[type="tel"],
.contact-card input[type="date"],
.contact-card input[type="time"],
.contact-card textarea,
.contact-card select {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-card input[type="text"]:focus,
.contact-card input[type="password"]:focus,
.contact-card input[type="email"]:focus,
.contact-card input[type="tel"]:focus,
.contact-card input[type="date"]:focus,
.contact-card input[type="time"]:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  background: var(--bg-tertiary);
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
  color: var(--text-primary);
  outline: none;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: var(--text-muted);
}

/* ============================================================
   ALERTS
   ============================================================ */

.alert-premium {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.alert-premium.alert-success {
  border-color: rgba(39, 174, 96, 0.3);
}

.alert-premium.alert-success .alert-icon {
  background: #27ae60;
}

.alert-premium.alert-danger {
  border-color: rgba(231, 76, 60, 0.3);
}

.alert-premium.alert-danger .alert-icon {
  background: #e74c3c;
}

.booking-error-summary {
  border: 1px solid rgba(231, 76, 60, 0.4);
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.12), rgba(255, 255, 255, 0.02));
  padding: 1.25rem 1.5rem;
}

.booking-error-summary:focus {
  outline: 2px solid rgba(231, 76, 60, 0.55);
  outline-offset: 4px;
}

.booking-error-summary-header {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.booking-error-summary-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e74c3c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-error-summary-title {
  margin: 0 0 0.35rem;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.booking-error-summary-copy {
  color: var(--text-secondary);
}

.booking-error-summary-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-secondary);
  display: grid;
  gap: 0.45rem;
}

.booking-error-summary-list a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  margin-right: 0.35rem;
}

.booking-error-summary-list a:hover,
.booking-error-summary-list a:focus {
  color: var(--brand-accent);
}

/* ============================================================
   FOOTER - Premium
   ============================================================ */

.footer-premium {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
}

@media (min-width: 768px) {
  .footer-premium {
    padding: 4rem 0 2rem;
  }
}

@media (min-width: 992px) {
  .footer-premium {
    padding: 5rem 0 2rem;
  }
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 1.5rem;
}

.footer-signup .form-control-premium {
  min-height: 48px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--brand-accent);
}

.footer-contact {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--text-secondary);
}

.footer-contact a:hover {
  color: var(--brand-accent);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: var(--bg-primary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

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

.footer-legal a:hover {
  color: var(--brand-accent);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1050;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  color: #fff;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============================================================
   MOBILE-FIRST RESPONSIVE
   ============================================================ */

/* Base styles are mobile-first (default for small screens) */

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
  :root {
    --container-padding-x: 0.75rem;
  }
}

/* Tablet and up (768px+) */
@media (min-width: 768px) {
  :root {
    --container-padding-x: 1.5rem;
  }
  
  .page-hero-panel {
    padding: 2rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 1.25rem;
  }
  
  .card-premium-content,
  .service-card,
  .testimonial-card,
  .contact-card {
    padding: 2rem;
  }
}

/* Desktop and up (992px+) */
@media (min-width: 992px) {
  :root {
    --container-padding-x: 1rem;
  }
  
  .page-hero {
    padding: 8rem 0 4rem;
  }

  .page-hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-hero-title {
    max-width: 20ch;
  }
  
  .hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
  }
  
  .btn {
    padding: 1rem 2rem;
  }
  
  .hero-cta {
    flex-direction: row;
  }
  
  .hero-cta .btn {
    width: auto;
  }
}

/* Large desktop (1200px+) */
@media (min-width: 1200px) {
  .card-premium-content,
  .service-card,
  .testimonial-card {
    padding: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.border-gold { border-color: var(--border-color) !important; }
.bg-premium-dark { background-color: var(--bg-primary) !important; }
.bg-premium-card { background-color: var(--bg-card) !important; }

/* Map Container */
.map-container {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-container iframe {
  filter: grayscale(100%) invert(90%);
}

/* Booking Sidebar */
.booking-sidebar {
  position: sticky;
  top: 7rem;
}

.booking-service-spotlight,
.booking-choice-card,
.booking-check-card,
.booking-assurance-card {
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
}

.booking-choice-card-invalid {
  border-color: rgba(231, 76, 60, 0.45);
  box-shadow: inset 0 0 0 1px rgba(231, 76, 60, 0.08);
}

.booking-assurance-card-warning {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.06);
}

.booking-service-header,
.booking-assurance-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.booking-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--brand-accent);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-service-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.booking-service-metric,
.booking-service-extra {
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.12);
  padding: 1rem;
}

.booking-service-metric-label,
.booking-service-extra-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
}

.booking-choice-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border-color);
  padding: 1rem;
  cursor: pointer;
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.12);
}

.booking-choice-option input {
  margin: 0;
  accent-color: var(--brand-accent);
}

.booking-check-card {
  height: 100%;
}

.booking-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.booking-check-label input {
  margin-top: 0.2rem;
}

.booking-assurance-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.02));
}

/* Flatpickr Customization */
.flatpickr-calendar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekday {
  color: var(--text-primary);
  fill: var(--text-primary);
}

.flatpickr-day {
  color: var(--text-secondary);
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  color: var(--text-muted);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: var(--bg-primary);
}

.flatpickr-day:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: var(--brand-accent);
}

/* Home Section Scroll Margin */
.home-section {
  scroll-margin-top: 100px;
}

@media (max-width: 767.98px) {
  .booking-service-header,
  .booking-assurance-header {
    flex-direction: column;
  }

  .booking-service-metrics,
  .booking-choice-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PREMIUM ANIMATIONS & EFFECTS
   ============================================================ */

/* Scroll-triggered reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered reveal delays */
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Card premium hover effects */
.card-hover-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

.card-hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 30px rgba(201, 169, 98, 0.1);
}

/* Gold glow effect on hover */
.gold-glow-hover {
  transition: box-shadow 0.4s ease;
}

.gold-glow-hover:hover {
  box-shadow: 0 0 30px rgba(201, 169, 98, 0.15);
}

/* Button micro-interactions */
.btn-micro {
  transition: transform 0.2s ease, 
              box-shadow 0.2s ease,
              background-color 0.3s ease;
}

.btn-micro:hover {
  transform: scale(1.02);
}

.btn-micro:active {
  transform: scale(0.98);
}

/* Link underline animation */
.link-underline {
  position: relative;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand-accent);
  transition: width 0.3s ease;
}

.link-underline:hover::after {
  width: 100%;
}

/* Image zoom on hover */
.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-zoom:hover img {
  transform: scale(1.05);
}

/* Form input focus effects */
.input-focus-glow {
  transition: border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.input-focus-glow:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
  outline: none;
}

/* Hero text reveal animation */
@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-reveal {
  animation: textReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

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

/* Fade in on load */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in-load {
  animation: fadeIn 0.6s ease forwards;
}

/* Pulse animation for live indicators */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Shimmer effect for loading states */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(90deg, 
    var(--bg-tertiary) 25%, 
    var(--bg-card) 50%, 
    var(--bg-tertiary) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Navbar scroll hide/show */
.navbar-scroll {
  transition: transform 0.3s ease;
}

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

/* Gallery item overlay reveal */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Icon bounce on hover */
.icon-bounce:hover {
  animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Skeleton loading placeholder */
.skeleton {
  background: linear-gradient(90deg, 
    var(--bg-tertiary) 25%, 
    var(--bg-card) 50%, 
    var(--bg-tertiary) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* Dropdown menu animation */
.dropdown-menu-premium {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, 
              transform 0.2s ease, 
              visibility 0.2s ease;
}

.dropdown-menu-premium.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Enhanced focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* Smooth page transitions */
.page-transition {
  animation: pageTransition 0.4s ease;
}

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

/* Service card specific hover */
.service-card-hover {
  position: relative;
  overflow: hidden;
}

.service-card-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

/* Testimonial card quote animation */
@keyframes quoteFade {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quote-animate {
  animation: quoteFade 0.6s ease forwards;
}

/* Status badge pulse for 'open' */
.status-badge.open {
  animation: pulse 2s ease-in-out infinite;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Make reveal elements visible by default on mobile */
@media (max-width: 767.98px) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   DROPDOWN MENU STYLES
   ============================================================ */

.dropdown-menu-premium {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}

.dropdown-menu-premium .dropdown-item {
  color: var(--text-secondary);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dropdown-menu-premium .dropdown-item:hover,
.dropdown-menu-premium .dropdown-item:focus {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.dropdown-menu-premium .dropdown-item.active {
  background: var(--brand-accent);
  color: var(--bg-primary);
}

.dropdown-menu-premium .dropdown-divider {
  border-color: var(--border-color);
  margin: 0.5rem 0;
}

/* Avatar styling */
.bg-gold {
  background-color: var(--brand-accent) !important;
}

/* Enhanced navbar dropdown toggle */
.nav-link.dropdown-toggle::after {
  transition: transform 0.2s ease;
}

.nav-link.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* ============================================================
   QUICK LINKS FOOTER STYLES
   ============================================================ */

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--brand-accent);
  transform: translateX(4px);
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--brand-accent);
  transition: width 0.2s ease;
}

.footer-links a:hover::before {
  width: 12px;
}

/* ============================================================
   ALERT INFO PREMIUM STYLE
   ============================================================ */

.alert-info {
  background: rgba(52, 152, 219, 0.1);
  border-color: rgba(52, 152, 219, 0.3);
  color: #5dade2;
}

.alert-info .alert-link {
  color: var(--brand-accent);
  text-decoration: underline;
}

.alert-info .alert-link:hover {
  color: var(--brand-accent-hover);
}

/* ============================================================
   PRELOADER / PAGE TRANSITION
   ============================================================ */

.page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--brand-accent);
  animation: preloaderProgress 1.5s ease-in-out infinite;
}

@keyframes preloaderProgress {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* ============================================================
   HOVER LIFT FOR CARDS
   ============================================================ */

.contact-card,
.service-card,
.barber-card,
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

.contact-card:hover,
.service-card:hover,
.barber-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   SECTION REVEAL ANIMATION
   ============================================================ */

.section-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   GALLERY ENHANCEMENTS
   ============================================================ */

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-item-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
  transition: opacity 0.4s ease;
}

/* ============================================================
   BUTTON ENHANCEMENTS
   ============================================================ */

.btn-premium,
.btn-outline-premium {
  transition: transform 0.2s ease, 
              box-shadow 0.2s ease,
              background-color 0.3s ease,
              border-color 0.3s ease;
}

.btn-premium:hover,
.btn-outline-premium:hover {
  transform: translateY(-2px);
}

.btn-premium:active,
.btn-outline-premium:active {
  transform: translateY(0);
}

/* ============================================================
   NAVBAR LINK ANIMATION
   ============================================================ */

.nav-link-premium {
  position: relative;
}

.nav-link-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
  width: 60%;
}

/* ============================================================
   FORM ENHANCEMENTS
   ============================================================ */

.form-control,
.form-select {
  transition: border-color 0.3s ease, 
              box-shadow 0.3s ease,
              background-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
  background-color: var(--bg-card);
}

/* ============================================================
   TABLE ENHANCEMENTS
   ============================================================ */

.pricing-table tr {
  transition: background-color 0.2s ease;
}

.pricing-table tr:hover {
  background-color: rgba(201, 169, 98, 0.05);
}

/* ============================================================
   STATUS BADGE PULSE
   ============================================================ */

.status-badge.open {
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================================
   SCROLLBAR STYLING
   ============================================================ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-accent);
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION - Lucide Icons
   ============================================================ */

/* Body padding for fixed bottom nav on mobile */
@media (max-width: 991.98px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 64px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(15, 15, 15, 0.99) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  min-height: 48px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.mobile-nav-item:active {
  transform: scale(0.92);
  opacity: 0.7;
}

.mobile-nav-item.active {
  color: var(--brand-gold);
}

.mobile-nav-item.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--brand-gold);
  border-radius: 0 0 3px 3px;
}

.mobile-nav-cta {
  color: var(--brand-gold);
  position: relative;
}

.mobile-nav-cta::before {
  content: '';
  position: absolute;
  inset: 8px 12px;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 98, 0.3);
}

.mobile-nav-cta.active::before {
  background: rgba(201, 169, 98, 0.25);
  border-color: var(--brand-gold);
}

.mobile-nav-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  position: relative;
  z-index: 1;
}

.mobile-nav-item.active .mobile-nav-icon {
  stroke-width: 2.5;
}

/* Hide mobile bottom nav on desktop */
@media (min-width: 992px) {
  .mobile-bottom-nav {
    display: none;
  }
}

/* ============================================================
   EXPANDABLE CARDS - Mobile Tap to Reveal
   ============================================================ */

/* Mobile: Content hidden by default, shown when expanded */
@media (max-width: 767.98px) {
  .card-expandable {
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .card-expandable:active {
    transform: scale(0.98);
  }
  
  .card-expandable-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease, margin 0.3s ease;
  }
  
  .card-expandable.mobile-expanded .card-expandable-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
  }
  
  .card-expandable-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    color: var(--brand-gold);
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .card-expandable-toggle .expand-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
  }
  
  .card-expandable.mobile-expanded .expand-icon {
    transform: rotate(180deg);
  }
}

/* Desktop/Tablet: Always show content, hide toggle */
@media (min-width: 768px) {
  .card-expandable-content {
    display: block !important;
  }
  
  .card-expandable-toggle {
    display: none !important;
  }
  
  .card-expandable {
    cursor: default;
  }
}

/* ============================================================
   PREMIUM VISUAL SET - NEW STYLES
   Service Images, Team Cards, Shop Visuals
   ============================================================ */

/* ============================================================
   SERVICE CARDS WITH IMAGES
   ============================================================ */

.service-card-with-image {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

.service-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-card-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
  pointer-events: none;
}

.service-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-with-image .service-card-content {
  padding-top: 0.5rem;
}

.service-card-with-image .service-card-title {
  margin-top: 0;
}

.service-card-with-image .service-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .service-card-image {
    height: 240px;
  }
  
  .service-card-content {
    padding: 2rem;
  }
}

@media (min-width: 1200px) {
  .service-card-image {
    height: 280px;
  }
  
  .service-card-content {
    padding: 2rem;
  }
}

/* ============================================================
   TEAM SECTION & CARDS
   ============================================================ */

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  height: 100%;
  overflow: hidden;
}

.team-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-card-photo img {
  transform: scale(1.05);
}

.team-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.team-card-initials {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--brand-accent);
  opacity: 0.5;
}

.team-card-content {
  padding: 1.25rem;
  text-align: center;
}

.team-card-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.team-card-role {
  font-size: 0.8125rem;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.team-card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.team-skill-tag {
  font-size: 0.6875rem;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Team Group Photo */
.team-photo-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.team-group-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   SHOP INTERIOR IMAGES
   ============================================================ */

.shop-image-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.shop-interior-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.shop-image-container:hover .shop-interior-image {
  transform: scale(1.02);
}

/* ============================================================
   HERO ENHANCEMENTS
   ============================================================ */

.hero-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* ============================================================
   GALLERY ENHANCEMENTS
   ============================================================ */

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

@media (max-width: 767px) {
  .team-card-photo {
    aspect-ratio: 1;
  }
  
  .team-card-content {
    padding: 1rem;
  }
  
  .team-card-name {
    font-size: 1rem;
  }
  
  .service-card-image {
    height: 180px;
  }
}

/* ============================================================
   ANIMATION ENHANCEMENTS
   ============================================================ */

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

.reveal {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

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

/* Parallax effect for hero */
@supports (background-attachment: fixed) {
  .hero-background {
    background-attachment: fixed;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
  }
  
  .service-card-image img,
  .team-card-photo img,
  .gallery-item img,
  .shop-interior-image {
    transition: none;
  }
  
  .service-card:hover .service-card-image img,
  .team-card:hover .team-card-photo img,
  .gallery-item:hover img,
  .shop-image-container:hover .shop-interior-image {
    transform: none;
  }
}

/* ============================================================
   PAGE HERO IMAGES - NEW STYLES
   ============================================================ */

.page-hero-with-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.page-hero-has-bg {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0.7) 0%, rgba(15, 15, 15, 0.85) 100%);
  z-index: 1;
}

.page-hero-has-bg .container {
  position: relative;
  z-index: 2;
}

/* Adjust text colors when on hero background */
.page-hero-has-bg .page-hero-title,
.page-hero-has-bg .page-kicker {
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero-has-bg .page-hero-text {
  color: var(--text-secondary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   ABOUT PAGE ENHANCEMENTS
   ============================================================ */

.about-image-frame {
  position: relative;
}

.about-image-border {
  border: 2px solid var(--brand-accent);
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  z-index: 0;
}

.about-image-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-frame:hover .about-image {
  transform: scale(1.05);
}

.about-image-placeholder {
  background: var(--bg-tertiary);
  aspect-ratio: 4/5;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Team photo wide display */
.team-photo-wide {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.team-photo-wide img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   CONTACT PAGE ENHANCEMENTS
   ============================================================ */

.contact-shop-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.contact-shop-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.contact-shop-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, transparent 100%);
}

.contact-shop-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-top: 0.5rem;
}

/* ============================================================
   ENHANCED ANIMATIONS
   ============================================================ */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.reveal {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

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

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Fade in animation */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

/* Scale in animation for cards */
.scale-in {
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

/* ============================================================
   PARALLAX SUPPORT
   ============================================================ */

@supports (background-attachment: fixed) {
  .page-hero-with-image {
    background-attachment: fixed;
  }
}

/* Mobile: Disable parallax for performance */
@media (max-width: 768px) {
  .page-hero-with-image {
    background-attachment: scroll;
  }
  
  .page-hero-has-bg {
    min-height: 50vh;
  }
  
  .contact-shop-image img {
    height: 250px;
  }
}

/* ============================================================
   ENHANCED HOVER EFFECTS
   ============================================================ */

.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-zoom:hover img {
  transform: scale(1.08);
}

/* Card lift effect */
.card-hover-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

.card-hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Gold glow hover */
.gold-glow-hover {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gold-glow-hover:hover {
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-glow);
}

/* ============================================================
   REDUCED MOTION SUPPORT
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .fade-in,
  .scale-in {
    animation: none;
    opacity: 1;
  }
  
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4,
  .stagger-1,
  .stagger-2,
  .stagger-3,
  .stagger-4,
  .stagger-5 {
    animation-delay: 0s;
  }
  
  .page-hero-with-image {
    background-attachment: scroll;
  }
  
  .img-zoom img,
  .about-image,
  .card-hover-lift {
    transition: none;
  }
  
  .img-zoom:hover img,
  .about-image-frame:hover .about-image,
  .card-hover-lift:hover {
    transform: none;
  }
}

/* ============================================================
   LOADING STATES
   ============================================================ */

.loading-shimmer {
  background: linear-gradient(
    90deg,
    var(--bg-tertiary) 25%,
    var(--bg-secondary) 50%,
    var(--bg-tertiary) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ============================================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================================ */

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-accent);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 1rem;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border-color: rgba(201, 169, 98, 0.5);
    --text-secondary: #d0d0d0;
  }
}


/* ============================================================
   STARTER TIER - ENHANCED CONTACT CTAS
   ============================================================ */

/* ------------------------------------------------------------
   Sticky Contact Bar (Starter Tier Only)
   ------------------------------------------------------------ */
.starter-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.98) 0%, rgba(10, 10, 10, 0.99) 100%);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  backdrop-filter: blur(10px);
}

.starter-contact-bar .btn-starter-call {
  flex: 1;
  max-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--brand-gold);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.starter-contact-bar .btn-starter-call:hover {
  background: #d4b76a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
  color: #0a0a0a;
}

.starter-contact-bar .btn-starter-call:active {
  transform: translateY(0);
}

.starter-contact-bar .btn-starter-whatsapp {
  flex: 1;
  max-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.starter-contact-bar .btn-starter-whatsapp:hover {
  background: #22bf5b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  color: #fff;
}

.starter-contact-bar .btn-starter-whatsapp:active {
  transform: translateY(0);
}

.starter-contact-bar .btn-starter-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  color: var(--brand-gold);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.starter-contact-bar .btn-starter-secondary:hover {
  background: rgba(201, 169, 98, 0.1);
  border-color: var(--brand-gold);
}

/* Add padding to body when contact bar is shown */
body.has-starter-contact-bar {
  padding-bottom: 80px;
}

/* Hide on desktop */
@media (min-width: 992px) {
  .starter-contact-bar {
    display: none;
  }
  
  body.has-starter-contact-bar {
    padding-bottom: 0;
  }
}

/* ------------------------------------------------------------
   Floating Action Buttons (Mobile)
   ------------------------------------------------------------ */
.floating-contact-buttons {
  position: fixed;
  bottom: 100px;
  right: 16px;
  z-index: 1035;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
  text-decoration: none;
}

.fab-btn:hover {
  transform: scale(1.05);
}

.fab-btn:active {
  transform: scale(0.95);
}

.fab-btn.phone {
  background: var(--brand-gold);
  color: #0a0a0a;
}

.fab-btn.phone:hover {
  background: #d4b76a;
  box-shadow: 0 6px 20px rgba(201, 169, 98, 0.4);
}

.fab-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.fab-btn.whatsapp:hover {
  background: #22bf5b;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.fab-btn svg {
  width: 24px;
  height: 24px;
}

/* Hide on desktop */
@media (min-width: 992px) {
  .floating-contact-buttons {
    display: none;
  }
}

/* ------------------------------------------------------------
   Enhanced Contact Cards (Starter Tier)
   ------------------------------------------------------------ */
.starter-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.starter-contact-actions .btn-contact-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.starter-contact-actions .btn-contact-large.phone {
  background: var(--brand-gold);
  color: #0a0a0a;
  border: none;
}

.starter-contact-actions .btn-contact-large.phone:hover {
  background: #d4b76a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
}

.starter-contact-actions .btn-contact-large.whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
}

.starter-contact-actions .btn-contact-large.whatsapp:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 575.98px) {
  .starter-contact-actions {
    grid-template-columns: 1fr;
  }
  
  .starter-contact-actions .btn-contact-large {
    padding: 18px 24px;
    font-size: 1.0625rem;
  }
}

/* ------------------------------------------------------------
   Hero CTA Enhancement (Starter Tier)
   ------------------------------------------------------------ */
.hero-cta-starter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-cta-starter .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--brand-gold);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-cta-starter .btn-hero-primary:hover {
  background: #d4b76a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.35);
  color: #0a0a0a;
}

.hero-cta-starter .btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: transparent;
  color: #25D366;
  font-weight: 600;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #25D366;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-cta-starter .btn-hero-whatsapp:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.hero-cta-starter .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-cta-starter .btn-hero-secondary:hover {
  background: rgba(201, 169, 98, 0.1);
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

@media (max-width: 575.98px) {
  .hero-cta-starter {
    flex-direction: column;
  }
  
  .hero-cta-starter .btn-hero-primary,
  .hero-cta-starter .btn-hero-whatsapp,
  .hero-cta-starter .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }
}

/* ------------------------------------------------------------
   Service Card CTA (Starter Tier)
   ------------------------------------------------------------ */
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 14px;
  background: rgba(201, 169, 98, 0.1);
  color: var(--brand-gold);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.service-card-cta:hover {
  background: rgba(201, 169, 98, 0.2);
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

/* ============================================================
   END STARTER TIER CTAS
   ============================================================ */


/* ============================================================
   STARTER TIER - MINIMAL ICON-ONLY CONTACT BAR
   ============================================================ */

.starter-contact-bar-minimal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
}

.starter-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: all 0.2s ease;
  text-decoration: none;
}

.starter-contact-icon:hover {
  color: #fff;
  background: rgba(201, 169, 98, 0.15);
}

.starter-contact-icon:active {
  transform: scale(0.92);
}

.starter-contact-icon.whatsapp {
  color: rgba(37, 211, 102, 0.8);
}

.starter-contact-icon.whatsapp:hover {
  color: #25D366;
  background: rgba(37, 211, 102, 0.15);
}

.starter-contact-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 4px;
}

/* Add padding to body when contact bar is shown */
body.has-starter-contact-bar {
  padding-bottom: 80px;
}

/* Hide old contact bar styles */
.starter-contact-bar {
  display: none !important;
}

/* Hide on desktop */
@media (min-width: 992px) {
  .starter-contact-bar-minimal {
    display: none;
  }
  
  body.has-starter-contact-bar {
    padding-bottom: 0;
  }
}

/* ============================================================
   END MINIMAL ICON-ONLY CONTACT BAR
   ============================================================ */
