/* ==========================================================================
   LUNERO BARBERSHOP WIEN - ULTIMATE MONOCHROME MOBILE-PERFECT DESIGN SYSTEM
   ========================================================================== */

:root {
  --bg-dark: #08090c;
  --bg-card: #12141a;
  --bg-card-hover: #1a1d26;
  --bg-glass: rgba(18, 20, 26, 0.88);
  
  --color-white: #ffffff;
  --color-neon-glow: rgba(255, 255, 255, 0.95);
  --color-silver: #cbd5e1;
  --color-cyan-neon: #00f2fe;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-light: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(255, 255, 255, 0.35);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-script: 'Great Vibes', cursive;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  overflow-x: hidden;
  position: relative;
  line-height: 1.5;
  width: 100%;
  max-width: 100vw;
  padding-bottom: 70px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* iOS Safari ignores overflow-x:hidden on html/body.
   This wrapper is the only reliable fix. */
.page-wrapper {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #272a36;
  border-radius: 4px;
}

/* Ambient Background Hexagons & White Glow */
.hexagon-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hex-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.7;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: #ffffff;
  top: -100px;
  left: -100px;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--color-cyan-neon);
  bottom: -100px;
  right: -100px;
  opacity: 0.06;
}

/* Layout Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.section {
  padding: 70px 0;
}

.text-center { text-align: center; }
.justify-center { justify-content: center; }
.margin-top-l { margin-top: 36px; }
.margin-v { margin: 8px 0; }

/* Grid Layouts */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: normal;
  text-align: center;
  max-width: 100%;
}

.btn-primary {
  background: #ffffff;
  color: #08090c;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
  border: 1px solid #ffffff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.5);
  background: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}
.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Header & Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  background: rgba(8, 9, 12, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(8, 9, 12, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.hex-logo-svg {
  width: 100%;
  height: 100%;
}
.hex-outer {
  fill: none;
  stroke: #ffffff;
  stroke-width: 4;
}
.hex-inner {
  fill: rgba(255, 255, 255, 0.1);
  stroke: #ffffff;
  stroke-width: 2;
}

/* Header Brand Name */
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  display: block;
  line-height: 1;
}

.brand-name-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  display: block;
}

.title-script {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  display: inline-block;
  word-break: break-word;
}

.inline-script {
  font-family: var(--font-script);
  font-size: 1.4rem;
  font-weight: 400;
}

.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 700;
  display: block;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: #ffffff;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  box-shadow: 0 0 8px #ffffff;
  transition: var(--transition);
}
.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  color: #ffffff;
}

.phone-quick-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.phone-quick-btn:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.header-phone-icon-btn {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  color: #ffffff;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  background: transparent;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) contrast(1.15);
}
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(8, 9, 12, 0.4) 0%, rgba(8, 9, 12, 0.95) 90%),
              linear-gradient(to bottom, rgba(8, 9, 12, 0.7) 0%, rgba(8, 9, 12, 1) 100%);
}

.hero-content {
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  max-width: 100%;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  max-width: 100%;
  white-space: normal;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px #ffffff;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.title-light {
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 30px;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(18, 20, 26, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
}
.stars {
  display: flex;
  gap: 2px;
  color: #ffffff;
}
.star-filled {
  fill: #ffffff;
  width: 14px;
  height: 14px;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-light);
}

/* Section Header Shared */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--color-silver);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  word-break: break-word;
}

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

/* Packages Section */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

/* Caballero Paket Card */
.package-card.featured-caballero {
  padding: 0;
  overflow: hidden;
  border-color: var(--color-cyan-neon);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.25);
  background: var(--bg-card);
}
.caballero-img-header {
  height: 170px;
  position: relative;
  overflow: hidden;
}
.caballero-img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card.featured-caballero:hover .caballero-img-header img {
  transform: scale(1.08);
}
.caballero-overlay-badge {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 20, 26, 1) 0%, transparent 80%);
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
}
.neon-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-cyan-neon);
  letter-spacing: 2px;
  text-shadow: 0 0 12px var(--color-cyan-neon);
}
.package-card-inner {
  padding: 20px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.featured-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: #ffffff;
  color: #08090c;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.package-header {
  margin-bottom: 16px;
}
.package-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 14px;
}
.package-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.package-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.package-price .currency {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.package-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.package-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
}
.package-features li i {
  color: #ffffff;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px #ffffff);
}

/* Services Price List Filter Tabs */
.service-tabs-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  min-width: max-content;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: #ffffff;
  color: #08090c;
  border-color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.service-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: var(--transition);
}
.service-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: var(--bg-card-hover);
}

.service-item.highlight-item {
  border-left: 3px solid #ffffff;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.item-tag {
  font-size: 0.6rem;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
}
.service-info {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.service-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
}

