/* =================== PRELOADER =================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s, visibility .6s;
}

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

.loader-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
  position: relative;
}

.loader-ring::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--gold-light);
  animation: spin .6s linear reverse infinite;
}

/* =================== CURSOR GLOW =================== */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
  opacity: 0;
}

.cursor-glow.active {
  opacity: 1;
}

/* =================== NAVBAR =================== */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav-bar.scrolled {
  background: rgba(10, 22, 40, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(201, 168, 76, .1);
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  position: relative;
  display: inline-flex;
  align-items: baseline;
}

.nav-logo span {
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.logo-icon {
  color: var(--white);
  font-size: 30px;
  margin-left: -0.2em;
  transform: rotate(-16deg);
  display: inline-block;
  position: relative;
  top: -1px;
  z-index: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray-200);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 22, 40, .98);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(201, 168, 76, .08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 20%, rgba(45, 138, 110, .06) 0%, transparent 50%),
              linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image: linear-gradient(rgba(201, 168, 76, 1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201, 168, 76, 1) 1px, transparent 1px);
  background-size: 80px 80px;
}

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

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px var(--px) 80px;
  width: 100%;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, .25);
  background: rgba(201, 168, 76, .06);
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 40px;
}

.hero-badge i {
  font-size: 1.2rem;
  transform: rotate(-16deg);
  position: relative;
  top: -2px;
}

.hero-text-carousel {
  position: relative;
  margin: 0 auto 28px;
  max-width: 900px;
  height: 300px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin: 0 auto 24px;
  max-width: 850px;
}

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

.hero-subtitle {
  font-size: clamp(.95rem, 1.2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-200);
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 16px;
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

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

.carousel-dot {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  cursor: pointer;
  background: rgba(200, 198, 190, .2);
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.carousel-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0s;
}

.carousel-dot.active {
  width: 48px;
}

.carousel-dot.active::after {
  width: 100%;
  transition: width 5s linear;
}

.carousel-counter {
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: .08em;
}

.carousel-counter span {
  color: var(--gold);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(200, 198, 190, .08);
  justify-content: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray-400);
  margin-top: 4px;
}

/* =================== MARQUEE =================== */
.marquee-section {
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(200, 198, 190, .04);
  border-bottom: 1px solid rgba(200, 198, 190, .04);
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
}

.marquee-item {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(200, 198, 190, 0.75);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 60px;
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.4);
}

/* =================== ABOUT =================== */
.about {
  background: var(--navy);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3.75;
  background: url('../img/aboutpng.png') center/cover no-repeat;
  border: 1px solid rgba(201, 168, 76, .1);
  transition: var(--transition-slow);
}

.about-image-wrap:hover {
  transform: scale(1.02);
  border-color: rgba(201, 168, 76, .2);
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, .1) 0%, transparent 60%);
  z-index: 1;
}

.about-image-decoration {
  position: absolute;
  inset: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(201, 168, 76, .06);
}

.about-floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 2;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: rgba(19, 32, 64, .85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, .15);
  transition: var(--transition);
}

.about-floating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.about-floating-card .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}

.about-floating-card .label {
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray-200);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, .03);
  border: 1px solid rgba(201, 168, 76, .06);
  transition: var(--transition);
}

.about-feature:hover {
  background: rgba(201, 168, 76, .06);
  border-color: rgba(201, 168, 76, .15);
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(201, 168, 76, .1);
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}

.about-feature:hover .about-feature-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 6px 20px var(--gold-glow);
}

.about-feature h4 {
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: .82rem;
  line-height: 1.6;
  margin: 0;
  color: var(--gray-400);
}

/* =================== SERVICES =================== */
.services {
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 72px;
}

.services-header .section-heading {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-header .section-desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius);
  background: rgba(19, 32, 64, .4);
  border: 1px solid rgba(200, 198, 190, .06);
  transition: var(--transition);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, .06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

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

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  background: rgba(19, 32, 64, .7);
  border-color: rgba(201, 168, 76, .15);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, .08);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 24px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--gray-400);
  position: relative;
  z-index: 1;
}

.service-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, .05);
  line-height: 1;
  transition: var(--transition);
}

.service-card:hover .service-number {
  color: rgba(201, 168, 76, .12);
}

/* =================== FAQ =================== */
.faq {
  background: var(--navy);
  overflow: hidden;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(200, 198, 190, .06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  background: rgba(19, 32, 64, .2);
}

.faq-item:hover {
  border-color: rgba(200, 198, 190, .12);
  background: rgba(19, 32, 64, .35);
}

.faq-item.active {
  border-color: rgba(201, 168, 76, .2);
  background: rgba(19, 32, 64, .4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
  background: transparent;
  border: none;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(200, 198, 190, .15);
  font-size: .8rem;
  color: var(--gold);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.16, 1, .3, 1);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: .88rem;
  line-height: 1.8;
  color: var(--gray-400);
}

/* =================== PARTNERS =================== */
.partners {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 48px;
}

.partners-track {
  display: flex;
  gap: 64px;
  width: max-content;
}

.partner-item {
  flex-shrink: 0;
  padding: 24px 40px;
  border: 1px solid rgba(200, 198, 190, .06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
  transition: var(--transition);
  background: rgba(19, 32, 64, .3);
  min-width: 200px;
}

.partner-item i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: .5;
}

.partner-item:hover {
  border-color: rgba(201, 168, 76, .2);
  color: var(--white);
}

/* =================== LOCATION =================== */
.location {
  background: var(--navy-light);
  overflow: hidden;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200, 198, 190, .06);
  aspect-ratio: 16/10;
  transition: var(--transition-slow);
}

