/* ============================================================
   Consultorio Dental Grisel — Custom Styles
   Art Deco Geometric Theme
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy-900: #04121f;
  --navy-800: #0a2342;
  --navy-700: #0d2d56;
  --navy-600: #164a80;
  --navy-300: #a0b8cc;
  --navy-200: #c0d4e4;
  --navy-100: #e0ecf5;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #a88730;
  --white: #ffffff;
  --font-title: 'Lora', Georgia, serif;
  --font-body: 'Rubik', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--navy-100);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ---------- Selection ---------- */
::selection { background: var(--gold); color: var(--navy-900); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-title); line-height: 1.2; }

/* ---------- Art Deco Geometric Pattern ---------- */
.deco-pattern {
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(201,168,76,0.04) 20px, rgba(201,168,76,0.04) 21px),
    repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(201,168,76,0.04) 20px, rgba(201,168,76,0.04) 21px);
}

.deco-pattern-light {
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(201,168,76,0.06) 20px, rgba(201,168,76,0.06) 21px),
    repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(201,168,76,0.06) 20px, rgba(201,168,76,0.06) 21px);
}

/* ---------- Gold Line Ornament ---------- */
.gold-line {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gold-line::before,
.gold-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ---------- Section Labels ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Section Headings ---------- */
.section-heading {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
}

/* ---------- Decorative Diamond Divider ---------- */
.deco-diamond {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.deco-diamond::before,
.deco-diamond::after {
  content: '';
  height: 1px;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.deco-diamond::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.deco-diamond span {
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.25rem 0;
}
#navbar.scrolled {
  background: rgba(4, 18, 31, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-logo-text {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-200);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger */
#hamburger { display: none; }
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}
#hamburger.open .hamburger-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
#hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
#mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: var(--navy-900);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
}
#mobile-menu.open { transform: translateX(0); }
.mobile-nav-link {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(201,168,76,0.03) 30px, rgba(201,168,76,0.03) 31px),
    repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(201,168,76,0.03) 30px, rgba(201,168,76,0.03) 31px);
  pointer-events: none;
}

.hero-corner-tl,
.hero-corner-br {
  position: absolute;
  width: 140px;
  height: 140px;
  pointer-events: none;
}
.hero-corner-tl { top: 24px; left: 24px; }
.hero-corner-br { bottom: 24px; right: 24px; transform: rotate(180deg); }

/* Hero animations (run immediately, no observer) */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%       { transform: rotate(-2deg) translateY(-12px); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%       { box-shadow: 0 0 0 16px rgba(201,168,76,0); }
}

.hero-label    { animation: heroFadeUp 0.7s 0.1s ease both; }
.hero-title    { animation: heroFadeUp 0.7s 0.3s ease both; }
.hero-subtitle { animation: heroFadeUp 0.7s 0.5s ease both; }
.hero-ctas     { animation: heroFadeUp 0.7s 0.7s ease both; }
.hero-stats    { animation: heroFadeUp 0.7s 0.9s ease both; }
.hero-visual   { animation: heroFadeIn 1s 0.5s ease both; }
.hero-tooth    { animation: heroFloat 6s 1.5s ease-in-out infinite; }

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--navy-200);
  max-width: 480px;
  line-height: 1.75;
}

/* Stat Bar */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-300);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.3);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  position: relative;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.12);
  transform: translateY(-2px);
}

/* ============================================================
   SERVICES
   ============================================================ */
#servicios { background: var(--navy-900); }

.service-card {
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.25);
  border-color: rgba(201,168,76,0.3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1); }

.service-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--navy-300);
  line-height: 1.65;
}

/* Corner deco for service cards */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40px; height: 40px;
  border-bottom: 2px solid rgba(201,168,76,0.15);
  border-right: 2px solid rgba(201,168,76,0.15);
}

/* ============================================================
   ABOUT
   ============================================================ */
#nosotros { background: var(--navy-800); }

.about-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-corner {
  position: absolute;
  width: 60px; height: 60px;
}
.about-corner-tl { top: -8px; left: -8px; }
.about-corner-tr { top: -8px; right: -8px; transform: rotate(90deg); }
.about-corner-bl { bottom: -8px; left: -8px; transform: rotate(-90deg); }
.about-corner-br { bottom: -8px; right: -8px; transform: rotate(180deg); }

