@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --purple: #5b5da8;
  --purple-dark: #3d3f7a;
  --teal: #3ecacb;
  --teal-dark: #2ba8a9;
  --yellow: #f9c736;
  --orange: #e87c1e;
  --white: #ffffff;
  --off-white: #f8f9ff;
  --dark: #1a1c2e;
  --text: #2d3047;
  --muted: #6b7280;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

/* ===== NAV ===== */
nav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 68px;
  gap: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo span {
  font-family: 'Paytone One', sans-serif;
  color: var(--teal);
  font-size: 17px;
  line-height: 1.1;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 6px;
  list-style: none;
  align-items: center;
  flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 8px;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-links a.active { color: var(--yellow); }
.btn-nav {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 20px !important;
  padding: 5px 14px !important;
}
.btn-nav:hover { background: #c96010 !important; transform: translateY(-1px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.1s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn:active { transform: scale(0.97) !important; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 4px 18px rgba(232,124,30,0.45); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 7px 22px rgba(232,124,30,0.5); }
.btn-teal { background: var(--teal); color: var(--dark); box-shadow: 0 4px 18px rgba(62,202,203,0.4); }
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 7px 22px rgba(62,202,203,0.45); }
.btn-white { background: #fff; color: var(--purple); box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.btn-white:hover { transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--teal); color: var(--teal); background: transparent; }
.btn-outline:hover { background: var(--teal); color: var(--dark); }
.btn-sm { padding: 9px 20px; font-size: 14px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(145deg, var(--purple-dark) 0%, var(--purple) 50%, #4a6fa5 100%);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: -5%; width: 110%; height: 60px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 40px;
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero h1 {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(30px, 6vw, 56px);
  color: var(--yellow);
  text-shadow: 0 3px 0 var(--purple-dark), 0 6px 20px rgba(0,0,0,0.3);
  margin-bottom: 8px;
  line-height: 1.1;
}
.hero h2 {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(18px, 3.5vw, 28px);
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0.95;
}
.hero p {
  font-size: clamp(15px, 2.2vw, 18px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(145deg, var(--purple-dark), var(--purple));
  padding: 56px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px; left: -5%; width: 110%; height: 48px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 30px;
}
.page-header h1 {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(24px, 5vw, 44px);
  color: var(--yellow);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

/* ===== SECTIONS ===== */
.section { padding: 64px 24px; max-width: 1100px; margin: 0 auto; }
.section-wrap { }
.section-wrap-alt { background: var(--off-white); }
.section-wrap-dark { background: var(--dark); }
.section-wrap-purple { background: linear-gradient(135deg, var(--purple-dark), var(--purple)); }
.section-wrap-teal { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }

.section-title {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-wrap-dark .section-title,
.section-wrap-purple .section-title { color: var(--yellow); }
.section-wrap-teal .section-title { color: var(--dark); }

.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 640px;
}
.section-wrap-dark .section-sub,
.section-wrap-purple .section-sub { color: rgba(255,255,255,0.8); }

/* ===== CARD GRID ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(91,93,168,0.08);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.card-emoji { font-size: 44px; margin-bottom: 14px; }
.card-body { padding: 28px; }
.card-title { font-family: 'Paytone One', sans-serif; font-size: 20px; color: var(--dark); margin-bottom: 10px; }
.card-text { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 20px; }
.card-top-bar { height: 5px; background: linear-gradient(90deg, var(--teal), var(--purple)); }

/* ===== RATES ===== */
.rates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 28px; }
.rates-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.09);
  transition: transform 0.2s;
}
.rates-card:hover { transform: translateY(-4px); }
.rates-card-header {
  background: linear-gradient(135deg, var(--purple), var(--teal));
  padding: 24px;
  color: #fff;
}
.rates-card-header h3 { font-family: 'Paytone One', sans-serif; font-size: 20px; margin-bottom: 4px; }
.rates-card-header p { font-size: 13px; opacity: 0.85; }
.rates-card-body { padding: 24px; }
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(91,93,168,0.12);
}
.rate-row:last-child { border-bottom: none; }
.rate-label { font-weight: 700; color: var(--text); font-size: 15px; }
.rate-price { font-family: 'Paytone One', sans-serif; font-size: 19px; color: var(--orange); }
.rate-badge {
  background: var(--yellow);
  color: var(--dark);
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  margin-left: 6px;
}
.rates-cta { padding: 20px 24px; border-top: 1px solid rgba(91,93,168,0.1); }
.rates-cta a { display: block; text-align: center; }

/* ===== TWO COL ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col-img { width: 100%; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.14); }
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ===== POLICY ===== */
.policy-section { margin-bottom: 44px; }
.policy-section h2 {
  font-family: 'Paytone One', sans-serif;
  font-size: 22px;
  color: var(--purple);
  padding-bottom: 10px;
  border-bottom: 3px solid var(--teal);
  margin-bottom: 20px;
}
.policy-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.policy-list li {
  background: var(--off-white);
  border-radius: 12px;
  padding: 14px 18px 14px 48px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  border-left: 4px solid var(--teal);
}
.policy-list li::before {
  content: '•';
  position: absolute;
  left: 18px;
  color: var(--orange);
  font-size: 22px;
  line-height: 1.4;
}
.policy-list li strong { color: var(--dark); }
.warn-box {
  background: #fff3e0;
  border: 2px solid var(--orange);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 36px;
  font-weight: 800;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== PROPERTY CARDS ===== */
.prop-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.09);
  display: grid;
  grid-template-columns: 340px 1fr;
  margin-bottom: 28px;
  transition: transform 0.2s;
  border: 1px solid rgba(91,93,168,0.08);
}
.prop-card:hover { transform: translateY(-3px); }
.prop-card img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.prop-body { padding: 32px; }
.prop-body h3 { font-family: 'Paytone One', sans-serif; font-size: 22px; color: var(--dark); margin-bottom: 8px; }
.prop-body p { color: var(--muted); font-size: 15px; margin-bottom: 8px; line-height: 1.65; }
.prop-note { font-size: 13px !important; color: var(--teal-dark) !important; font-weight: 700 !important; margin-bottom: 22px !important; }
@media (max-width: 700px) { .prop-card { grid-template-columns: 1fr; } }

/* ===== INFO BOXES ===== */
.info-box {
  background: linear-gradient(135deg, var(--purple), var(--teal));
  border-radius: 20px;
  padding: 32px;
  color: #fff;
  margin-top: 36px;
}
.info-box h3 { font-family: 'Paytone One', sans-serif; font-size: 20px; color: var(--yellow); margin-bottom: 16px; }
.info-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.info-box li { padding-left: 26px; position: relative; font-size: 15px; line-height: 1.5; }
.info-box li::before { content: '→'; position: absolute; left: 0; color: var(--yellow); }

.season-banner {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-radius: 16px;
  padding: 20px 26px;
  color: var(--dark);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 24px;
}

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: var(--dark);
  padding: 52px 24px;
  text-align: center;
  color: #fff;
}
.contact-strip h3 { font-family: 'Paytone One', sans-serif; font-size: 26px; color: var(--teal); margin-bottom: 8px; }
.contact-strip p { color: rgba(255,255,255,0.75); margin-bottom: 20px; font-size: 16px; }
.contact-strip a { color: var(--yellow); font-weight: 800; font-size: 20px; text-decoration: none; }
.contact-strip a:hover { color: var(--teal); }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.badge-teal { background: var(--teal); color: var(--dark); }
.badge-orange { background: var(--orange); color: #fff; }
.badge-yellow { background: var(--yellow); color: var(--dark); }
.badge-purple { background: var(--purple); color: #fff; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 28px;
  border-top: 3px solid var(--teal);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 12px; }
.footer-logo img { width: 52px; height: 52px; border-radius: 50%; }
.footer-logo span { font-family: 'Paytone One', sans-serif; color: var(--teal); font-size: 18px; line-height: 1.1; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Paytone One', sans-serif;
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.footer-col a:hover { color: var(--yellow); }
.footer-col p { font-size: 14px; line-height: 1.9; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  nav { flex-wrap: wrap; height: auto; padding: 10px 16px; min-height: 60px; }
  .nav-links { gap: 2px 4px; }
  .nav-links a { font-size: 12px; padding: 4px 7px; }
}
@media (max-width: 600px) {
  .section { padding: 44px 16px; }
  .hero { padding: 56px 16px 80px; }
  .page-header { padding: 44px 16px 60px; }
}
