@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --navy: #0A1628;
  --navy-mid: #112240;
  --blue: #1565C0;
  --blue-bright: #1976D2;
  --blue-light: #42A5F5;
  --blue-pale: #E3F2FD;
  --red: #D32F2F;
  --red-soft: #EF5350;
  --white: #FFFFFF;
  --gray-100: #F8FAFC;
  --gray-200: #EEF2F7;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gold: #FFB300;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 24px 64px rgba(10,22,40,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'DM Sans', sans-serif; }
p { font-size: 1rem; color: var(--gray-700); }
a { text-decoration: none; color: inherit; }

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(10,22,40,0.98);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.nav-logo .logo-text { color: var(--white); }
.nav-logo .logo-text strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; letter-spacing: 0.02em;
}
.nav-logo .logo-text span {
  display: block; font-size: 0.7rem; color: var(--blue-light);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 0.2rem; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 0.88rem;
  padding: 0.5rem 0.9rem; border-radius: 8px;
  transition: var(--transition); font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--blue-light); }
.nav-cta {
  background: var(--blue); color: var(--white) !important;
  border-radius: 8px; padding: 0.5rem 1.2rem !important;
}
.nav-cta:hover { background: var(--blue-bright) !important; }
.nav-emergency {
  display: flex; align-items: center; gap: 8px;
}
.emergency-pill {
  background: var(--red); color: var(--white);
  border-radius: 100px; padding: 6px 14px;
  font-size: 0.78rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(211,47,47,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(211,47,47,0); }
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(21,101,192,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(66,165,245,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: 
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; width: 100%;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(21,101,192,0.2); border: 1px solid rgba(21,101,192,0.4);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 1.5rem;
  color: var(--blue-light); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-badge .dot {
  width: 7px; height: 7px; background: var(--blue-light);
  border-radius: 50%; animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}
.hero-title { color: var(--white); margin-bottom: 1.2rem; }
.hero-title span { color: var(--blue-light); display: block; }
.hero-desc {
  color: rgba(255,255,255,0.65); font-size: 1.1rem;
  margin-bottom: 2rem; max-width: 480px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; gap: 2rem;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: var(--white);
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: var(--transition);
}
.hero-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(21,101,192,0.4);
  transform: translateY(-4px);
}
.hero-card:first-child { grid-column: 1 / -1; }
.hero-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(21,101,192,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 0.8rem;
}
.hero-card h4 { color: var(--white); margin-bottom: 0.3rem; }
.hero-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.75rem 1.6rem; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); border: none;
  font-family: 'DM Sans', sans-serif; letter-spacing: 0.02em;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 20px rgba(21,101,192,0.35);
}
.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(21,101,192,0.45);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.btn-red {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 20px rgba(211,47,47,0.35);
}
.btn-red:hover {
  background: var(--red-soft);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }

/* ─── SECTIONS ─── */
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-100); }
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  background: var(--blue-pale); color: var(--blue);
  border-radius: 100px; padding: 4px 14px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title { margin-bottom: 0.8rem; }
.section-desc { color: var(--gray-500); max-width: 560px; margin: 0 auto; }

/* ─── CARDS GRID ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue-pale);
}
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.2rem;
}
.card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.card p { font-size: 0.9rem; color: var(--gray-500); }

/* ─── PRICE TABLE ─── */
.price-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.price-table thead { background: var(--navy); }
.price-table thead th {
  color: var(--white); padding: 1rem 1.4rem;
  text-align: left; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}
.price-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--blue-pale); }
.price-table tbody td {
  padding: 1rem 1.4rem; font-size: 0.95rem; vertical-align: middle;
}
.price-table tbody td:first-child { font-weight: 500; }
.price-badge {
  display: inline-block;
  background: var(--blue); color: var(--white);
  border-radius: 8px; padding: 4px 12px;
  font-size: 0.88rem; font-weight: 600;
}