.btn-select-service {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-select-service:hover {
  background: #ffffff;
  color: #08090c;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Call Banner Box */
.calculator-box {
  background: linear-gradient(135deg, rgba(18, 20, 26, 0.9) 0%, rgba(26, 29, 38, 0.9) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.call-banner-box {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}
.calc-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.calc-header i {
  width: 32px;
  height: 32px;
  color: #ffffff;
  flex-shrink: 0;
}
.calc-header h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}
.calc-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* About Section */
.about-images-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
.about-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-light);
}
.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.main-img {
  height: 380px;
  position: relative;
}
.sub-img {
  height: 200px;
  width: 65%;
  position: absolute;
  bottom: -20px;
  right: -10px;
  border: 4px solid var(--bg-dark);
}
.img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border-light);
}

.about-p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.feature-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}
.feature-box h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.feature-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-light);
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 9, 12, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: #ffffff;
  margin-bottom: 6px;
}
.gallery-overlay span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

/* Reviews Section Grid */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}
.google-logo {
  width: 18px;
  height: 18px;
}
.rating-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
}
.review-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #475569 0%, #1e293b 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reviewer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}
.review-date {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
  font-style: italic;
}

/* Location Section & Fixed Map Widget */
.location-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0c0e14 100%);
}

.location-p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.info-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}
.info-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-buttons-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Clean Map Widget Card */
.map-widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}
.map-header-bar {
  background: #161822;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}
.map-title-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pin-icon {
  color: #ffffff;
  width: 20px;
  height: 20px;
}
.map-title-info strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
}
.map-title-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.map-open-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.map-iframe-wrapper {
  width: 100%;
  height: 380px;
  position: relative;
}
.map-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: contrast(1.05);
}

/* Footer */
.site-footer {
  background: #050608;
  border-top: 1px solid var(--border-light);
  padding: 50px 0 24px 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* Sticky Call Bar (Mobile Only) */
.sticky-booking-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(8, 9, 12, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  padding: 10px 16px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
}

/* Direct Call Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.call-modal-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
}
.call-modal-icon i {
  width: 28px;
  height: 28px;
}

.call-modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.call-modal-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.call-action-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.call-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  text-align: left;
}

.primary-call {
  background: #ffffff;
  color: #08090c;
  border-color: #ffffff;
}
.primary-call .c-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #08090c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.primary-call .c-label {
  font-size: 0.75rem;
  color: #475569;
  font-weight: 600;
  display: block;
}
.primary-call .c-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #08090c;
}

.whatsapp-call {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: #ffffff;
}
.whatsapp-call .c-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-call .c-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
}
.whatsapp-call .c-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.call-hours-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Lightbox Modal */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-backdrop img {
  max-width: 95vw;
  max-height: 80vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

/* ==========================================================================
   MOBILE-FIRST PIXEL-PERFECT RESPONSIVE OVERRIDES (< 768px)
   ========================================================================== */
@media (max-width: 992px) {
  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
  }
  .header-container {
    padding: 0 14px;
  }
  
  .brand-name {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  .brand-sub {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }
  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(8, 9, 12, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 18px;
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-150%);
    transition: var(--transition);
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  /* Hide desktop text phone link & large header button on mobile */
  .phone-quick-btn {
    display: none;
  }
  .header-actions .btn-primary {
    display: none;
  }
  .header-phone-icon-btn {
    display: flex;
  }

  .sticky-booking-bar {
    display: flex;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 50px 0;
  }

  .hero-section {
    padding-top: 80px;
    padding-bottom: 30px;
    min-height: auto;
  }

  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 1px;
    padding: 5px 12px;
  }

  .hero-title {
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
  }
  .title-light {
    display: block;
  }
  .title-script {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.55;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 30px;
  }
  .btn-large {
    padding: 14px 18px;
    font-size: 0.9rem;
    width: 100%;
  }

  .hero-stats-bar {
    padding: 12px 14px;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
  }
  .stat-number {
    font-size: 1.1rem;
  }
  .stat-label {
    font-size: 0.65rem;
  }
  .star-filled {
    width: 12px;
    height: 12px;
  }
  .stat-divider {
    height: 24px;
  }

  .section-title {
    font-size: 1.5rem;
  }
  .section-subtitle {
    font-size: 0.9rem;
  }

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

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

  .service-tabs-wrapper {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    width: calc(100% + 32px);
  }

  .calculator-box {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 14px;
  }
  .calc-header h4 {
    font-size: 0.95rem;
  }
  .calc-header p {
    font-size: 0.8rem;
  }
  
  .sub-img {
    display: none;
  }
  .main-img {
    height: 260px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: 12px;
  }
  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .review-card {
    padding: 18px;
  }

  .map-iframe-wrapper {
    height: 260px;
  }
  .map-header-bar {
    padding: 12px 14px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .contact-buttons-group {
    flex-direction: column;
    width: 100%;
  }
  .contact-buttons-group .btn {
    width: 100%;
  }

  .info-item h4 {
    font-size: 0.9rem;
  }
  .info-item p {
    font-size: 0.8rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
  }

  /* Modal adjustments for small screens */
  .modal-container {
    padding: 24px 18px;
    margin: 10px;
  }
  .call-modal-title {
    font-size: 1.2rem;
  }
  .primary-call .c-number,
  .whatsapp-call .c-number {
    font-size: 0.95rem;
  }
  .call-hours-note {
    font-size: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
