/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, #c9a35d 0%, #e6cc91 50%, #c9a35d 100%);
  background-size: 200% 200%;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background-position 0.4s ease, transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-md);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-outline-gold:hover {
  background: rgba(201, 163, 93, 0.1);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 14px;
}

.btn-md {
  padding: 12px 20px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

/* Cards */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.card-light {
  background: var(--color-warm-white);
  border: 1px solid var(--gold-18);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(16, 20, 42, 0.05);
}

.card-cream {
  background: var(--color-cream);
  border: 1px solid var(--gold-18);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(16, 20, 42, 0.05);
}

/* Forms */
.input-gold,
.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-20);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-dark-text);
  background: var(--color-warm-white);
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.input-gold:focus,
.form-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 163, 93, 0.15);
}

.input-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--gold-20);
  color: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  width: 100%;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
}

.input-dark:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 163, 93, 0.15);
}

.input-dark::placeholder {
  color: rgba(250, 247, 240, 0.4);
}

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-body);
  font-family: var(--font-body);
}

.field-label-dark {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(230, 204, 145, 0.7);
  font-family: var(--font-body);
}

.required-mark {
  color: var(--color-gold);
  margin-left: 4px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: transparent;
  transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}

.site-header.is-scrolled {
  background: rgba(16, 20, 42, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  display: block;
  height: 64px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.logo-footer {
  margin-bottom: 0;
  display: inline-flex;
}

.logo-footer img {
  height: 64px;
}

.logo-on-light img {
  height: 56px;
}

.desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  gap: 4px 22px;
  min-width: 0;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(250, 247, 240, 0.82);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-caret {
  display: block;
  flex-shrink: 0;
  width: 10px;
  height: 6px;
  margin-left: 5px;
  opacity: 0.65;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-item:hover .nav-caret {
  opacity: 1;
  transform: translateY(1px);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  padding: 8px 0;
  background: var(--color-navy-mid);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  min-width: 220px;
  z-index: var(--z-dropdown);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--cream-70);
  font-family: var(--font-body);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown a:hover {
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 14px;
  margin-left: auto;
}

.header-actions .btn-md {
  display: none;
}

.lang-switcher {
  position: relative;
  z-index: 2;
}

.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 10px 0 6px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 163, 93, 0.45);
  background: rgba(16, 20, 42, 0.92);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lang-switcher-btn:hover,
.lang-switcher.is-open .lang-switcher-btn {
  border-color: var(--color-gold);
  background: rgba(201, 163, 93, 0.18);
  color: var(--color-gold-light);
}

.lang-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.lang-flag-en {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect width='24' height='24' fill='%23b22234'/%3E%3Crect y='1.85' width='24' height='1.85' fill='%23fff'/%3E%3Crect y='5.54' width='24' height='1.85' fill='%23fff'/%3E%3Crect y='9.23' width='24' height='1.85' fill='%23fff'/%3E%3Crect y='12.92' width='24' height='1.85' fill='%23fff'/%3E%3Crect y='16.62' width='24' height='1.85' fill='%23fff'/%3E%3Crect y='20.31' width='24' height='1.85' fill='%23fff'/%3E%3Crect width='10.2' height='12.95' fill='%233c3b6e'/%3E%3C/svg%3E");
}

.lang-flag-hi {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect width='24' height='8' fill='%23FF9933'/%3E%3Crect y='8' width='24' height='8' fill='%23fff'/%3E%3Crect y='16' width='24' height='8' fill='%23138808'/%3E%3Ccircle cx='12' cy='12' r='2.7' fill='none' stroke='%23000080' stroke-width='0.7'/%3E%3Ccircle cx='12' cy='12' r='0.45' fill='%23000080'/%3E%3Cg stroke='%23000080' stroke-width='0.28'%3E%3Cline x1='12' y1='9.3' x2='12' y2='14.7'/%3E%3Cline x1='9.3' y1='12' x2='14.7' y2='12'/%3E%3Cline x1='10.1' y1='10.1' x2='13.9' y2='13.9'/%3E%3Cline x1='13.9' y1='10.1' x2='10.1' y2='13.9'/%3E%3C/g%3E%3C/svg%3E");
}

.lang-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.lang-name {
  display: none;
}

.lang-code {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.lang-caret {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 6px;
  background: var(--color-navy-mid);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.48);
  z-index: var(--z-dropdown);
}

.lang-menu[hidden] {
  display: none;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--cream-70);
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-gold);
}

.lang-option.is-active {
  background: rgba(201, 163, 93, 0.12);
  color: var(--color-gold-light);
}

.lang-option-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.lang-option-name {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1.2;
}

