.elementor-25 .elementor-element.elementor-element-7b5e0906{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-25 .elementor-element.elementor-element-ef33889{--display:flex;}/* Start custom CSS for container, class: .elementor-element-7b5e0906 */*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --gold: #4BA8A8; --gold-dark: #3A8C8C; --gold-light: #7CC5C0;
  --anthracite: #1E2D2F; --sand: #F7F9F9; --beige: #D8ECEB; --white: #FFFFFF;
  --text: #1E2D2F; --text-light: #5A6B6E; --text-muted: #8A9A9C;
  --heading: 'Cormorant Garamond', Georgia, serif;
  --body: 'Montserrat', -apple-system, sans-serif;
  --section-padding: clamp(80px,10vw,140px);
  --container: min(1240px, 90vw);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--body); font-weight: 300; color: var(--text);
  background: var(--sand); line-height: 1.7; font-size: 15px;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.25s; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(20px,4vw,50px); height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(247,249,249,0.97); backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--heading); font-size: 22px; font-weight: 500;
  letter-spacing: 0.25em; color: var(--anthracite); text-decoration: none;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-light);
  text-decoration: none; position: relative; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 10px 28px; background: var(--gold);
  color: var(--white); text-decoration: none; transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold-dark); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; z-index: 1001;
}
.nav-hamburger span {
  width: 24px; height: 1.5px; background: var(--anthracite);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,4px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-4px); }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--sand);
  z-index: 999; flex-direction: column; align-items: center;
  justify-content: center; gap: 24px; opacity: 0;
  pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--heading); font-size: 28px; font-weight: 400;
  color: var(--anthracite); text-decoration: none; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
@media (max-width: 1080px) {
  .nav-links, .nav > .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ── UTILITIES ── */
.section { padding: 30px 0; }
.container { width: var(--container); margin: 0 auto; }
.section-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.section-title {
  font-family: var(--heading); font-size: clamp(32px,4.5vw,52px);
  font-weight: 400; line-height: 1.15; color: var(--anthracite); margin-bottom: 24px;
}
.btn-primary {
  display: inline-block; font-family: var(--body); font-size: 12px;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 40px; background: var(--gold); color: var(--white);
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 70px 0 48px;
  text-align: center;
}
.page-header-sub {
  font-size: 15px; font-weight: 300; color: var(--text-light);
  max-width: 560px; line-height: 1.8; margin: 0 auto;
}

/* ── BOOKING TYPES ── */
.booking-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.booking-type {
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  padding: 32px 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none; color: inherit;
}
.booking-type:hover, .booking-type.active {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.booking-type-icon {
  width: 40px; height: 40px; margin: 0 auto 16px;
}
.booking-type-icon svg {
  width: 36px; height: 36px; stroke: var(--gold);
  fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.booking-type h3 {
  font-family: var(--heading); font-size: 22px; font-weight: 500;
  color: var(--anthracite); margin-bottom: 8px;
}
.booking-type p {
  font-size: 13px; color: var(--text-muted); line-height: 1.6;
}
@media (max-width: 700px) {
  .booking-types { grid-template-columns: 1fr; max-width: 400px; }
}

/* ── BOOKING FORM SECTION ── */
.booking-section { background: var(--white); }
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; gap: 48px; }
}

.booking-form-card {
  background: var(--sand);
  border: 1px solid rgba(0,0,0,0.06);
  padding: clamp(32px,4vw,48px);
}
.booking-form-card h3 {
  font-family: var(--heading); font-size: 28px; font-weight: 400;
  color: var(--anthracite); margin-bottom: 8px;
}
.booking-form-card > p {
  font-size: 14px; color: var(--text-muted); margin-bottom: 32px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--body); font-size: 14px; font-weight: 300;
  color: var(--text); padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.1); background: var(--white);
  outline: none; transition: border-color 0.3s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  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='%239B9590' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.form-submit { margin-top: 24px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── BOOKING INFO SIDE ── */
.booking-info h3 {
  font-family: var(--heading); font-size: 24px; font-weight: 400;
  color: var(--anthracite); margin-bottom: 16px;
}
.booking-info p {
  color: var(--text-light); line-height: 1.8; margin-bottom: 16px;
}
.booking-info-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 12px; margin: 24px 0;
}
.booking-info-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-light); line-height: 1.6;
}
.booking-info-list li::before {
  content: ''; width: 6px; height: 1px;
  background: var(--gold); flex-shrink: 0; margin-top: 10px;
}

.booking-whatsapp {
  display: flex; align-items: center; gap: 16px;
  padding: 24px;
  background: var(--sand);
  border: 1px solid rgba(0,0,0,0.06);
  margin-top: 32px;
  text-decoration: none; color: inherit;
  transition: border-color 0.3s;
}
.booking-whatsapp:hover { border-color: var(--gold); }
.booking-whatsapp-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #25D366; display: flex;
  align-items: center; justify-content: center; border-radius: 50%;
}
.booking-whatsapp-icon svg {
  width: 22px; height: 22px; fill: var(--white);
}
.booking-whatsapp-text strong {
  display: block; font-size: 14px; font-weight: 500; color: var(--anthracite);
}
.booking-whatsapp-text span {
  font-size: 13px; color: var(--text-muted);
}

/* ── WHAT TO EXPECT ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step-item { text-align: center; }
.step-number {
  font-family: var(--heading); font-size: 48px; font-weight: 300;
  color: rgba(75,168,168,0.25); line-height: 1; margin-bottom: 16px;
}
.step-item h4 {
  font-family: var(--heading); font-size: 20px; font-weight: 500;
  color: var(--anthracite); margin-bottom: 8px;
}
.step-item p {
  font-size: 13px; color: var(--text-light); line-height: 1.6;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 500px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ── INFO BAR ── */
.info-bar {
  background: var(--beige); padding: 56px 0;
}
.info-bar-inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  max-width: 1080px; margin: 0 auto;
}
.info-bar-item {
  display: flex; align-items: flex-start; gap: 18px;
  font-size: 15px; color: var(--text-light); line-height: 1.65;
}
.info-bar-item svg {
  width: 32px; height: 32px; stroke: var(--gold); flex-shrink: 0;
  fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.info-bar-item strong {
  display: block; color: var(--anthracite); font-weight: 500;
  font-size: 17px; letter-spacing: 0.02em; margin-bottom: 6px;
}
@media (max-width: 760px) {
  .info-bar-inner { grid-template-columns: 1fr; gap: 28px; max-width: 440px; }
}

/* ── FOOTER ── */
.footer {
  background: var(--anthracite); color: rgba(255,255,255,0.6); padding: 80px 0 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--heading); font-size: 24px; font-weight: 400;
  letter-spacing: 0.2em; color: var(--white); margin-bottom: 20px;
}
.footer-brand-desc { font-size: 14px; line-height: 1.7; max-width: 320px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: border-color 0.3s;
}
.footer-social a:hover { border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.5); }
.footer-col h4 {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px; display: flex; justify-content: space-between;
  align-items: center; font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}/* End custom CSS */