/* ─── INCLUDES LIST ─── */
.includes-list { list-style: none; }
.includes-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 0.5rem 0; font-size: 0.9rem; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}
.includes-list li:last-child { border-bottom: none; }
.includes-list li::before {
  content: '✓'; color: var(--blue); font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem; border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200); margin-bottom: 1rem;
  transition: var(--transition);
}
.contact-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info label {
  display: block; font-size: 0.75rem; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px;
}
.contact-info strong { font-size: 1rem; color: var(--navy); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy);
  padding: 3rem 0 1.5rem;
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.footer-brand p { font-size: 0.88rem; margin: 1rem 0; max-width: 280px; }
.footer-col h5 {
  color: var(--white); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem; font-family: 'DM Sans', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.88rem; transition: var(--transition); }
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem;
}
.footer-bottom span { color: var(--blue-light); }

/* ─── CHATBOT ─── */
.chatbot-trigger {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 2000;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 32px rgba(21,101,192,0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.chatbot-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(21,101,192,0.6);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.chatbot-trigger:hover { animation: none; }
.chatbot-trigger svg { width: 28px; height: 28px; fill: white; }
.chatbot-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; background: var(--red);
  border-radius: 50%; border: 2px solid white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; color: white; font-weight: 700;
}
.chatbot-window {
  position: fixed; bottom: 5.5rem; right: 2rem; z-index: 1999;
  width: 380px; max-height: 560px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px); opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  border: 1px solid var(--gray-200);
}
.chatbot-window.open {
  transform: scale(1) translateY(0); opacity: 1;
  pointer-events: all;
}
.chatbot-header {
  background: var(--navy); padding: 1.2rem 1.4rem;
  display: flex; align-items: center; gap: 12px;
}
.chatbot-avatar {
  width: 40px; height: 40px; background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.chatbot-header-info { flex: 1; }
.chatbot-header-info strong {
  display: block; color: var(--white); font-size: 0.95rem;
}
.chatbot-header-info span {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 5px;
}
.online-dot {
  width: 7px; height: 7px; background: #4CAF50;
  border-radius: 50%; animation: blink 2s infinite;
}
.chatbot-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5); font-size: 1.4rem;
  line-height: 1; transition: var(--transition); padding: 2px;
}
.chatbot-close:hover { color: white; }
.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 1.2rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  scroll-behavior: smooth;
}
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }
.msg {
  max-width: 85%; display: flex; flex-direction: column; gap: 3px;
}
.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; }
.msg-bubble {
  padding: 0.7rem 1rem; border-radius: 16px;
  font-size: 0.88rem; line-height: 1.5;
}
.msg.bot .msg-bubble {
  background: var(--gray-100); color: var(--navy);
  border-bottom-left-radius: 4px;
}
.msg.user .msg-bubble {
  background: var(--blue); color: white;
  border-bottom-right-radius: 4px;
}
.msg-time {
  font-size: 0.68rem; color: var(--gray-500);
  padding: 0 4px;
}
.msg.user .msg-time { text-align: right; }
.chat-quick-btns {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 0.5rem 1.2rem;
  border-top: 1px solid var(--gray-200);
}
.quick-btn {
  background: var(--blue-pale); color: var(--blue);
  border: 1px solid rgba(21,101,192,0.2);
  border-radius: 100px; padding: 5px 12px;
  font-size: 0.78rem; cursor: pointer;
  transition: var(--transition); font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.quick-btn:hover { background: var(--blue); color: white; }
.chatbot-input-area {
  padding: 0.8rem 1.2rem;
  border-top: 1px solid var(--gray-200);
  display: flex; gap: 8px; align-items: center;
}
.chatbot-input {
  flex: 1; border: 1.5px solid var(--gray-300);
  border-radius: 100px; padding: 0.55rem 1rem;
  font-size: 0.88rem; font-family: 'DM Sans', sans-serif;
  outline: none; transition: var(--transition);
  color: var(--navy);
}
.chatbot-input:focus { border-color: var(--blue); }
.chatbot-send {
  width: 38px; height: 38px; background: var(--blue);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.chatbot-send:hover { background: var(--blue-bright); transform: scale(1.05); }
.chatbot-send svg { width: 16px; height: 16px; fill: white; }
.typing-indicator {
  display: flex; gap: 4px; padding: 4px;
}
.typing-indicator span {
  width: 8px; height: 8px; background: var(--gray-500);
  border-radius: 50%; animation: bounce 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-6px); opacity: 1; }
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--navy); padding: 8rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(21,101,192,0.2) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 1rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--blue-light); transition: var(--transition); }
.breadcrumb a:hover { color: white; }