.lang-option-hint {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(250, 247, 240, 0.45);
  font-family: var(--font-body);
}

.lang-option.is-active .lang-option-hint {
  color: rgba(230, 204, 145, 0.55);
}

.lang-check {
  margin-left: auto;
  width: 16px;
  height: 16px;
  opacity: 0;
  color: var(--color-gold);
}

.lang-option.is-active .lang-check {
  opacity: 1;
}

.menu-toggle {
  display: flex;
  padding: 8px;
  margin-left: 2px;
  color: rgba(250, 247, 240, 0.8);
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle.is-open .icon-open {
  display: none;
}

.menu-toggle.is-open .icon-close {
  display: block;
}

.mobile-menu {
  display: none;
  background: var(--color-navy);
  border-top: 1px solid rgba(201, 163, 93, 0.1);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  padding: 16px 24px 16px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: rgba(250, 247, 240, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
}

.mobile-sub {
  padding: 0 0 8px 16px;
}

.mobile-sub a {
  padding: 8px 0;
  font-size: 13px;
  color: rgba(250, 247, 240, 0.5);
  border-bottom: none;
}

.mobile-book {
  padding: 16px 0 8px;
}

.mobile-book .btn-gold {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
}

.mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--color-navy);
  border-top: 1px solid var(--gold-20);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

.mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
  color: var(--cream-70);
  font-size: 10px;
  font-weight: 500;
  font-family: var(--font-body);
}

.mobile-bar a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-bar .bar-book {
  background: var(--color-gold);
  color: var(--color-navy);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--color-navy-footer);
  position: relative;
}

.site-footer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 163, 93, 0.45) 40%, rgba(201, 163, 93, 0.45) 60%, transparent);
}

.footer-inner {
  padding-top: 64px;
  padding-bottom: 28px;
}

.footer-grid {
  display: grid;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: grid;
  gap: 28px;
}

.footer-brand-intro {
  max-width: 34rem;
}

.footer-copy {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(250, 247, 240, 0.55);
  margin-top: 16px;
}

.footer-brand-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 4px 8px 4px 4px;
  margin: 0 -4px;
  border-radius: var(--radius-md);
  color: rgba(250, 247, 240, 0.72);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-contact a:hover {
  background: rgba(201, 163, 93, 0.08);
  color: var(--color-gold-light);
}

.footer-contact a.wa:hover {
  background: rgba(37, 211, 102, 0.08);
  color: var(--color-whatsapp);
}

.footer-contact a:focus-visible,
.footer-list a:focus-visible,
.footer-legal a:focus-visible,
.footer-cta:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 93, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  background: rgba(201, 163, 93, 0.06);
}

.footer-contact a.wa .footer-contact-icon {
  border-color: rgba(37, 211, 102, 0.28);
  color: var(--color-whatsapp);
  background: rgba(37, 211, 102, 0.06);
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.footer-contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.42);
}

.footer-contact a:hover .footer-contact-label {
  color: inherit;
}

.footer-contact-value {
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 247, 240, 0.82);
  word-break: break-word;
}

.footer-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(250, 247, 240, 0.48);
}

.footer-cta {
  width: 100%;
  max-width: 220px;
}

.footer-nav {
  display: grid;
  gap: 36px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  color: var(--color-gold);
  font-family: var(--font-body);
  border-bottom: 1px solid rgba(201, 163, 93, 0.14);
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-list-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.footer-col,
.footer-brand,
.footer-nav {
  min-width: 0;
}

.footer-list a {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(250, 247, 240, 0.58);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  width: fit-content;
  max-width: 100%;
  transition: color 0.2s ease;
}

.footer-list a::before {
  content: "";
  width: 6px;
  height: 1px;
  background: rgba(201, 163, 93, 0.35);
  flex-shrink: 0;
  margin-top: 0.72em;
  transition: width 0.2s ease, background 0.2s ease;
}

.footer-list a:hover {
  color: var(--color-gold-light);
}

.footer-list a:hover::before {
  width: 12px;
  background: var(--color-gold);
}

.footer-meta {
  border-top: 1px solid rgba(201, 163, 93, 0.12);
  padding-top: 24px;
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(250, 247, 240, 0.4);
  max-width: 78ch;
  margin-bottom: 20px;
}

.footer-disclaimer strong {
  color: rgba(250, 247, 240, 0.52);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 163, 93, 0.08);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
}

.footer-legal a {
  font-size: 12.5px;
  color: rgba(250, 247, 240, 0.48);
  padding: 4px 12px 4px 0;
  transition: color 0.2s ease;
}

