/* ==========================================================================
   BARBERÍA PEDRO - STYLESHEET
   Design: Modern Slate & Charcoal Gray Theme with Electric Blue & Steel Accents
   Mobile-First & Fully Responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & DESIGN TOKENS (SLATE GRAY + COBALT ACCENTS)
   -------------------------------------------------------------------------- */
:root {
  /* Slate & Charcoal Gray Backgrounds */
  --bg-primary: #0d1015;
  --bg-secondary: #151921;
  --bg-card: #1c212b;
  --bg-card-hover: #242a36;
  --bg-glass: rgba(21, 25, 33, 0.85);
  --bg-accent-soft: rgba(59, 130, 246, 0.12);
  --bg-gray-badge: rgba(255, 255, 255, 0.06);

  /* Modern Accent Colors (Cobalt Blue + Electric Sapphire + Steel Silver) */
  --accent-primary: #3b82f6;
  --accent-hover: #60a5fa;
  --accent-dark: #1d4ed8;
  --accent-gradient: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
  --accent-glow: 0 0 25px rgba(59, 130, 246, 0.4);

  /* Steel & Silver Accents */
  --silver-light: #f1f5f9;
  --silver-medium: #cbd5e1;
  --silver-dark: #64748b;
  --silver-gradient: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 50%, #94a3b8 100%);

  /* Status Colors */
  --color-open: #10b981;
  --color-open-glow: rgba(16, 185, 129, 0.35);
  --color-closed: #ef4444;
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #20ba59;

  /* Typography Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-accent: #60a5fa;

  /* Fonts */
  --font-heading: 'Syne', 'Oswald', sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Borders & Shadows */
  --border-subtle: #252d3a;
  --border-medium: #374151;
  --border-accent: rgba(59, 130, 246, 0.5);
  --border-accent-bright: rgba(59, 130, 246, 0.9);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.6);

  /* Layout */
  --container-max: 1200px;
  --nav-height: 76px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--silver-light);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--accent-hover);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-silver {
  color: var(--silver-medium);
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--bg-gray-badge);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  color: var(--accent-hover);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   3. BUTTONS & CTAS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

/* Primary Button: Electric Blue Gradient */
.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(59, 130, 246, 0.35);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--accent-glow);
  color: #ffffff;
}

/* Outline Button: Steel Slate */
.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  color: var(--silver-light);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1.05rem 2rem;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION / NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(13, 16, 21, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(13, 16, 21, 0.98);
  border-bottom: 1px solid var(--border-medium);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--silver-light);
}

.brand-slogan {
  font-size: 0.7rem;
  color: var(--accent-hover);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* Live Open Badge in Nav */
.nav-status-badge {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
}

@media (min-width: 900px) {
  .nav-status-badge {
    display: inline-flex;
  }
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-open);
  box-shadow: 0 0 10px var(--color-open);
  animation: pulseDot 2s infinite;
}

