@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0A1628;
  --navy-light: #112240;
  --navy-mid: #1a2f52;
  --gold: #F4A100;
  --gold-light: #FFB830;
  --gold-dark: #C47F00;
  --white: #FFFFFF;
  --off-white: #F8F6F0;
  --text-muted: #8899BB;
  --card-bg: rgba(17, 34, 64, 0.8);
  --border: rgba(244, 161, 0, 0.2);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
}

p {
  font-size: 1rem;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.7rem 5%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}

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

.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600 !important;
}

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

.nav-cta::after {
  display: none !important;
}

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

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

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(16px);
  padding: 2rem 5%;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 161, 0, 0.4);
}

/* ── SECTIONS ── */
section {
  padding: 6rem 5%;
}

.section-tag {
  display: inline-block;
  background: rgba(244, 161, 0, 0.15);
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 550px;
  margin: 0 auto;
}

.gold-text {
  color: var(--gold);
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.2rem auto;
  border-radius: 2px;
}

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 161, 0, 0.5);
  box-shadow: var(--shadow);
}

/* ── GRIDS ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── TRUST BADGES ── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 5%;
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(244, 161, 0, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 5rem 5%;
  background: var(--navy);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  border: 4px solid var(--navy);
  box-shadow: 0 8px 25px rgba(244, 161, 0, 0.3);
}

.step-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: #060E1C;
  border-top: 1px solid var(--border);
  padding: 4rem 5% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.footer-brand {}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand>p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.footer-contact-item a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-contact-item span {
  color: var(--gold);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(136, 153, 187, 0.6);
}

/* ── FLOATING BUTTONS ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(244, 161, 0, 0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(244, 161, 0, 0.5);
  }

  50% {
    box-shadow: 0 4px 40px rgba(244, 161, 0, 0.8);
  }
}

.call-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(244, 161, 0, 0.4);
  transition: var(--transition);
  text-decoration: none;
  animation: pulse-call 2.5s infinite;
}

.call-float:hover {
  transform: scale(1.1);
}

@keyframes pulse-call {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(244, 161, 0, 0.4);
  }

  50% {
    box-shadow: 0 4px 40px rgba(244, 161, 0, 0.7);
  }
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(17, 34, 64, 0.9);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 10rem 5% 5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(244, 161, 0, 0.12) 0%, transparent 65%);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.page-hero p {
  position: relative;
  z-index: 1;
  max-width: 550px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

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

/* ── CONTACT FORM ── */
.booking-form-section {
  max-width: 1100px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-card h3 {
  margin-bottom: 0.5rem;
}

.form-card>p {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: var(--gold);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(244, 161, 0, 0.05);
  box-shadow: 0 0 0 3px rgba(244, 161, 0, 0.1);
}

.form-control::placeholder {
  color: rgba(136, 153, 187, 0.5);
}

select.form-control {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23F4A100' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

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

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

.form-submit {
  margin-top: 1rem;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: rgba(244, 161, 0, 0.1);
  border: 1px solid rgba(244, 161, 0, 0.3);
  border-radius: 12px;
  margin-top: 1rem;
}

.form-success.show {
  display: block;
}

.form-success h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-up {
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  section {
    padding: 3.5rem 4%;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .trust-badges {
    gap: 0.8rem;
    padding: 2rem 4%;
  }

  .badge {
    font-size: 0.8rem;
    gap: 0.4rem;
  }

  .badge-icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps-grid::before {
    display: none;
  }

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

  .page-hero {
    padding: 7rem 4% 3rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero p {
    font-size: 0.9rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .call-float {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
  }

  .back-to-top {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    bottom: 4.5rem;
    right: 1.2rem;
  }

  .logo {
    font-size: 1.1rem;
    gap: 0.4rem;
  }

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

  footer {
    padding: 3rem 4% 0;
  }

  .footer-bottom {
    padding-bottom: 5rem;
  }

  .mobile-menu {
    top: 60px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .how-it-works {
    padding: 3.5rem 4%;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2.5rem 3.5%;
  }

  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .page-hero {
    padding: 6rem 3.5% 2.5rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    bottom: 1rem;
    right: 1rem;
  }

  .call-float {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .back-to-top {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
    bottom: 4rem;
    right: 1rem;
  }

  .navbar {
    padding: 0.7rem 3.5%;
  }

  .navbar.scrolled {
    padding: 0.5rem 3.5%;
  }

  .logo {
    font-size: 1rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .trust-badges {
    padding: 1.5rem 3.5%;
    gap: 0.6rem;
  }

  .badge {
    font-size: 0.72rem;
  }

  .badge-icon {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }

  footer {
    padding: 2.5rem 3.5% 0;
  }

  .footer-brand>p {
    font-size: 0.82rem;
  }

  .footer-col h4 {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .footer-col ul li a {
    font-size: 0.82rem;
  }

  .footer-contact-item {
    font-size: 0.82rem;
  }

  .footer-bottom {
    padding-bottom: 5rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header p {
    font-size: 0.88rem;
  }

  .section-tag {
    font-size: 0.72rem;
    padding: 0.2rem 0.8rem;
  }

  .mobile-menu a {
    font-size: 0.95rem;
  }
}