/* ============================================ */
/* VARIABLES Y RESET */
/* ============================================ */
:root {
  /* Paleta de colores */
  --gold: #c4a265;
  --gold-light: #d4b87a;
  --gold-dark: #a8893e;
  --cream: #f8f4ef;
  --cream-dark: #ede6dc;
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --dark: #0d0d0d;
  --text: #4a4a4a;
  --text-light: #8a8a8a;
  --white: #ffffff;
  --rose: #e8d5d0;
  --rose-light: #f5eded;

  /* Tipografía */
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:
    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Espaciado */
  --section-padding: clamp(80px, 10vw, 140px);
  --container-width: 1280px;
  --container-padding: clamp(20px, 5vw, 60px);

  /* Transiciones */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.3s var(--ease-out);
  --transition-medium: 0.6s var(--ease-out);
  --transition-slow: 1s var(--ease-out);

  /* Bordes */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-x: clip;
}

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

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

ul,
ol {
  list-style: none;
}

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

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

::selection {
  background-color: var(--gold);
  color: var(--white);
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Section */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ============================================ */
/* PRELOADER */
/* ============================================ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.8s var(--ease-out),
    visibility 0.8s;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

/* --- Preloader Logo Emblem --- */
.preloader-logo-emblem {
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Soft radial halo behind logo */
.preloader-emblem-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 162, 101, 0.22) 0%,
    rgba(196, 162, 101, 0.08) 40%,
    transparent 70%
  );
  animation: preloaderGlowPulse 4s ease-in-out infinite alternate;
  z-index: 0;
}

.preloader-emblem-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 130px;
  height: auto;
  opacity: 0;
  animation: preloaderLogoReveal 1.4s var(--ease-out) 0.2s forwards;
  filter: drop-shadow(0 0 20px rgba(196, 162, 101, 0.25))
    drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}

@keyframes preloaderLogoReveal {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(15px);
    filter: drop-shadow(0 0 0 transparent) brightness(1.6) saturate(0);
  }
  50% {
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(196, 162, 101, 0.3)) brightness(1.1)
      saturate(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 20px rgba(196, 162, 101, 0.25))
      drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
  }
}

@keyframes preloaderGlowPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 3px;
}

.preloader-sub {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-top: 8px;
}

.preloader-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: letterReveal 0.5s var(--ease-out) forwards;
  animation-delay: calc(var(--delay) * 0.08s);
}

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto;
  transform: scaleX(0);
  animation: lineExpand 0.8s var(--ease-out) 1s forwards;
}

@keyframes lineExpand {
  to {
    transform: scaleX(1);
  }
}

/* ============================================ */
/* CURSOR PERSONALIZADO */
/* ============================================ */
.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s var(--ease-out);
  mix-blend-mode: difference;
}

.custom-cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.4s var(--ease-out),
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
  opacity: 0.5;
}

.custom-cursor.hover {
  transform: scale(3);
}

.custom-cursor-follower.hover {
  width: 60px;
  height: 60px;
  border-color: var(--gold-light);
  opacity: 0.3;
}

@media (hover: none) {
  .custom-cursor,
  .custom-cursor-follower {
    display: none;
  }
}

/* ============================================ */
/* NAVEGACIÓN */
/* ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.navbar-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.15));
  transition:
    transform var(--transition-fast),
    filter var(--transition-fast);
}

.navbar-logo:hover .logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(196, 162, 101, 0.35));
}

.logo-svg {
  width: 100%;
  height: 100%;
  color: var(--gold);
  transition: color var(--transition-fast);
}

.navbar.scrolled .logo-svg {
  color: var(--charcoal);
}

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

.logo-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.2;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.navbar.scrolled .logo-name {
  color: var(--charcoal);
}

.logo-subtitle {
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  line-height: 1.2;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 12px;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar.scrolled .nav-link {
  color: var(--text);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover {
  color: var(--white);
}

.navbar.scrolled .nav-link:hover {
  color: var(--charcoal);
}

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 12px 24px;
  border-radius: 50px;
  margin-left: 16px;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.toggle-line {
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all var(--transition-fast);
}

.navbar.scrolled .toggle-line {
  background: var(--charcoal);
}

.navbar-toggle.active .toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggle.active .toggle-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--charcoal);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  text-align: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 300;
  color: var(--white);
  padding: 8px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-fast);
}

.mobile-menu.active .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-nav-link:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-nav-link:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu.active .mobile-nav-link:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-nav-link:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-menu.active .mobile-nav-link:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-nav-link:hover {
  color: var(--gold);
}

.mobile-cta {
  display: inline-block;
  margin-top: 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 16px 40px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-fast);
}

.mobile-menu.active .mobile-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.mobile-menu-footer {
  margin-top: 48px;
  color: var(--text-light);
  font-size: 13px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.mobile-menu.active .mobile-menu-footer {
  opacity: 1;
  transition-delay: 0.4s;
}

.mobile-menu-footer p {
  margin-bottom: 4px;
}

/* ============================================ */
/* HERO */
/* ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(196, 162, 101, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(196, 162, 101, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 80%,
      rgba(196, 162, 101, 0.05) 0%,
      transparent 40%
    ),
    linear-gradient(180deg, rgba(13, 13, 13, 0.3) 0%, rgba(26, 26, 26, 1) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--container-padding);
  padding-top: 40px;
}

/* Hero Logo — Floating Transparent Logo */
.hero-logo-wrapper {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.hero-logo-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 400px;
}