.location-map:hover {
  border-color: rgba(201, 168, 76, .15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(.8) contrast(1.1);
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(200, 198, 190, .06);
  transition: var(--transition);
}

.location-detail:hover {
  transform: translateX(6px);
}

.location-detail:last-child {
  border-bottom: none;
}

.location-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, .08);
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}

.location-detail:hover .location-detail-icon {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 20px var(--gold-glow);
}

.location-detail h4 {
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.location-detail p {
  font-size: .88rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* =================== CONTACT =================== */
.contact {
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.contact-form {
  padding: 48px;
  border-radius: var(--radius);
  background: rgba(19, 32, 64, .5);
  border: 1px solid rgba(200, 198, 190, .06);
  backdrop-filter: blur(10px);
  transition: var(--transition-slow);
}

.contact-form:hover {
  border-color: rgba(201, 168, 76, .1);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .2);
}

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

.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 22, 40, .6);
  border: 1px solid rgba(200, 198, 190, .08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  transition: var(--transition);
  outline: none;
}

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

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

.form-group select {
  cursor: pointer;
  appearance: none;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transform: translateX(-100%);
  transition: transform .6s;
}

.form-submit:hover::before {
  transform: translateX(100%);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.form-feedback {
  margin-top: 16px;
  padding: 0;
  font-size: .85rem;
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: all .3s;
}

.form-feedback.success {
  padding: 14px;
  background: rgba(45, 138, 110, .12);
  border: 1px solid rgba(45, 138, 110, .25);
  color: var(--green-light);
}

.form-feedback.error {
  padding: 14px;
  background: rgba(220, 53, 69, .12);
  border: 1px solid rgba(220, 53, 69, .25);
  color: #f87171;
}

.contact-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(45, 138, 110, .1);
  border: 1px solid rgba(45, 138, 110, .2);
  border-radius: 100px;
  color: var(--green-light);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.contact-whatsapp:hover {
  background: var(--green-trust);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 138, 110, .3);
}

.contact-whatsapp i {
  font-size: 1.2rem;
}

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

.contact-social-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 198, 190, .1);
  color: var(--gray-400);
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, .06);
  transform: translateY(-3px);
}

/* =================== FOOTER =================== */
.footer {
  padding: 60px 0 32px;
  background: var(--navy);
  border-top: 1px solid rgba(200, 198, 190, .04);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(200, 198, 190, .04);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  display: inline-flex;
  align-items: baseline;
}

.footer-logo span {
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 198, 190, .1);
  color: var(--gray-400);
  font-size: .9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, .06);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: var(--gray-600);
}

.footer-bottom a {
  color: var(--gold);
}

/* =================== WHATSAPP FLOAT =================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: var(--transition);
}

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

/* =================== WHATSAPP MODAL =================== */
.wpp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

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

.wpp-modal {
  position: relative;
  background: #075e54;
  border-radius: 20px;
  padding: 40px 36px 36px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  transform: scale(.9) translateY(20px);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
  border: 1px solid rgba(37, 211, 102, .2);
}

.wpp-modal-overlay.active .wpp-modal {
  transform: scale(1) translateY(0);
}

.wpp-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .5);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color .2s, transform .2s;
  line-height: 1;
}

.wpp-modal-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.wpp-modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, .4);
}

.wpp-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.wpp-modal-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 28px;
}

.wpp-modal-textarea {
  width: 100%;
  min-height: 100px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .2);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  resize: vertical;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  margin-bottom: 16px;
}

.wpp-modal-textarea::placeholder {
  color: rgba(255, 255, 255, .4);
}

.wpp-modal-textarea:focus {
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, .2);
}

.wpp-modal-send {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 100px;
  background: #25d366;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.wpp-modal-send:hover {
  background: #2be673;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, .4);
}

/* =================== COOKIE BANNER =================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(19, 32, 64, .95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(201, 168, 76, .15);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, .4);
  transform: translateY(100%);
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--px);
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-banner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(201, 168, 76, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text p {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--gray-200);
  margin: 0;
}

.cookie-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}

.cookie-link:hover {
  color: var(--gold-light);
}

.cookie-banner-actions {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
}

.cookie-btn-accept {
  padding: 12px 28px;
  border: none;
  border-radius: 100px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

.cookie-btn-decline {
  padding: 12px 28px;
  border: 1.5px solid rgba(200, 198, 190, .15);
  border-radius: 100px;
  background: transparent;
  color: var(--gray-400);
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .2s;
}

.cookie-btn-decline:hover {
  border-color: rgba(200, 198, 190, .3);
  color: var(--white);
  transform: translateY(-2px);
}

/* Cookie Preferences Panel */
.cookie-prefs {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px) 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.16, 1, .3, 1), padding .5s;
}

.cookie-prefs.open {
  max-height: 400px;
  padding-top: 4px;
  padding-bottom: 24px;
}

.cookie-prefs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 198, 190, .06);
  margin-bottom: 16px;
}

.cookie-prefs-header h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cookie-prefs-close {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color .2s;
  line-height: 1;
}

.cookie-prefs-close:hover {
  color: var(--white);
}

.cookie-pref-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: rgba(10, 22, 40, .5);
  border: 1px solid rgba(200, 198, 190, .04);
  margin-bottom: 8px;
  transition: border-color .2s;
}

.cookie-pref-item:hover {
  border-color: rgba(201, 168, 76, .1);
}

.cookie-pref-info strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.cookie-pref-info span {
  font-size: .78rem;
  color: var(--gray-400);
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-slider {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(200, 198, 190, .15);
  transition: background .3s;
}

.cookie-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .3s;
}

.cookie-toggle input:checked + .cookie-slider {
  background: var(--gold);
}

.cookie-toggle input:checked + .cookie-slider::before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-slider {
  opacity: .6;
  cursor: not-allowed;
}

.cookie-btn-save {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  border: none;
  border-radius: 100px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.cookie-btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
}