.footer-legal a:not(:last-child) {
  margin-right: 12px;
  border-right: 1px solid rgba(201, 163, 93, 0.22);
  padding-right: 12px;
}

.footer-legal a:hover {
  color: var(--color-gold-light);
}

.copyright {
  font-size: 12.5px;
  color: rgba(250, 247, 240, 0.48);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 32px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 12px;
  font-family: var(--font-body);
}

.breadcrumb a {
  font-weight: 500;
  color: rgba(250, 247, 240, 0.45);
  transition: color 0.2s ease;
}

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

.breadcrumb .current {
  font-weight: 600;
  color: var(--color-gold);
}

.breadcrumb-sep {
  color: rgba(201, 163, 93, 0.35);
  display: flex;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-18);
  background: var(--color-warm-white);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.accordion-item.is-open {
  border-color: rgba(201, 163, 93, 0.4);
  background: rgba(201, 163, 93, 0.04);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
}

.accordion-trigger span {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark-text);
  font-family: var(--font-body);
}

.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-12);
  color: var(--color-gold);
  transition: transform 0.3s ease, background 0.3s ease;
}

.accordion-item.is-open .accordion-icon {
  background: var(--color-gold);
  transform: rotate(45deg);
}

.accordion-item.is-open .accordion-icon svg {
  stroke: var(--color-navy);
}

.accordion-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.accordion-item.is-open .accordion-panel {
  max-height: 320px;
  opacity: 1;
}

.accordion-panel p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-body);
}

/* Page hero */
.page-hero {
  position: relative;
  padding-top: 128px;
  padding-bottom: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b0e1f 0%, #10142a 55%, #12163a 100%);
}

.page-hero-compact {
  padding-bottom: 56px;
}

.page-hero h1 {
  color: var(--color-cream);
  margin-bottom: 20px;
}

.hero-rule {
  height: 1px;
  width: 56px;
  background: var(--color-gold);
  margin-bottom: 20px;
}

.page-hero .lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-60);
  margin-bottom: 32px;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.dot-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(circle, #c9a35d 1px, transparent 1px);
  background-size: 32px 32px;
}

.starfield-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.45;
}

.zodiac-watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.05;
}

/* Section CTA */
.section-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #080b1a 0%, #10142a 50%, #0e1228 100%);
}

.section-cta h2 {
  color: var(--color-cream);
  margin-bottom: 20px;
}

.section-cta p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-55);
  margin-bottom: 40px;
}

.cta-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.cta-ornament .line-l,
.cta-ornament .line-r {
  height: 1px;
  width: 40px;
}

.cta-ornament .line-l {
  background: linear-gradient(to right, transparent, var(--color-gold));
}

.cta-ornament .line-r {
  background: linear-gradient(to left, transparent, var(--color-gold));
}

.cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 163, 93, 0.07) 0%, transparent 65%);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gold-light);
}

.link-gold {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}

.group:hover .link-gold,
.card-hover:hover .link-gold {
  gap: 10px;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gold-10);
  color: var(--color-gold);
  border-radius: var(--radius-md);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-12);
  color: var(--color-gold);
  margin-top: 2px;
}

.section-label-center {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 56px;
}

.section-label-center h2 {
  margin-bottom: 20px;
}

/* Lucide icons */
.lucide {
  display: block;
  flex-shrink: 0;
  stroke-width: 2;
}

.nav-caret.lucide {
  width: 12px;
  height: 12px;
}

.lang-caret.lucide {
  width: 12px;
  height: 12px;
}

.lang-check.lucide {
  width: 16px;
  height: 16px;
}

.header-phone .lucide,
.cta-phone .lucide {
  width: 14px;
  height: 14px;
}

.header-whatsapp .lucide {
  width: 16px;
  height: 16px;
}

.footer-contact-icon .lucide,
.footer-hours .lucide {
  width: 15px;
  height: 15px;
}

.menu-toggle .lucide {
  width: 24px;
  height: 24px;
}

.mobile-bar .lucide {
  width: 16px;
  height: 16px;
}

.icon-box .lucide,
.cta-ornament .lucide {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
}

.icon-box .lucide-check {
  width: 12px;
  height: 12px;
}

.question-card .lucide {
  width: 14px;
  height: 14px;
}

.btn-gold .lucide,
.btn-outline-gold .lucide {
  width: 15px;
  height: 15px;
}

.link-gold .lucide {
  width: 12px;
  height: 12px;
}

.accordion-icon .lucide {
  width: 13px;
  height: 13px;
}

.breadcrumb-sep .lucide {
  width: 12px;
  height: 12px;
}

.testimonial-nav .lucide {
  width: 14px;
  height: 14px;
}