/* Radial golden glow behind the logo */
.hero-logo-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 162, 101, 0.18) 0%,
    rgba(196, 162, 101, 0.08) 35%,
    rgba(196, 162, 101, 0.03) 55%,
    transparent 70%
  );
  animation: heroHaloPulse 5s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

/* Orbiting accent ring */
.hero-logo-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  margin-top: -150px;
  margin-left: -150px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(196, 162, 101, 0.25);
  border-right-color: rgba(196, 162, 101, 0.12);
  animation: heroOrbitSpin 12s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.hero-logo-orbit::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(196, 162, 101, 0.5);
}

/* Subtle light sweep across logo */
.hero-logo-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 30%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.04) 70%,
    transparent 100%
  );
  z-index: 4;
  animation: heroShine 6s var(--ease-in-out) 3s infinite;
  pointer-events: none;
}

/* Logo image — transparent, no frame */
.hero-logo {
  position: relative;
  z-index: 3;
  display: block;
  width: 260px;
  height: auto;
  opacity: 0;
  animation:
    heroLogoReveal 2s var(--ease-out) forwards,
    heroLogoFloat 6s ease-in-out 2.5s infinite;
  filter: drop-shadow(0 0 30px rgba(196, 162, 101, 0.2))
    drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5));
  transition:
    transform 0.6s var(--ease-out),
    filter 0.6s var(--ease-out);
}

.hero-logo-stage:hover .hero-logo {
  transform: translateY(-8px) scale(1.04);
  filter: drop-shadow(0 0 40px rgba(196, 162, 101, 0.35))
    drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55)) brightness(1.05);
}

.hero-logo-stage:hover .hero-logo-halo {
  animation-play-state: paused;
  opacity: 1.3;
}

/* ====== KEYFRAMES — Logo reveal sequence ====== */

/* Halo breathing */
@keyframes heroHaloPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

/* Orbit rotation */
@keyframes heroOrbitSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Logo image entrance */
@keyframes heroLogoReveal {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(20px);
    filter: drop-shadow(0 0 0 transparent) brightness(1.5) saturate(0);
  }
  50% {
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(196, 162, 101, 0.2)) brightness(1.1)
      saturate(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 30px rgba(196, 162, 101, 0.2))
      drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5));
  }
}

/* Light sweep across logo */
@keyframes heroShine {
  0% {
    left: -100%;
  }
  25% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}

/* Continuous gentle float */
@keyframes heroLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.badge-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.badge-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-word {
  display: inline-block;
  font-size: clamp(40px, 8vw, 88px);
  letter-spacing: -1px;
}

.hero-word-accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.hero-description {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 50px;
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 162, 101, 0.3);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 13px;
}

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

.btn i,
.btn svg {
  width: 16px;
  height: 16px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--gold);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.scroll-text {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 1px;
  height: 12px;
  background: var(--gold);
  position: absolute;
  top: -12px;
  animation: scrollDown 2s var(--ease-in-out) infinite;
}

@keyframes scrollDown {
  0% {
    top: -12px;
  }
  100% {
    top: 40px;
  }
}

/* Hero Decorative */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 162, 101, 0.08);
  z-index: 1;
}

.hero-deco-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  animation: decoFloat 20s linear infinite;
}

.hero-deco-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: decoFloat 25s linear infinite reverse;
}

