/* =============================================
   Dra. Nancy Olivas - Landing Page
   Colores principales: #8586bc, #4ab4ce, #6367ae
   ============================================= */

:root {
  --color-lavender: #8586bc;
  --color-teal: #4ab4ce;
  --color-indigo: #6367ae;
  --color-indigo-dark: #4f539a;
  --color-lavender-light: #a9aad0;
  --color-teal-light: #7acde0;
  --color-teal-soft: #e8f6fa;
  --color-lavender-soft: #ededf5;
  --color-indigo-soft: #eaebf5;
  --color-white: #ffffff;
  --color-gray-50: #f8f9fc;
  --color-gray-100: #f1f3f8;
  --color-gray-200: #e2e5ee;
  --color-gray-400: #9ca3b8;
  --color-gray-600: #555b74;
  --color-gray-800: #2d3250;
  --color-gray-900: #1a1e36;
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(99, 103, 174, 0.08);
  --shadow-md: 0 4px 20px rgba(99, 103, 174, 0.1);
  --shadow-lg: 0 10px 40px rgba(99, 103, 174, 0.12);
  --shadow-xl: 0 20px 60px rgba(99, 103, 174, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s ease;
}

/* ==================== RESET & BASE ==================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family);
  color: var(--color-gray-600);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-gray-800);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--color-indigo);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-indigo-dark);
}

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

/* ==================== NAVBAR ==================== */

.navbar {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  z-index: 1050;
}

.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-gray-800) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-indigo), var(--color-teal));
  color: white;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-gray-600) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-indigo) !important;
  background: var(--color-indigo-soft);
}

.btn-cta-nav {
  background: linear-gradient(135deg, var(--color-indigo), var(--color-lavender));
  color: white !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-md);
  border: none;
  transition: var(--transition);
}

.btn-cta-nav:hover {
  background: linear-gradient(135deg, var(--color-indigo-dark), var(--color-indigo));
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(99, 103, 174, 0.3);
}

.navbar-toggler {
  border: 1px solid var(--color-gray-200);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(99, 103, 174, 0.15);
}

/* ==================== HERO ==================== */

.hero-section {
  position: relative;
  background: linear-gradient(160deg, var(--color-gray-50) 0%, var(--color-white) 50%, var(--color-teal-soft) 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--color-indigo);
  top: -150px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--color-teal);
  bottom: -50px;
  left: -80px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--color-lavender);
  top: 40%;
  left: 30%;
}

.hero-content {
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-indigo-soft);
  color: var(--color-indigo);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  font-size: 0.9rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-gray-900);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-indigo), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--color-indigo), var(--color-lavender));
  color: white !important;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.75rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(99, 103, 174, 0.25);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--color-indigo-dark), var(--color-indigo));
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 103, 174, 0.35);
}

.btn-outline-custom {
  color: var(--color-indigo);
  font-weight: 600;
  border: 2px solid var(--color-indigo);
  border-radius: var(--radius-md);
  padding: 0.7rem 1.75rem;
  background: transparent;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--color-indigo);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 103, 174, 0.25);
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--color-gray-400);
  font-weight: 500;
}

.stat-item i {
  color: var(--color-teal);
  font-size: 1rem;
}

/* Hero Image */
.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  max-width: 420px;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: white;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-image-badge i {
  font-size: 1.5rem;
  color: var(--color-indigo);
}

.hero-image-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-gray-800);
}

.hero-image-badge small {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gray-400);
}

/* ==================== TRUST BAR ==================== */

.trust-bar {
  background: var(--color-gray-800);
  padding: 1.5rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: left;
}

.trust-item i {
  font-size: 1.2rem;
  color: var(--color-teal-light);
  flex-shrink: 0;
}

/* ==================== SECTIONS ==================== */

.section-padding {
  padding: 5rem 0;
}

.section-alt {
  background: var(--color-gray-50);
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-badge {
  display: inline-block;
  background: var(--color-indigo-soft);
  color: var(--color-indigo);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-400);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle.text-start {
  margin-left: 0;
}

/* ==================== SERVICE CARDS ==================== */

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon.icon-teal {
  background: var(--color-teal-soft);
  color: var(--color-teal);
}

.service-icon.icon-indigo {
  background: var(--color-indigo-soft);
  color: var(--color-indigo);
}

.service-icon.icon-lavender {
  background: var(--color-lavender-soft);
  color: var(--color-lavender);
}

.service-icon.icon-cta {
  background: linear-gradient(135deg, var(--color-indigo), var(--color-teal));
  color: white;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--color-gray-400);
  line-height: 1.7;
  margin-bottom: 0;
}