.status-dot.closed {
  background: var(--color-closed);
  box-shadow: 0 0 10px var(--color-closed);
  animation: none;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  font-size: 1.25rem;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(15, 19, 26, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-medium);
  padding: 1.5rem 1.25rem 2rem;
  transform: translateY(-150%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-link i {
  color: var(--accent-hover);
  width: 24px;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 4rem;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(30, 41, 59, 0.3) 0%, transparent 60%),
              var(--bg-primary);
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 6rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--bg-gray-badge);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  color: var(--accent-hover);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.35rem;
  }
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.hero-price-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.price-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.price-pill strong {
  color: var(--accent-hover);
  font-size: 1.05rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

@media (min-width: 520px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
  }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-stars {
  color: #fbbf24;
  font-size: 0.95rem;
}

.trust-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-text strong {
  color: #ffffff;
  display: block;
}

.hero-showcase {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  background: var(--bg-secondary);
}

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

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-floating-card {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(21, 25, 33, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-medium);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.floating-card-info h4 {
  font-size: 1rem;
  color: #ffffff;
}

.floating-card-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.floating-badge {
  background: var(--bg-accent-soft);
  color: var(--accent-hover);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   6. SERVICES & PRICING SECTION
   -------------------------------------------------------------------------- */
.services-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 680px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
}

.service-card.featured {
  border-color: var(--accent-primary);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(28, 33, 43, 0.95) 100%);
}

.featured-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--bg-accent-soft);
  border: 1px solid var(--border-medium);
  color: var(--accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.service-duration {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.service-features li i {
  color: var(--accent-hover);
  font-size: 0.8rem;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.service-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-amount {
  font-size: 1.45rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--silver-light);
}

/* --------------------------------------------------------------------------
   7. GALLERY & REAL WORK SECTION
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 280px;
  cursor: pointer;
  background: var(--bg-secondary);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 16, 21, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

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

.gallery-tag {
  color: var(--accent-hover);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-caption {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.gallery-zoom-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-medium);
  color: var(--accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   8. SCHEDULE & LIVE STATUS SECTION
   -------------------------------------------------------------------------- */
.schedule-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.schedule-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .schedule-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.live-indicator-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.indicator-status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.indicator-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
}

.indicator-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.schedule-table {
  width: 100%;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row.today {
  color: var(--accent-hover);
  font-weight: 700;
  background: rgba(59, 130, 246, 0.08);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border-bottom: none;
  margin: 0.25rem 0;
}

.day-badge {
  display: inline-block;
  font-size: 0.72rem;
  background: var(--accent-gradient);
  color: #ffffff;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
  font-weight: 800;
}

.hours-text {
  font-family: monospace;
  font-size: 0.95rem;
  color: var(--text-main);
}

.schedule-row.today .hours-text {
  color: var(--accent-hover);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   9. LOCATION & MAPS SECTION
   -------------------------------------------------------------------------- */
.location-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.location-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-accent-soft);
  border: 1px solid var(--border-medium);
  color: var(--accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-details h5 {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.contact-details p, .contact-details a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  min-height: 400px;
  height: 100%;
  box-shadow: var(--shadow-card);
  position: relative;
  background: var(--bg-secondary);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* --------------------------------------------------------------------------
   10. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-card.active {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
}

.faq-question i {
  color: var(--accent-hover);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.faq-card.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #080a0e;
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   12. FLOATING WHATSAPP & MOBILE BOTTOM BAR
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 85px;
  right: 1.25rem;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--transition-fast);
}

@media (min-width: 992px) {
  .floating-whatsapp {
    bottom: 2rem;
    right: 2rem;
  }
}

.whatsapp-btn-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  animation: pulseWhatsapp 2.5s infinite;
  transition: transform var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-btn-circle {
  transform: scale(1.1);
}

.whatsapp-tooltip {
  display: none;
  background: rgba(21, 25, 33, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-medium);
  color: #ffffff;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .whatsapp-tooltip {
    display: block;
  }
}

@keyframes pulseWhatsapp {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
}

/* Mobile Action Bar */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: rgba(15, 19, 26, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 0.5rem;
  z-index: 998;
}

@media (min-width: 992px) {
  .mobile-action-bar {
    display: none;
  }
}

.mobile-action-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0;
}

.mobile-action-item i {
  font-size: 1.15rem;
  color: var(--accent-hover);
}

.mobile-action-item.btn-action-highlight {
  background: var(--accent-gradient);
  color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  margin: 0 0.35rem;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.mobile-action-item.btn-action-highlight i {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   13. APPOINTMENT MODAL (GOOGLE CALENDAR IN-PAGE MODAL)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 12, 0.9);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 920px;
  max-height: 94vh;
  height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-normal);
  overflow: hidden;
}

.modal-overlay.open .modal-content {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-card);
  flex-shrink: 0;
}

.modal-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-title {
  font-size: 1.15rem;
  color: #ffffff;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  background: #ffffff;
  position: relative;
  height: 100%;
}

.calendar-iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  display: block;
}

.modal-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Booking Options Cards */
.booking-option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-normal);
  position: relative;
}

.booking-option-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.booking-option-card.highlight {
  border-color: var(--accent-primary);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(28, 33, 43, 0.95) 100%);
}

.option-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

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

.option-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.option-icon.google {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.option-icon.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.option-title {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.option-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Quick Form in Modal */
.quick-booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-control {
  background: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  color: #ffffff;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-primary);
}

.form-control option {
  background: var(--bg-secondary);
  color: #ffffff;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   14. LIGHTBOX MODAL (FOR GALLERY PHOTOS)
   -------------------------------------------------------------------------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-wrapper {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-medium);
}

.lightbox-img {
  width: 100%;
  height: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--accent-primary);
  color: #ffffff;
}