@keyframes decoFloat {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

/* ============================================ */
/* MARQUEE */
/* ============================================ */
.marquee-section {
  background: var(--cream);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(196, 162, 101, 0.15);
  border-bottom: 1px solid rgba(196, 162, 101, 0.15);
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.marquee-dot {
  color: var(--gold);
  font-size: 12px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================ */
/* SECTION HEADERS */
/* ============================================ */
.section-header {
  margin-bottom: 48px;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.section-description {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 20px;
  line-height: 1.8;
}

/* ============================================ */
/* ABOUT */
/* ============================================ */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 162, 101, 0.18);
  background: linear-gradient(
    135deg,
    rgba(248, 244, 239, 0.72) 0%,
    rgba(255, 255, 255, 1) 56%,
    rgba(248, 244, 239, 0.62) 100%
  );
}

.about-image-col {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-image-media {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  margin: 0;
  isolation: isolate;
}

.about-image-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  display: block;
  transition: transform 0.9s var(--ease-out);
  transform: scale(1.01);
}

.about-image-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(196, 162, 101, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(196, 162, 101, 0.06) 0%,
      transparent 50%
    );
  z-index: 1;
  pointer-events: none;
}

.about-image-wrapper:hover .about-image-media img {
  transform: scale(1.04);
}

.about-image-frame {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.08;
}

.about-experience-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 20px 40px rgba(196, 162, 101, 0.3);
}

.experience-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  display: block;
  line-height: 1;
}

.experience-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.4;
}

.about-text {
  margin-bottom: 28px;
}

.about-lead {
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.about-feature:hover {
  background: var(--cream);
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition-fast);
}

.about-feature:hover .feature-icon {
  background: var(--gold);
  color: var(--white);
}

.feature-icon i,
.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 13px;
  color: var(--text-light);
}

/* Assistant spotlight */
.assistant-spotlight {
  margin-top: clamp(44px, 6vw, 84px);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 162, 101, 0.2);
  background: linear-gradient(
    135deg,
    rgba(248, 244, 239, 0.7) 0%,
    rgba(255, 255, 255, 1) 55%,
    rgba(248, 244, 239, 0.65) 100%
  );
  display: grid;
  grid-template-columns: minmax(250px, 320px) 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.assistant-spotlight::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 162, 101, 0.16),
    transparent 68%
  );
  pointer-events: none;
}

.assistant-spotlight-photo {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(196, 162, 101, 0.2);
}

.assistant-spotlight-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

.assistant-spotlight-content {
  position: relative;
  z-index: 1;
}

.assistant-spotlight-name {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--charcoal);
  margin: 10px 0 18px;
}

.assistant-spotlight-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.assistant-spotlight-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.assistant-spotlight-pills span {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
  background: rgba(196, 162, 101, 0.14);
  border: 1px solid rgba(196, 162, 101, 0.22);
}

.assistant-spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: all var(--transition-fast);
}

.assistant-spotlight-link i,
.assistant-spotlight-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.assistant-spotlight-link:hover {
  color: var(--gold);
}

.assistant-spotlight-link:hover i,
.assistant-spotlight-link:hover svg {
  transform: translateX(4px);
}

/* ============================================ */
/* TEAM / EQUIPO */
/* ============================================ */
.team-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  opacity: 0;
  transform: translateY(30px);
}

.team-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s var(--ease-out);
}

.team-card-inner {
  background: var(--white);
  border: 1px solid rgba(196, 162, 101, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.5s var(--ease-out);
}

.team-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-light) 30%,
    var(--gold) 50%,
    var(--gold-light) 70%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.team-card-inner:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.06),
    0 0 40px rgba(196, 162, 101, 0.08);
  border-color: rgba(196, 162, 101, 0.25);
}

.team-card-inner:hover::before {
  opacity: 1;
}

/* Avatar */
.team-avatar {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 28px;
}

.team-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(196, 162, 101, 0.08) 0%,
    rgba(196, 162, 101, 0.15) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.team-avatar-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(196, 162, 101, 0.25);
  position: relative;
  z-index: 1;
  background: var(--cream);
}

.team-avatar-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 20%;
  transform: scale(1.05);
}

.team-avatar-photo--rotated img {
  object-position: 50% 50%;
  transform: scale(1.05);
}

.team-avatar-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 162, 101, 0.2);
  transition: all 0.5s var(--ease-out);
}

.team-card-inner:hover .team-avatar-ring {
  border-color: rgba(196, 162, 101, 0.45);
  transform: scale(1.06);
}

