/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-5) 0;
  transition: all var(--dur-normal) var(--ease-default);
}

.nav.scrolled {
  padding: var(--space-3) 0;
  background: hsla(36, 30%, 97%, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--cream-dim);
  letter-spacing: var(--tracking-wide);
  position: relative;
  transition: color var(--dur-fast) var(--ease-default);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-400);
  transition: width var(--dur-normal) var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-400);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Services dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all var(--dur-normal) var(--ease-out);
  box-shadow: var(--shadow-lg);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--cream-dim);
  border-radius: var(--radius-md);
  transition: all var(--dur-fast) var(--ease-default);
}

.nav__dropdown-item:hover {
  background: var(--bg-raised);
  color: var(--gold-400);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--dur-normal) var(--ease-default);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: hsla(36, 30%, 98%, 0.97);
  backdrop-filter: blur(20px);
  z-index: var(--z-overlay);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.nav__mobile-overlay.active {
  display: flex;
}

.nav__mobile-overlay a {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--cream);
  transition: color var(--dur-fast);
}

.nav__mobile-overlay a:hover {
  color: var(--gold-400);
}

.nav__mobile-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  color: var(--cream);
  cursor: pointer;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  border-radius: var(--radius-full);
  padding: 0.85em 2em;
  transition: all var(--dur-normal) var(--ease-default);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: white;
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  transform: translateY(-2px);
  box-shadow: 0 0 40px hsla(194, 30%, 40%, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--gold-400);
  border: 1.5px solid var(--gold-600);
}

.btn--secondary:hover {
  background: hsla(194, 30%, 45%, 0.08);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--cream-dim);
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--gold-600);
  color: var(--gold-400);
}

.btn--rose {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-400));
  color: white;
  box-shadow: var(--shadow-rose);
}

.btn--rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px hsla(210, 35%, 55%, 0.3);
}

.btn--lg {
  font-size: var(--text-base);
  padding: 1em 2.5em;
}

.btn--sm {
  font-size: var(--text-xs);
  padding: 0.65em 1.5em;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ═══════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--dur-normal) var(--ease-default);
}

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

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: hsla(194, 30%, 45%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--gold-400);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--cream);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

.card__price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold-400);
  margin-top: var(--space-4);
}

.card__price span {
  font-size: var(--text-sm);
  font-family: var(--font-body);
  color: var(--text-muted);
  font-weight: 400;
}

/* Card with gold top strip */
.card--gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-600));
}

/* Card with image */
.card--image {
  padding: 0;
  overflow: hidden;
}

.card--image .card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card--image .card__body {
  padding: var(--space-6);
}

/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  padding: var(--space-10) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: hsla(36, 25%, 92%, 0.6);
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.trust-item__icon {
  color: var(--gold-400);
  margin-bottom: var(--space-1);
}

.trust-item__icon svg {
  width: 28px;
  height: 28px;
}

.trust-item__value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--cream);
}

.trust-item__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
  color: var(--gold-400);
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial__text {
  font-size: var(--text-base);
  color: var(--cream-dim);
  line-height: var(--leading-relaxed);
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
}

.testimonial__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--cream);
}

.testimonial__source {
  font-size: var(--text-xs);
  color: var(--text-dim);
}

.testimonial__quote-icon {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  color: var(--gold-800);
  opacity: 0.5;
}

.testimonial__quote-icon svg {
  width: 32px;
  height: 32px;
}

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

.hero__content {
  position: relative;
  z-index: var(--z-raised);
  max-width: 720px;
}

.hero__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-500);
}

.hero__title {
  font-size: var(--text-6xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: var(--text-muted);
  margin-bottom: var(--space-10);
  max-width: 50ch;
  line-height: var(--leading-relaxed);
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

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

.hero__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: var(--z-sticky);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px hsla(142, 70%, 40%, 0.35);
  transition: all var(--dur-normal) var(--ease-bounce);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px hsla(142, 70%, 40%, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  white-space: nowrap;
  font-size: var(--text-sm);
  color: var(--cream-dim);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-normal);
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  visibility: visible;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: hsl(99, 24%, 23%);
  border-top: 1px solid var(--border);
  padding: var(--space-16) 0 var(--space-8);
  color: hsl(40, 30%, 88%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  margin-bottom: var(--space-4);
}

.footer__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.8) contrast(0.9);
}

.footer__desc {
  font-size: var(--text-sm);
  color: hsl(35, 14%, 65%);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid hsla(194, 20%, 50%, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(35, 14%, 65%);
  transition: all var(--dur-fast);
}

.footer__social-link:hover {
  border-color: var(--gold-600);
  color: var(--gold-400);
  background: hsla(194, 30%, 45%, 0.08);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--space-6);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__col a {
  font-size: var(--text-sm);
  color: hsl(35, 14%, 65%);
  transition: color var(--dur-fast);
}

.footer__col a:hover {
  color: var(--gold-300);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: hsl(35, 10%, 55%);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: hsl(35, 10%, 55%);
  transition: color var(--dur-fast);
}

.footer__legal a:hover {
  color: var(--gold-300);
}

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--cream-dim);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--cream);
  font-size: var(--text-base);
  transition: all var(--dur-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px hsla(194, 30%, 45%, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23578896' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  text-align: left;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--cream);
  cursor: pointer;
  transition: color var(--dur-fast);
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--dur-normal) var(--ease-default);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-default);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer__inner {
  padding-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

/* ═══════════════════════════════════════════
   PROMO BADGE
   ═══════════════════════════════════════════ */
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: hsla(210, 40%, 55%, 0.1);
  border: 1px solid hsla(210, 40%, 55%, 0.2);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--rose-400);
  letter-spacing: var(--tracking-wide);
}

/* ═══════════════════════════════════════════
   SERVICE PAGE HERO (smaller)
   ═══════════════════════════════════════════ */
.page-hero {
  padding: calc(100px + var(--space-16)) 0 var(--space-16);
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.page-hero .section__label {
  margin-bottom: var(--space-4);
}

.page-hero__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
}

.page-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 55ch;
  line-height: var(--leading-relaxed);
}

.page-hero__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  opacity: 0.15;
}

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery-filter {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.gallery-filter__btn {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--dur-fast);
}

.gallery-filter__btn.active,
.gallery-filter__btn:hover {
  background: hsla(194, 30%, 45%, 0.1);
  border-color: var(--gold-600);
  color: var(--gold-400);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-default);
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(32, 25%, 10%, 0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-5);
  opacity: 0;
  transition: opacity var(--dur-normal);
}

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

.gallery-item__label {
  font-size: var(--text-sm);
  color: hsl(40, 30%, 95%);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   REVIEW CARD
   ═══════════════════════════════════════════ */
.review-stats {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-10);
}

.review-stats__item {
  text-align: center;
}

.review-stats__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gold-400);
}

.review-stats__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-top: var(--space-1);
}

.review-stats__divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ═══════════════════════════════════════════
   BLOG CARD
   ═══════════════════════════════════════════ */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--dur-normal);
}

.blog-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body {
  padding: var(--space-6);
}

.blog-card__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--rose-400);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}

.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.blog-card__meta {
  font-size: var(--text-xs);
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════
   MAP EMBED
   ═══════════════════════════════════════════ */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 350px;
  background: var(--bg-card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.1);
}