.service-card-cta {
  background: linear-gradient(145deg, var(--color-gray-50), var(--color-white));
  border: 2px dashed var(--color-indigo-soft);
}

.service-card-cta:hover {
  border-style: solid;
  border-color: var(--color-indigo);
}

/* ==================== ABOUT / SOBRE MI ==================== */

.about-gallery {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-img-secondary {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}

.about-img-secondary img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.about-experience-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background: linear-gradient(135deg, var(--color-indigo), var(--color-teal));
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
}

.about-role {
  font-size: 1.1rem;
  color: var(--color-indigo);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition);
}

.credential-item:hover {
  border-color: var(--color-indigo-soft);
  box-shadow: var(--shadow-sm);
}

.credential-item i {
  font-size: 1.25rem;
  color: var(--color-indigo);
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-gray-800);
  margin-bottom: 0.15rem;
}

.credential-item span {
  font-size: 0.82rem;
  color: var(--color-gray-400);
}

/* ==================== PROCESO ==================== */

.process-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.process-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-indigo), var(--color-teal));
  color: white;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon {
  width: 64px;
  height: 64px;
  background: var(--color-indigo-soft);
  color: var(--color-indigo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
}

.process-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--color-gray-400);
  margin-bottom: 0;
}

/* ==================== GALLERY ==================== */

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(99, 103, 174, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  color: white;
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ==================== FAQ ==================== */

.faq-image-wrapper {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-image-wrapper img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.accordion-item {
  border: 1px solid var(--color-gray-200) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-gray-800);
  padding: 1.1rem 1.25rem;
  background: var(--color-white);
}

.accordion-button:not(.collapsed) {
  color: var(--color-indigo);
  background: var(--color-indigo-soft);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(99, 103, 174, 0.12);
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236367ae'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--color-gray-600);
  padding: 1rem 1.25rem 1.25rem;
}

.accordion-body a {
  color: var(--color-indigo);
  font-weight: 600;
}

.accordion-body a:hover {
  text-decoration: underline;
}

/* ==================== CONTACT + MAP SECTION ==================== */

.contact-map-section {
  padding: 5rem 0;
  background: var(--color-gray-50);
}

.contact-map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 480px;
}

.contact-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-gray-200);
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.contact-card-subtitle {
  font-size: 0.95rem;
  color: var(--color-gray-400);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--color-indigo-soft);
  color: var(--color-indigo);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--color-gray-800);
  margin-bottom: 0.1rem;
}

.contact-detail-item span {
  font-size: 0.82rem;
  color: var(--color-gray-400);
  line-height: 1.5;
}

.contact-detail-item a {
  color: var(--color-indigo);
  font-weight: 600;
}

.contact-detail-item a:hover {
  text-decoration: underline;
}

.contact-card-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==================== FOOTER ==================== */

.site-footer {
  background: var(--color-gray-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 3.5rem 0 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.3rem;
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--color-teal-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}

.footer-contact-list li i {
  font-size: 0.9rem;
  color: var(--color-teal-light);
  width: 18px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list a:hover {
  color: white;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 2rem 0 1rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: var(--color-teal-light);
  font-weight: 500;
}

.footer-bottom a:hover {
  color: white;
  text-decoration: underline;
}

/* ==================== WHATSAPP FLOAT ==================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
  color: white !important;
}

/* (map styles merged into contact-map-section above) */

/* ==================== LIGHTBOX ==================== */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 30, 54, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ==================== ANIMATIONS ==================== */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==================== RESPONSIVE ==================== */

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

  .hero-image-col {
    margin-top: 2rem;
  }

  .hero-image-wrapper {
    max-width: 340px;
  }

  .hero-image-badge {
    left: 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .about-img-secondary {
    right: 0;
    bottom: -10px;
    width: 40%;
  }

  .faq-image-wrapper {
    display: none;
  }

  .contact-map-wrapper {
    min-height: 350px;
  }

  .contact-map-wrapper iframe {
    min-height: 350px;
  }

  .contact-info-card {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 3.5rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-image-wrapper {
    max-width: 280px;
  }

  .trust-item {
    font-size: 0.75rem;
  }

  .trust-item i {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .about-experience-badge {
    right: 0;
    top: 10px;
  }

  .contact-map-section {
    padding: 3.5rem 0;
  }

  .contact-map-wrapper {
    min-height: 300px;
    border-radius: var(--radius-lg);
  }

  .contact-map-wrapper iframe {
    min-height: 300px;
  }

  .contact-info-card {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
  }

  .contact-card-title {
    font-size: 1.25rem;
  }
}

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

  .navbar-brand {
    font-size: 1.05rem;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }
}