/* Info */
.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.team-role {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 18px;
  border: 1px solid rgba(196, 162, 101, 0.25);
  border-radius: 20px;
  margin-bottom: 8px;
}

.team-bio {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 340px;
  margin: 0 auto;
}

.team-social {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.team-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(196, 162, 101, 0.2);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.team-social-link:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.team-social-link i {
  width: 16px;
  height: 16px;
}

/* ============================================ */
/* SERVICES */
/* ============================================ */
.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
}

.service-card-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-medium);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

.service-card:hover .service-card-inner {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(196, 162, 101, 0.2);
}

.service-card:hover .service-card-inner::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}

.service-icon i,
.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  color: var(--cream-dark);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
  transition: color var(--transition-fast);
}

.service-card:hover .service-number {
  color: rgba(196, 162, 101, 0.15);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-benefits {
  margin-bottom: 20px;
}

.service-benefits li {
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.service-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: all var(--transition-fast);
  margin-top: auto;
}

.service-link i {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.service-link:hover {
  color: var(--gold-dark);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ============================================ */
/* TECHNOLOGY */
/* ============================================ */
.technology-section {
  background: var(--white);
  overflow: hidden;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.tech-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 40px;
}

.tech-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.tech-item:hover {
  background: var(--cream);
  border-color: rgba(196, 162, 101, 0.15);
}

.tech-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition-fast);
}

.tech-item:hover .tech-item-icon {
  background: var(--gold);
  color: var(--white);
}

.tech-item-icon i {
  width: 22px;
  height: 22px;
}

.tech-item-content h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.tech-item-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Tech Visual */
.tech-visual-wrapper {
  position: relative;
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
}

.tech-visual-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-center-icon {
  color: var(--gold);
  opacity: 0.3;
}

.tech-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 162, 101, 0.15);
}

.tech-circle-1 {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  animation: techRotate 30s linear infinite;
}

.tech-circle-2 {
  width: 85%;
  height: 85%;
  top: 7.5%;
  left: 7.5%;
  animation: techRotate 40s linear infinite reverse;
}

.tech-circle-3 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-style: dashed;
  animation: techRotate 50s linear infinite;
}

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

.tech-floating-card {
  position: absolute;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
  z-index: 2;
  animation: techFloat 6s var(--ease-in-out) infinite;
}

.tech-floating-card i,
.tech-floating-card svg {
  color: var(--gold);
}

.tech-card-1 {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.tech-card-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 2s;
}

