/* =============================================
   Alessandro Testa - Dark Glassmorphism Theme
   ============================================= */

/* === CSS Variables === */
:root {
  --background: hsl(240, 10%, 4%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(240, 10%, 8%);
  --card-foreground: hsl(0, 0%, 98%);
  --popover: hsl(240, 10%, 8%);
  --popover-foreground: hsl(0, 0%, 98%);
  --primary: hsl(262, 83%, 58%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(240, 10%, 14%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --muted: hsl(240, 10%, 14%);
  --muted-foreground: hsl(240, 5%, 65%);
  --accent: hsl(262, 83%, 58%);
  --accent-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);
  --border: hsl(240, 10%, 20%);
  --input: hsl(240, 10%, 20%);
  --ring: hsl(262, 83%, 58%);
  --radius: 1rem;

  /* Glassmorphism */
  --glass-bg: hsla(240, 10%, 12%, 0.6);
  --glass-border: hsla(0, 0%, 100%, 0.1);
  --glass-highlight: hsla(0, 0%, 100%, 0.05);
  --glass-blur: 20px;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(262, 83%, 58%), hsl(280, 100%, 70%));
  --gradient-glow: 0 0 40px hsla(262, 83%, 58%, 0.4);

  /* Social colors */
  --instagram: hsl(330, 70%, 55%);
  --tiktok: hsl(180, 100%, 50%);
  --whatsapp: hsl(142, 70%, 45%);
  --email-color: hsl(210, 100%, 56%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

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

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

/* === Glass Components === */
.glass-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, var(--glass-highlight) 0%, transparent 50%);
}

.glass-button {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.glass-button:active {
  transform: scale(0.97);
}

.glass-button:hover {
  background: hsla(262, 83%, 58%, 0.2);
  box-shadow: 0 0 30px hsla(262, 83%, 58%, 0.5);
}

.glass-input {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--foreground);
  transition: all 0.3s ease;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  font-size: 0.875rem;
}

.glass-input::placeholder {
  color: var(--muted-foreground);
}

.glass-input:focus {
  outline: none;
  border-color: hsla(262, 83%, 58%, 0.5);
  box-shadow: 0 0 0 2px hsla(262, 83%, 58%, 0.25);
}

.glow-effect {
  box-shadow: var(--gradient-glow);
}

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

/* === Animations === */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse-heart {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.animate-fade-up {
  animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.animate-fade-in {
  animation: fade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.animate-float {
  animation: float 2.5s ease-in-out infinite;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* === Hero Section === */
.hero-section {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.hero-image-wrapper img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center top;
}

.hero-gradient-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, hsla(240, 10%, 4%, 0.2) 40%, var(--background));
  z-index: 10;
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10rem;
  background: linear-gradient(to top, var(--background), transparent);
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8));
}

.hero-title .text-gradient {
  filter: drop-shadow(0 2px 10px rgba(138, 43, 226, 0.6));
}

.hero-subtitle {
  font-size: 1rem;
  color: hsla(0, 0%, 98%, 0.9);
  font-weight: 500;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9));
}

.scroll-indicator {
  margin-top: 2rem;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  margin: 0 auto;
  border-radius: 9999px;
  border: 2px solid hsla(240, 5%, 65%, 0.3);
  display: flex;
  justify-content: center;
}

.scroll-indicator-dot {
  width: 0.375rem;
  height: 0.75rem;
  background: hsla(240, 5%, 65%, 0.5);
  border-radius: 9999px;
  margin-top: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@media (min-width: 640px) {
  .hero-title { font-size: 3.75rem; }
  .hero-subtitle { font-size: 1.125rem; }
}

@media (min-width: 768px) {
  .hero-section { height: 85vh; }
  .hero-image-wrapper img { object-position: center 20%; }
}

@media (min-width: 1280px) {
  .hero-section { height: 90vh; }
  .hero-image-wrapper img { object-position: center 15%; }
}

/* === Contact Card Section === */
.contact-section {
  padding: 2rem 1.5rem;
}

.contact-card {
  max-width: 24rem;
  margin: 0 auto;
}

.contact-phone-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: hsla(262, 83%, 58%, 0.1);
  transition: background-color 0.3s;
  margin-bottom: 1rem;
}

.contact-phone-link:hover {
  background: hsla(262, 83%, 58%, 0.2);
}

