/* ==========================================
   SAN ANTONIO CONSULTORIO ODONTOLÓGICO
   Styles & Design System
   ========================================== */

:root {
  /* Color Palette */
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-light: #e0f2fe;
  --secondary: #0d9488;
  --secondary-hover: #0f766e;
  --dark-slate: #0f172a;
  --text-main: #334155;
  --text-muted: #64748b;
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-light: #f1f5f9;
  --border-color: #e2e8f0;
  
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1eb956;
  --google-red: #ea4335;
  --gmail-color: #d93025;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(14, 165, 233, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 20px rgba(2, 132, 199, 0.35);

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

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme Variables */
body.theme-dark {
  --bg-main: #0b1329;
  --bg-card: #15203e;
  --bg-light: #1b294e;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --border-color: #2e3e68;
  --primary-light: #1e3a5f;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
}

body {
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Background Watermark Logo */
.logo-watermark-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  background-image: url('assets/logo.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

body.theme-dark .logo-watermark-bg {
  opacity: 0.05;
  filter: grayscale(100%) invert(100%);
}

/* Typography & Headings */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-slate);
  line-height: 1.25;
}

body.theme-dark h1,
body.theme-dark h2,
body.theme-dark h3,
body.theme-dark h4 {
  color: #ffffff;
}

.section-padding {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
}

.sub-heading {
  display: inline-block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.bg-light {
  background-color: var(--bg-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

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

.btn-secondary {
  background-color: var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  background-color: var(--text-muted);
  color: #fff;
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-outline-whatsapp {
  border-color: var(--whatsapp-green);
  color: var(--whatsapp-green);
  background: rgba(37, 211, 102, 0.08);
}

.btn-outline-whatsapp:hover {
  background-color: var(--whatsapp-green);
  color: #ffffff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--dark-slate);
}

body.theme-dark .btn-glass {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
}

.btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-google {
  background-color: #4285f4;
  color: #ffffff;
}

.btn-google:hover {
  background-color: #3367d6;
}

.btn-gmail {
  background-color: var(--gmail-color);
  color: #ffffff;
}

.btn-gmail:hover {
  background-color: #b31412;
}

.btn-whatsapp-full {
  background-color: var(--whatsapp-green);
  color: #ffffff;
}

.btn-whatsapp-full:hover {
  background-color: var(--whatsapp-hover);
}

.full-width {
  width: 100%;
}

.glow-effect {
  animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px rgba(2, 132, 199, 0.4); }
  100% { box-shadow: 0 0 25px rgba(2, 132, 199, 0.8); }
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

body.theme-dark .header {
  background: rgba(11, 19, 41, 0.88);
  border-bottom-color: rgba(46, 62, 104, 0.8);
}

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

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

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-slate);
  line-height: 1.1;
}

body.theme-dark .brand-name {
  color: #ffffff;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  transition: var(--transition);
}

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

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

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

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

.theme-toggle {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: var(--transition);
}

.theme-toggle:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 90px;
  position: relative;
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.4) 0%, rgba(248, 250, 252, 0.9) 100%);
  overflow: hidden;
}

body.theme-dark .hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 19, 41, 1) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.badge-pill.light {
  background-color: rgba(2, 132, 199, 0.1);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.juli-intro-hero {
  font-size: 1.12rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 35px;
  background-color: var(--border-color);
}

/* Hero Image & Cards */
.hero-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  padding: 10px;
}

.logo-hero-watermark {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  z-index: 3;
  background: white;
  border-radius: 50%;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  animation: float-slow 4s ease-in-out infinite;
}

body.theme-dark .logo-hero-watermark {
  background: var(--bg-card);
}

.watermark-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: float-slow 3s ease-in-out infinite alternate;
}

body.theme-dark .floating-badge {
  background: rgba(21, 32, 62, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
}

.badge-top {
  top: 15%;
  left: -20px;
}

.badge-bottom {
  bottom: 8%;
  right: -10px;
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.icon-box.green {
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp-green);
}

.floating-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark-slate);
}

body.theme-dark .floating-badge strong {
  color: #fff;
}

.floating-badge span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@keyframes float-slow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Quick Info Bar */
.info-bar {
  position: relative;
  z-index: 10;
  margin-top: -40px;
}

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

.info-card {
  background: var(--bg-card);
  padding: 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.info-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-detail h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

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

.info-detail a:hover {
  color: var(--primary);
}

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

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--primary-light) 100%);
}

.popular-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 1.8rem;
}

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