.tech-card-3 {
  bottom: 5%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes techFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============================================ */
/* TESTIMONIALS / RESULTS */
/* ============================================ */
.results-section {
  background: var(--cream);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform var(--transition-medium);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.testimonial-card:hover {
  border-color: rgba(196, 162, 101, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
}

.author-name {
  display: block;
  font-weight: 500;
  color: var(--charcoal);
  font-size: 14px;
}

.author-treatment {
  font-size: 12px;
  color: var(--text-light);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition-fast);
}

.testimonial-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.testimonial-btn i {
  width: 18px;
  height: 18px;
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(196, 162, 101, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================ */
/* CTA SECTION */
/* ============================================ */
.cta-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(196, 162, 101, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      rgba(196, 162, 101, 0.05) 0%,
      transparent 50%
    );
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================ */
/* CONTACT */
/* ============================================ */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.contact-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-item-icon i {
  width: 18px;
  height: 18px;
}

.contact-item-content h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-item-content p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.contact-item-content a {
  color: var(--gold);
  transition: color var(--transition-fast);
}

.contact-item-content a:hover {
  color: var(--gold-dark);
}

.contact-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--cream);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 48px);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--charcoal);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  font-weight: 300;
}

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

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Privacy checkbox */
.form-privacy {
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

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

.checkbox-label a {
  color: var(--gold);
  text-decoration: underline;
}

/* ============================================ */
/* MAP */
/* ============================================ */
.map-section {
  position: relative;
  line-height: 0;
}

.map-section iframe {
  filter: grayscale(60%) contrast(1.1);
  transition: filter var(--transition-medium);
}

.map-section:hover iframe {
  filter: grayscale(0%) contrast(1);
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
.footer {
  background: var(--charcoal);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-logo .logo-svg {
  color: var(--gold);
}

.footer-logo-img {
  width: 50px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(196, 162, 101, 0.2));
  transition: filter 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  filter: drop-shadow(0 0 14px rgba(196, 162, 101, 0.4));
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  display: block;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-items p {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-items i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-items a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-contact-items a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credits {
  font-family: var(--font-heading);
  font-style: italic;
  letter-spacing: 1px;
}

/* ============================================ */
/* WHATSAPP FLOAT */
/* ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  animation: whatsappPulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

/* ============================================ */
/* SCROLL TO TOP */
/* ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.scroll-top i {
  width: 18px;
  height: 18px;
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

[data-animate="fade-up"].animated {
  opacity: 1;
  transform: translateY(0);
}

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

[data-animate="fade-right"].animated {
  opacity: 1;
  transform: translateX(0);
}

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

[data-animate="fade-left"].animated {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .navbar-nav {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 26px;
  }

  .about-image-col {
    max-width: 400px;
    margin: 0 auto;
  }

  .assistant-spotlight {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .assistant-spotlight-photo {
    max-width: 380px;
    width: 100%;
    min-height: 300px;
    margin: 0 auto;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tech-visual-wrapper {
    max-width: 350px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  [data-animate="fade-right"],
  [data-animate="fade-left"] {
    transform: translateY(24px);
  }

  [data-animate="fade-right"].animated,
  [data-animate="fade-left"].animated {
    transform: translateY(0);
  }

  /* Team section responsive */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
  }

  .team-card-inner {
    padding: 36px 28px;
  }

  .assistant-spotlight-name {
    font-size: clamp(28px, 7vw, 36px);
  }

  .assistant-spotlight-pills {
    gap: 8px;
  }

  .assistant-spotlight-pills span {
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .team-name {
    font-size: 22px;
  }

  /* Preloader emblem responsive */
  .preloader-emblem-img {
    width: 95px;
  }
  .preloader-emblem-glow {
    width: 160px;
    height: 160px;
  }
  .preloader-logo-emblem {
    margin-bottom: 28px;
  }

  /* Hero logo responsive */
  .hero-logo-stage {
    width: 240px;
    height: 300px;
  }
  .hero-logo-halo {
    width: 260px;
    height: 260px;
  }
  .hero-logo-orbit {
    width: 230px;
    height: 230px;
    margin-top: -115px;
    margin-left: -115px;
  }
  .hero-logo {
    width: 190px;
  }

  .hero-logo-wrapper {
    margin-bottom: 32px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    min-width: calc(100% - 0px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .scroll-top {
    right: 84px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  /* Preloader emblem responsive */
  .preloader-emblem-img {
    width: 75px;
  }
  .preloader-emblem-glow {
    width: 130px;
    height: 130px;
  }
  .preloader-logo-emblem {
    margin-bottom: 20px;
  }

  /* Hero logo responsive */
  .hero-logo-stage {
    width: 200px;
    height: 250px;
  }
  .hero-logo-halo {
    width: 210px;
    height: 210px;
  }
  .hero-logo-orbit {
    display: none;
  }
  .hero-logo {
    width: 160px;
  }

  .hero-logo-wrapper {
    margin-bottom: 20px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .hero-word {
    font-size: 36px;
  }

  .hero-badge {
    flex-direction: column;
    gap: 8px;
  }

  .badge-line {
    display: none;
  }

  .about-experience-badge {
    bottom: -10px;
    right: -10px;
    padding: 16px 20px;
  }

  .about-grid {
    padding: 20px;
  }

  .experience-number {
    font-size: 28px;
  }

  .logo-text {
    display: none;
  }

  .assistant-spotlight {
    padding: 22px;
  }

  .assistant-spotlight-photo {
    max-width: 100%;
    width: 100%;
    min-height: 260px;
  }
}

/* ============================================ */
/* SMOOTH SCROLL OFFSET */
/* ============================================ */
section[id] {
  scroll-margin-top: 80px;
}

/* ============================================ */
/* SPECIAL EFFECTS */
/* ============================================ */

/* Gold shimmer on hover for cards */
.service-card-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 162, 101, 0.03) 50%,
    transparent 100%
  );
  transition: left 0.8s var(--ease-out);
  pointer-events: none;
}

.service-card:hover .service-card-inner::after {
  left: 100%;
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Print styles */
@media print {
  .navbar,
  .whatsapp-float,
  .scroll-top,
  .mobile-menu,
  .hero-particles,
  .hero-scroll-indicator,
  .custom-cursor,
  .custom-cursor-follower,
  #preloader {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  body {
    color: #000;
  }
}