.contact-phone-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: hsla(262, 83%, 58%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-phone-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.contact-phone-text {
  text-align: left;
}

.contact-phone-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-phone-number {
  font-size: 1.125rem;
  font-weight: 500;
}

/* === Social Links Section === */
.social-section {
  padding: 2rem 1.5rem;
}

.social-title {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 24rem;
  margin: 0 auto;
}

.social-link {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
  transition: all 0.5s ease-out;
}

.social-link:hover {
  transform: translateY(-4px);
}

.social-link:active {
  transform: scale(0.98);
}

.social-link svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.5s ease-out;
}

.social-link span {
  font-size: 0.875rem;
  font-weight: 500;
}

.social-link.instagram:hover {
  background: hsla(330, 70%, 55%, 0.15);
  color: var(--instagram);
  box-shadow: 0 0 25px hsla(330, 70%, 55%, 0.35);
}

.social-link.tiktok:hover {
  background: hsla(180, 100%, 50%, 0.15);
  color: var(--tiktok);
  box-shadow: 0 0 25px hsla(180, 100%, 50%, 0.35);
}

.social-link.whatsapp:hover {
  background: hsla(142, 70%, 45%, 0.15);
  color: var(--whatsapp);
  box-shadow: 0 0 25px hsla(142, 70%, 45%, 0.35);
}

.social-link.email:hover {
  background: hsla(210, 100%, 56%, 0.15);
  color: var(--email-color);
  box-shadow: 0 0 25px hsla(210, 100%, 56%, 0.35);
}

/* === Booking Calendar Section === */
.booking-section {
  padding: 3rem 0.75rem;
}