.service-features li i {
  color: var(--secondary);
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-btn:hover {
  gap: 0.8rem;
  color: var(--primary-hover);
}

/* Specialists Section */
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.doctor-img-box {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.doctor-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialist-team-box {
  background: linear-gradient(135deg, var(--primary-light), var(--bg-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar-stack {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.team-icon {
  font-size: 3rem;
  color: var(--primary);
}

.doctor-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
}

.doctor-info {
  padding: 1.8rem;
}

.doctor-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.doctor-title {
  display: block;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.doctor-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.doctor-tags span {
  background: var(--bg-light);
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.mt-3 {
  margin-top: 1.2rem;
}

/* Booking Section */
.booking-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  max-width: 900px;
  margin: 0 auto;
}

.booking-header {
  margin-bottom: 2.5rem;
}

.booking-header h2 {
  font-size: 2.2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
}

.booking-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Form Steps Nav */
.form-steps-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.step-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.5;
  transition: var(--transition);
}

.step-nav.active {
  opacity: 1;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.step-nav.active .step-num {
  background: var(--primary);
  color: #fff;
}

.step-text {
  font-weight: 700;
  font-size: 0.9rem;
}

.step-line {
  flex-grow: 1;
  height: 2px;
  background: var(--border-color);
  margin: 0 1rem;
}

/* Step Contents */
.form-step-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.form-step-content.active {
  display: block;
}

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

.step-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--dark-slate);
}

body.theme-dark .form-group label {
  color: #fff;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.help-text {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

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

.professional-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.radio-card {
  cursor: pointer;
}

.radio-card input {
  display: none;
}

.radio-card-content {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: var(--transition);
  background: var(--bg-light);
}

.radio-card input:checked + .radio-card-content {
  border-color: var(--primary);
  background: var(--primary-light);
}

.radio-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.radio-avatar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.radio-card-content strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-slate);
}

body.theme-dark .radio-card-content strong {
  color: #fff;
}

.radio-card-content small {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.step-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

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

.phone-link {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.social-box {
  background: var(--bg-card);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.social-box h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  transition: var(--transition);
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.facebook {
  background-color: #1877f2;
}

.social-btn.whatsapp {
  background-color: var(--whatsapp-green);
}

.social-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

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

.map-header {
  padding: 1rem 1.5rem;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Footer */
.footer {
  background: #090f1f;
  color: #cbd5e1;
  padding-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo-box {
  margin-bottom: 1rem;
}

.footer-logo-box .brand-name {
  color: #fff;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #94a3b8;
  max-width: 400px;
}

.footer-links-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links-col ul {
  list-style: none;
}

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

.footer-links-col a {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: var(--transition);
}

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

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: #64748b;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  background-color: var(--whatsapp-hover);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  right: 70px;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.5rem;
}

.modal-backdrop.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-icon-success {
  font-size: 3.5rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.modal-card h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.modal-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.booking-summary-box {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: left;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.summary-label {
  color: var(--text-muted);
  font-weight: 600;
}

.summary-val {
  font-weight: 700;
  color: var(--dark-slate);
  text-align: right;
}

body.theme-dark .summary-val {
  color: #fff;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 2rem auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-card-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .badge-top {
    left: 0;
  }

  .badge-bottom {
    right: 0;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

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

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

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-card);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.8rem;
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-btn-cta {
    display: none;
  }

  .grid-2-col, .professional-options {
    grid-template-columns: 1fr;
  }

  .booking-wrapper {
    padding: 2rem 1.2rem;
  }
}

/* Availability Notice Banner & Slots Grid */
.availability-notice-banner {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--dark-slate);
}

body.theme-dark .availability-notice-banner {
  color: #fff;
}

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

.slots-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-muted);
}

.slots-placeholder i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.slot-btn {
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-color);
  background: var(--bg-card);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  transition: var(--transition);
}

.slot-btn.available {
  border-color: #10b981;
  color: var(--dark-slate);
}

body.theme-dark .slot-btn.available {
  color: #fff;
}

.slot-btn.available:hover {
  background: rgba(16, 185, 129, 0.12);
  transform: translateY(-2px);
}

.slot-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.slot-btn.selected .slot-badge {
  color: #ffffff;
}

.slot-btn.booked {
  border-color: var(--border-color);
  background: var(--bg-light);
  opacity: 0.65;
  cursor: not-allowed;
}

.slot-time {
  font-weight: 700;
  font-size: 0.95rem;
}

.slot-badge {
  font-size: 0.72rem;
  font-weight: 700;
}

.slot-badge.green {
  color: #10b981;
}

.slot-badge.red {
  color: #ef4444;
}

/* PQRS Styles */
.pqrs-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  max-width: 900px;
  margin: 0 auto;
}

.checkbox-group {
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.radicado-badge-box {
  background: var(--primary-light);
  border: 2px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.radicado-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.radicado-number {
  font-size: 1.6rem;
  font-family: 'Outfit', sans-serif;
  color: var(--dark-slate);
  letter-spacing: 2px;
}

body.theme-dark .radicado-number {
  color: #ffffff;
}

/* Meet Juli Section */
.meet-juli-section {
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.5) 0%, rgba(248, 250, 252, 0.9) 100%);
}

body.theme-dark .meet-juli-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(21, 32, 62, 0.95) 100%);
}

.juli-card-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.juli-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #ffffff;
}

body.theme-dark .juli-photo-frame {
  border-color: var(--border-color);
}

.juli-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.juli-photo-frame:hover .juli-img {
  transform: scale(1.03);
}

.juli-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.juli-badge i {
  color: #ef4444;
}

.juli-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  color: var(--dark-slate);
}

body.theme-dark .juli-title {
  color: #ffffff;
}

.juli-intro {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.juli-story {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.juli-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
}

.juli-chip {
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.theme-dark .juli-chip {
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
}

.juli-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .juli-card-wrapper {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.8rem;
    gap: 2.5rem;
  }
}