.about-badge {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 96px; height: 96px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  animation: pulse-gold 3s ease-in-out infinite;
}
.about-badge-num {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}
.about-badge-txt {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-800);
  text-align: center;
  line-height: 1.3;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transform: rotate(45deg);
}
.value-icon svg { transform: rotate(-45deg); width: 18px; height: 18px; }
.value-title {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.value-desc { font-size: 0.83rem; color: var(--navy-300); line-height: 1.6; }

/* ============================================================
   TEAM
   ============================================================ */
#equipo { background: var(--navy-900); }

.team-card {
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.3);
}
.team-avatar-bg {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
  padding: 2rem;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-avatar-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.team-avatar { width: 120px; height: 120px; }

.team-name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.team-bio { font-size: 0.85rem; color: var(--navy-300); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonios { background: var(--navy-800); }

.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}
.testimonial-card {
  background: var(--navy-700);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -16px; left: 24px;
  font-family: var(--font-title);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--navy-100);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.testimonial-service {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Slider controls */
.slider-btn {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.slider-btn:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  transform: scale(1.05);
}

.slider-dot {
  width: 8px; height: 8px;
  background: rgba(201,168,76,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* Stars */
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }

/* ============================================================
   GALLERY
   ============================================================ */
#galeria { background: var(--navy-900); }

.gallery-card {
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.gallery-card-inner {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,18,31,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { color: var(--gold); width: 36px; height: 36px; }
.gallery-overlay-txt {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.gallery-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  padding: 1rem 1.25rem 0.5rem;
}
.gallery-desc {
  font-size: 0.8rem;
  color: var(--navy-300);
  padding: 0 1.25rem 1rem;
  line-height: 1.55;
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4,18,31,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.25);
  max-width: 760px;
  width: 90%;
  position: relative;
  overflow: hidden;
}
.lightbox-img-area {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lightbox-img-area svg {
  max-width: 200px;
  max-height: 200px;
}
.lightbox-info { padding: 1.5rem 2rem; }
.lightbox-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.lightbox-desc { font-size: 0.9rem; color: var(--navy-300); line-height: 1.65; }

.lightbox-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(201,168,76,0.25); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(4,18,31,0.8);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  z-index: 10;
}
.lightbox-nav:hover { background: rgba(201,168,76,0.2); border-color: var(--gold); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-counter {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--navy-300);
  letter-spacing: 0.1em;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contacto { background: var(--navy-800); }

.contact-form-wrap {
  background: var(--navy-900);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem;
}
.contact-info-wrap {
  background: var(--navy-700);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--navy-300); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-select option { background: var(--navy-800); color: var(--white); }
.form-textarea { resize: vertical; min-height: 110px; }

.form-error {
  display: none;
  font-size: 0.75rem;
  color: #f87171;
  margin-top: 4px;
}
.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: #f87171;
}
.form-group.has-error .form-error { display: block; }

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  margin-bottom: 1.25rem;
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.contact-info-value { font-size: 0.9rem; color: var(--navy-100); }

.map-wrap {
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  position: relative;
}
.map-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 1;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
  filter: grayscale(0.3) brightness(0.85);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
}
#cta-section .deco-pattern {
  position: absolute; inset: 0; pointer-events: none;
}

.cta-diamond {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.1);
  border: 2px solid var(--gold);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.cta-diamond svg {
  transform: rotate(-45deg);
  width: 28px; height: 28px;
  color: var(--gold);
}

.cta-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.75rem;
}
.cta-sub {
  font-size: 1rem;
  color: var(--navy-200);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-gold-ornament {
  height: 3px;
  background: linear-gradient(to right, transparent 0%, var(--gold-dark) 20%, var(--gold) 50%, var(--gold-dark) 80%, transparent 100%);
}

.footer-heading {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--navy-300);
  text-decoration: none;
  padding: 3px 0;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--gold); }
.footer-link::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--navy-300);
  padding: 4px 0;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}
.footer-hours-item:last-child { border-bottom: none; }
.footer-hours-day { color: var(--navy-200); }
.footer-hours-time { color: var(--gold-light); }

.footer-map iframe {
  width: 100%;
  height: 160px;
  border: none;
  display: block;
  filter: grayscale(0.4) brightness(0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--navy-300);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
#whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer;
  text-decoration: none;
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: transform var(--transition);
}
#whatsapp-float:hover { transform: scale(1.1); }
#whatsapp-float svg { width: 30px; height: 30px; color: #fff; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  #hamburger { display: flex; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; z-index: 1001; padding: 4px; }
  .nav-links-desktop { display: none !important; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 4rem); }
  .contact-form-wrap,
  .contact-info-wrap { padding: 1.5rem; }
  .lightbox-img-area { height: 240px; }
  .testimonial-card { padding: 1.75rem 1.25rem; }
}
@media (min-width: 769px) {
  #hamburger { display: none; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.gold-text { color: var(--gold); }
.text-navy-200 { color: var(--navy-200); }
.text-navy-300 { color: var(--navy-300); }
.bg-navy-800 { background: var(--navy-800); }
.bg-navy-900 { background: var(--navy-900); }
.border-gold { border-color: rgba(201,168,76,0.2); }