/* ─── ACCORDION ─── */
.accordion { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion-item { border-bottom: 1px solid var(--gray-200); background: white; }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; background: none; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500; color: var(--navy);
  transition: var(--transition); text-align: left;
}
.accordion-btn:hover { background: var(--gray-100); }
.accordion-btn .acc-icon {
  width: 28px; height: 28px; background: var(--blue-pale);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.2rem; flex-shrink: 0;
  transition: var(--transition);
}
.accordion-btn[aria-expanded="true"] .acc-icon { transform: rotate(45deg); background: var(--blue); color: white; }
.accordion-body { display: none; padding: 0 1.5rem 1.2rem; }
.accordion-body.open { display: block; }

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: var(--gray-200);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,0.85));
  padding: 1.5rem 1rem 0.8rem;
  color: white; font-size: 0.82rem; font-weight: 500;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ─── NOTICE BOX ─── */
.notice-box {
  background: var(--blue-pale); border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.2rem; margin: 1.5rem 0;
}
.notice-box p { font-size: 0.88rem; color: var(--navy); margin: 0; }
.notice-box strong { color: var(--blue); }
.notice-box.red {
  background: #FFEBEE; border-color: var(--red);
}
.notice-box.red p { color: #B71C1C; }

/* ─── PACKAGE CARD ─── */
.pkg-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.pkg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pkg-header {
  background: var(--navy); padding: 1.5rem;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.pkg-header h3 { color: var(--white); font-size: 1.1rem; }
.pkg-price {
  background: var(--blue); color: white;
  border-radius: 10px; padding: 6px 14px;
  font-size: 1.1rem; font-weight: 700;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
}
.pkg-body { padding: 1.5rem; }
.pkg-body ul { list-style: none; }
.pkg-body li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 0.4rem 0; font-size: 0.88rem; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}
.pkg-body li:last-child { border-bottom: none; }
.pkg-body li .check { color: var(--blue); flex-shrink: 0; font-weight: 700; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 2rem; }
  .hero-cards { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-emergency { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .chatbot-window { width: calc(100vw - 2rem); right: 1rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .price-table { font-size: 0.85rem; }
  .price-table td, .price-table th { padding: 0.7rem 0.8rem; }
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--navy);
  flex-direction: column;
  padding: 6rem 2rem 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.8); font-size: 1.3rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'Playfair Display', serif; transition: var(--transition);
}
.mobile-nav a:hover { color: var(--blue-light); padding-left: 8px; }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: white;
  font-size: 2rem; cursor: pointer;
}

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════
   NUEVAS SECCIONES — HOSPITAL SAN ÁNGEL
   ═══════════════════════════════════════════════ */