.booking-card {
  padding: 2rem;
  margin: 0 auto;
  width: 100%;
  max-width: 56rem;
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.booking-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.booking-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.booking-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.booking-subtitle svg {
  width: 1rem;
  height: 1rem;
}

.back-button {
  padding: 0.5rem;
  border-radius: 9999px;
  background: hsla(240, 10%, 14%, 0.5);
  transition: background-color 0.3s;
}

.back-button:hover {
  background: var(--secondary);
}

.back-button svg {
  width: 1rem;
  height: 1rem;
}

/* Call type selection */
.call-type-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  background: hsla(240, 10%, 14%, 0.3);
  border: 1px solid transparent;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.call-type-btn:hover {
  background: hsla(262, 83%, 58%, 0.2);
  border-color: hsla(262, 83%, 58%, 0.5);
  transform: scale(1.01);
}

.call-type-btn:active {
  transform: scale(0.99);
}

.call-type-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: hsla(262, 83%, 58%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-type-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.call-type-text {
  text-align: left;
}

.call-type-text p:first-child {
  font-weight: 500;
}

.call-type-text p:last-child {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Calendar */
.calendar-wrapper {
  width: 100%;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.calendar-nav button {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: hsla(240, 10%, 14%, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.2s;
}

.calendar-nav button:hover {
  opacity: 1;
  background: var(--secondary);
}

.calendar-nav span {
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.5rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  padding: 0.5rem 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.125rem;
}

.calendar-day {
  height: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  transition: all 0.2s;
  position: relative;
  padding-top: 0.125rem;
}

.calendar-day.available {
  cursor: pointer;
}

.calendar-day.available:hover {
  background: hsla(262, 83%, 58%, 0.2);
}

.calendar-day.today {
  background: hsla(262, 83%, 58%, 0.1);
  font-weight: 600;
}

.calendar-day.selected {
  background: var(--primary);
  color: var(--primary-foreground);
}

.calendar-day.disabled {
  color: var(--muted-foreground);
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-day.empty {
  cursor: default;
}

.availability-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  margin-top: 0.125rem;
}

.availability-dot.green { background: #22c55e; }
.availability-dot.yellow { background: #eab308; }
.availability-dot.red { background: #ef4444; }

.calendar-hint {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 1rem;
}

/* Time slots */
.time-slots-header {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: hsla(240, 10%, 14%, 0.3);
  margin-bottom: 1rem;
}

.time-slots-header p {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: capitalize;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-height: 16rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.time-slot-btn {
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.time-slot-btn.available {
  background: hsla(240, 10%, 14%, 0.3);
}

.time-slot-btn.available:hover {
  background: hsla(262, 83%, 58%, 0.2);
  border-color: hsla(262, 83%, 58%, 0.5);
  transform: scale(1.02);
}

.time-slot-btn.available:active {
  transform: scale(0.98);
}

.time-slot-btn.unavailable {
  background: hsla(240, 10%, 14%, 0.1);
  color: hsla(240, 5%, 65%, 0.5);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Booking form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  background: hsla(240, 10%, 14%, 0.3);
  border: 1px solid hsla(240, 10%, 20%, 0.5);
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsla(262, 83%, 58%, 0.5);
  box-shadow: 0 0 0 2px hsla(262, 83%, 58%, 0.15);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.province-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--destructive);
  font-size: 0.875rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: hsla(0, 84%, 60%, 0.1);
}

.province-error svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.submit-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 500;
  background: hsla(262, 83%, 58%, 0.2);
  color: var(--primary);
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover:not(:disabled) {
  background: hsla(262, 83%, 58%, 0.3);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.submit-btn:active:not(:disabled) {
  transform: scale(0.97);
}

/* Confirmation */
.confirm-summary {
  padding: 1rem;
  border-radius: 0.75rem;
  background: hsla(240, 10%, 14%, 0.3);
}

.confirm-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.confirm-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: hsla(262, 83%, 58%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.confirm-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.confirm-divider {
  border-top: 1px solid hsla(240, 10%, 20%, 0.5);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.confirm-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.confirm-value {
  font-weight: 500;
}

.confirm-value-sm {
  font-size: 0.875rem;
}

/* Success */
.success-container {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: hsla(142, 70%, 45%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.success-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--whatsapp);
}

.success-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.success-badge {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #22c55e;
}

.success-badge svg {
  width: 1rem;
  height: 1rem;
}

/* === Reviews Section === */
.reviews-section {
  padding: 3rem 0.75rem;
}

.reviews-container {
  max-width: 56rem;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.reviews-header p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

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

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

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

.review-card {
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.5s ease-out;
}

.review-card:hover {
  background: hsla(0, 0%, 100%, 0.05);
  box-shadow: 0 10px 40px -10px hsla(262, 83%, 58%, 0.2);
  transform: translateY(-4px);
}

.review-card:active {
  transform: scale(0.98);
}

.review-thumbnail {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  background: var(--secondary);
}

.review-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease-out;
}

.review-card:hover .review-thumbnail img {
  transform: scale(1.05);
}

.review-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s;
}

.review-card:hover .review-play-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.review-play-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: hsla(262, 83%, 58%, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.review-play-btn:hover {
  transform: scale(1.1);
}

.review-play-btn svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
  margin-left: 0.25rem;
}

.review-card h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.review-card:hover h4 {
  color: var(--primary);
}

.review-card .review-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-placeholder svg {
  width: 3rem;
  height: 3rem;
  color: var(--muted-foreground);
}

/* Video Modal */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

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

.video-modal {
  width: 100%;
  max-width: 56rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: black;
  border: none;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.video-modal-overlay.active .video-modal {
  transform: scale(1);
}

.video-modal .video-embed {
  aspect-ratio: 16/9;
  width: 100%;
}

.video-modal .video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal .video-info {
  padding: 1rem;
  background: var(--background);
}

.video-modal .video-info h3 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.video-modal .video-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* === Footer === */
.site-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid hsla(240, 10%, 20%, 0.3);
}

.footer-inner {
  max-width: 24rem;
  margin: 0 auto;
  text-align: center;
}

.footer-made-with {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.footer-heart {
  color: var(--destructive);
  animation: pulse-heart 1.5s infinite;
  display: inline-flex;
}

.footer-heart svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.footer-made-with a {
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-made-with a:hover {
  color: var(--foreground);
}

.footer-copyright {
  font-size: 0.75rem;
  color: hsla(240, 5%, 65%, 0.6);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: hsla(240, 5%, 65%, 0.5);
}

.footer-links a {
  transition: color 0.2s;
}

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

.footer-links .dot {
  color: hsla(240, 5%, 65%, 0.3);
}

/* === Utilities === */
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.loader {
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--glass-border);
  border-top-color: var(--primary);
  border-radius: 9999px;
}

/* === Responsive === */
@media (min-width: 640px) {
  .booking-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .reviews-section { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* Step transitions */
.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  animation: fade-up 0.3s ease-out forwards;
}