/* ─── MISIÓN VISIÓN VALORES ─── */
.mvv-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.mvv-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 0% 50%, rgba(21,101,192,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 30%, rgba(66,165,245,0.08) 0%, transparent 60%);
}
.mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  position: relative; z-index: 1;
}
.mvv-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: var(--transition);
}
.mvv-card:last-child { border-right: none; }
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
  opacity: 0;
  transition: var(--transition);
}
.mvv-card:hover::before { opacity: 1; }
.mvv-card:hover { background: rgba(255,255,255,0.03); }
.mvv-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: 1.5rem; right: 2rem;
  pointer-events: none;
}
.mvv-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(21,101,192,0.2);
  border: 1px solid rgba(21,101,192,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.mvv-card:hover .mvv-icon {
  background: var(--blue);
  border-color: var(--blue);
}
.mvv-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.mvv-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.8;
}
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.valor-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: var(--transition);
}
.valor-chip:hover {
  background: rgba(21,101,192,0.15);
  border-color: rgba(21,101,192,0.3);
}
.valor-chip .v-icon { font-size: 1.1rem; }
.valor-chip span {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ─── VIDEO GALLERY ─── */
.video-section {
  background: #0C1A2E;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(21,101,192,0.12) 0%, transparent 60%);
}
.video-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
  position: relative; z-index: 1;
}
.video-player-wrap {
  position: relative;
}
.video-player-frame {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}
.video-now-playing {
  margin-top: 1.2rem;
  display: flex; align-items: center; gap: 12px;
}
.now-playing-dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-red 1.5s infinite;
  flex-shrink: 0;
}
.now-playing-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.now-playing-title {
  color: var(--white);
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.video-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 4px;
}
.video-list::-webkit-scrollbar { width: 3px; }
.video-list::-webkit-scrollbar-track { background: transparent; }
.video-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
.video-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.video-item:hover, .video-item.active {
  background: rgba(21,101,192,0.2);
  border-color: rgba(21,101,192,0.4);
}
.video-item.active {
  border-color: var(--blue);
}
.video-thumb {
  width: 72px; height: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1a2a3a;
  position: relative;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a2a3a, #0d1a2a);
  font-size: 1.4rem;
}
.video-play-icon {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4);
  transition: var(--transition);
}
.video-play-icon svg {
  width: 20px; height: 20px;
  fill: white;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}
.video-item:hover .video-play-icon { background: rgba(21,101,192,0.5); }
.video-item.active .video-play-icon { background: rgba(21,101,192,0.6); }
.video-info { flex: 1; min-width: 0; }
.video-info strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.video-info span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.video-num {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.video-item.active .video-num { color: var(--blue-light); }
.uci-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(211,47,47,0.2);
  border: 1px solid rgba(211,47,47,0.4);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: #EF9A9A;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: inline-flex;
}

/* ─── TESTIMONIOS ─── */
.testimonios-section {
  background: var(--gray-100);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.testimonios-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(21,101,192,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.testimonios-track-wrap {
  overflow: hidden;
  margin: 0 -2rem;
  padding: 0 2rem;
}
.testimonios-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-width: calc(33.333% - 1rem);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  flex-shrink: 0;
}
.testimonio-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(21,101,192,0.2);
}
.testimonio-quote {
  font-size: 3rem;
  color: var(--blue-pale);
  line-height: 1;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  margin-bottom: -0.5rem;
}
.testimonio-text {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonio-stars {
  display: flex; gap: 3px;
  margin-bottom: 1.2rem;
}
.star { color: #FFB300; font-size: 1rem; }
.testimonio-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}
.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
}
.author-info span {
  font-size: 0.78rem;
  color: var(--gray-500);
}
.testimonio-service {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.testimonios-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.t-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--navy);
}
.t-nav-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.t-dots {
  display: flex; gap: 8px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.t-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ─── RESPONSIVE NUEVAS SECCIONES ─── */
@media (max-width: 1024px) {
  .mvv-grid { grid-template-columns: 1fr; }
  .mvv-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .mvv-card:last-child { border-bottom: none; }
  .video-layout { grid-template-columns: 1fr; }
  .video-list { flex-direction: row; overflow-x: auto; overflow-y: visible; max-height: none; flex-wrap: nowrap; padding-bottom: 8px; }
  .video-item { min-width: 220px; }
  .valores-grid { grid-template-columns: 1fr 1fr; }
  .testimonio-card { min-width: calc(50% - 0.75rem); }
}
@media (max-width: 640px) {
  .mvv-card { padding: 2rem 1.5rem; }
  .valores-grid { grid-template-columns: 1fr; }
  .testimonio-card { min-width: calc(90% - 0.75rem); }
  .video-item { min-width: 200px; }
}

/* ═══════════════════════════════════════
   MOBILE OPTIMIZATIONS
   ═══════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Video section ── */
  .video-section { padding: 2.5rem 0; }

  .video-layout {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* Video player — tamaño correcto en móvil */
  .video-player-frame {
    aspect-ratio: 16/9 !important;
    max-height: none !important;
    height: auto !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    border-radius: 10px;
  }



  /* Info debajo del video */
  .video-now-playing {
    margin-top: 0.8rem !important;
  }
  .now-playing-title {
    font-size: 0.95rem !important;
  }

  /* Playlist — scroll horizontal táctil */
  .video-list {
    flex-direction: row !important;
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    max-height: none !important;
    gap: 0.8rem !important;
    padding-bottom: 10px;
    padding-right: 1rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .video-list::-webkit-scrollbar { display: none; }

  .video-item {
    min-width: 160px !important;
    max-width: 160px !important;
    flex-shrink: 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0.6rem !important;
    gap: 0.5rem !important;
    scroll-snap-align: start;
  }

  .video-thumb {
    width: 100% !important;
    height: 85px !important;
    border-radius: 8px;
  }

  .video-num { display: none !important; }
  .video-info strong { font-size: 0.78rem !important; white-space: normal !important; }
  .video-info span { font-size: 0.68rem !important; }

  /* ── Sección general ── */
  .section { padding: 3rem 0; }

  /* ── Hero stats más compactos ── */
  .hero-stats {
    gap: 1.2rem;
  }
  .hero-stat-num { font-size: 1.6rem; }

  /* ── Testimonios en móvil ── */
  #testimoniosGrid {
    grid-template-columns: 1fr !important;
  }

  /* ── Instalaciones en móvil ── */
  .inst-row { gap: 1.5rem !important; }
  .photos-duo { grid-template-columns: 1fr 1fr !important; }
  .photos-duo .p-frame { height: 160px !important; }
  .photos-featured { grid-template-rows: 160px 160px !important; }
  .photos-single img { height: 220px !important; }
  .photos-trio { grid-template-columns: 1fr 1fr !important; }
  .photos-trio .p-frame { height: 140px !important; }

  /* ── MVV section ── */
  .mvv-grid { gap: 0 !important; }
  .mvv-card { padding: 1.5rem !important; }
  .valores-grid { grid-template-columns: 1fr 1fr !important; }

  /* ── Nav header ── */
  .nav-inner { padding: 0 1rem; height: 60px; }

  /* ── Botones en hero ── */
  .hero-actions { flex-direction: column; gap: 0.7rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ── Page hero ── */
  .page-hero { padding: 6rem 0 2.5rem; }
  .page-hero h1 { font-size: 2rem; }

  /* ── Cards grid ── */
  .cards-grid { grid-template-columns: 1fr 1fr !important; gap: 0.8rem !important; }
  .card h3 { font-size: 1rem; }
  .card p { font-size: 0.82rem; }

  /* ── Contact grid ── */
  .contact-grid { grid-template-columns: 1fr !important; }

  /* ── Footer ── */
  .footer-top { grid-template-columns: 1fr !important; }

  /* ── Proc grid ── */
  .proc-grid { grid-template-columns: 1fr !important; }

  /* ── Diag grid ── */
  .diag-grid { grid-template-columns: 1fr 1fr !important; }
  .diag-photo { height: 160px !important; }

  /* ── Lab photo grid ── */
  .lab-photo-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
  }
  .lab-photo-grid .main-photo {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    height: 200px;
  }

  /* ── Video recorrido page ── */
  .vp-hero { padding: 6rem 0 2rem; }

}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr !important; }
  .diag-grid { grid-template-columns: 1fr !important; }
  .photos-duo { grid-template-columns: 1fr !important; }
  .photos-duo .p-frame { height: 200px !important; }
}

@media (max-width: 768px) {
  .mobile-scroll-hint { display: block !important; }
}
