/* ========================================
   Best Island Living - Global Styles
   ======================================== */

/* CSS Custom Properties */
:root {
  --border-light: #E2DDD4;
  --coral: #E8735A;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --gold: #C4A35A;
  --navy: #1B2A4A;
  --navy-dark: #0F1A2E;
  --navy-light: #243656;
  --overlay-dark: #1B2A4ACC;
  --success: #4ADE80;
  --teal: #2BA5B5;
  --teal-dark: #238E9C;
  --teal-light: #E8F6F8;
  --text-cream: #F5F0E8;
  --text-light: #FFFFFF;
  --text-primary: #1B2A4A;
  --text-secondary: #5A6B7F;
  --white: #FFFFFF;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, opacity 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  background: var(--navy);
  padding: 24px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  color: var(--teal);
  width: 28px;
  height: 28px;
}

.logo span {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  color: #FFFFFFCC;
  font-size: 15px;
  font-weight: 500;
}

.nav a:hover {
  color: #FFFFFF;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header-cta--teal {
  background: var(--teal);
  color: var(--white);
}

.header-cta--teal:hover {
  background: var(--teal-dark);
}

.header-cta--gold {
  background: var(--gold);
  color: var(--navy);
}

.header-cta--gold:hover {
  background: #b3943f;
}

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  color: white;
  padding: 8px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #1B2A4AB3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 140px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF18;
  padding: 8px 20px;
  border-radius: 100px;
}

.hero-tag i {
  color: var(--teal);
}

.hero-tag span {
  color: #FFFFFFCC;
  font-size: 13px;
  font-weight: 500;
}

.hero h1 {
  color: var(--white);
  font-size: 64px;
  text-align: center;
  max-width: 900px;
}

.hero-sub {
  color: #FFFFFFCC;
  font-size: 19px;
  text-align: center;
  max-width: 760px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  padding: 18px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 165, 181, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF15;
  color: var(--white);
  padding: 18px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #FFFFFF30;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #FFFFFF25;
  transform: translateY(-2px);
}

.hero-search {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 8px 8px 8px 16px;
  border-radius: 12px;
  width: 720px;
  max-width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-search i.search-icon {
  color: var(--text-secondary);
  flex-shrink: 0;
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  background: transparent;
}

.hero-search input::placeholder {
  color: #9CA3AF;
}

.hero-search .search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.hero-search .search-btn:hover {
  background: var(--teal-dark);
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
  background: var(--navy-dark);
  padding: 22px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item i {
  flex-shrink: 0;
}

.trust-item span {
  color: #FFFFFFCC;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-badge--teal {
  background: var(--teal-light);
  color: var(--teal);
}

.section-badge--gold {
  background: #C4A35A20;
  color: var(--gold);
}

.section-badge--navy {
  background: #1B2A4A10;
  color: var(--navy);
}

.section-badge--teal-subtle {
  background: #2BA5B515;
  color: var(--teal);
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.section-title {
  font-size: 42px;
  color: var(--navy);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 640px;
}

/* ========================================
   RENTAL PORTAL SECTION
   ======================================== */
.rental-portal {
  background: var(--white);
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn--active {
  background: var(--teal);
  color: var(--white);
  border: none;
}

.filter-btn--inactive {
  background: var(--white);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  font-weight: 400;
}

.filter-btn--inactive:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.filter-spacer {
  flex: 1;
}

.filter-sort {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
}

/* Listing Cards */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.listing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 42, 74, 0.12);
}

.listing-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  position: relative;
}

.listing-card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.listing-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.listing-card:hover .listing-card-img-wrap img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.card-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.card-area {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 13px;
}

.card-area i {
  color: var(--teal);
}

.card-specs {
  display: flex;
  gap: 12px;
}

.card-spec {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
  font-size: 13px;
}

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

.card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.card-price-amount {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.card-price-unit {
  font-size: 13px;
  color: var(--text-secondary);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-secondary);
}

.card-rating i {
  color: var(--gold);
}

.portal-view-all {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.portal-note {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ========================================
   OWNER CTA SPLIT
   ======================================== */
.owner-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 480px;
}

.owner-split-left {
  background: var(--navy);
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.owner-split-right {
  background: var(--teal);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.split-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF18;
  padding: 6px 16px;
  border-radius: 100px;
  width: fit-content;
}

.split-tag i {
  color: #FFFFFFAA;
}

.split-tag span {
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFFAA;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.split-tag--white i,
.split-tag--white span {
  color: var(--white);
}

.split-title {
  font-size: 38px;
  color: var(--white);
  max-width: 400px;
}

.split-desc {
  font-size: 16px;
  color: #FFFFFFCC;
  max-width: 420px;
  line-height: 1.7;
}

.split-desc--bright {
  color: #FFFFFFEE;
}

.split-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.split-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFFEE;
  font-size: 14px;
}

.split-check i {
  color: var(--white);
  flex-shrink: 0;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-navy-on-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn-navy-on-white:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ========================================
   ISLAND STATS SECTION
   ======================================== */
.island-stats {
  position: relative;
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.island-overlay {
  position: absolute;
  inset: 0;
  background: #1B2A4AE0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 80px 120px;
}

.island-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.island-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF15;
  padding: 6px 16px;
  border-radius: 100px;
}

.island-label i {
  color: var(--teal);
}

.island-label span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.island-title {
  color: var(--white);
  font-size: 46px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--teal);
}

.stat-desc {
  font-size: 14px;
  color: #FFFFFFBB;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  background: var(--cream);
  padding: 72px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.faq-question h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq-question i {
  color: var(--text-secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s ease;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-top: 12px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ========================================
   RENTER CTA SECTION
   ======================================== */
.renter-cta {
  position: relative;
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.renter-cta-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 200px;
  text-align: center;
}

.renter-cta h2 {
  color: var(--white);
  font-size: 48px;
  max-width: 700px;
}

.renter-cta-sub {
  color: #FFFFFFCC;
  font-size: 17px;
  max-width: 600px;
}

.renter-cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.renter-cta-note {
  color: #FFFFFF88;
  font-size: 14px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy-dark);
  padding: 64px 120px 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: flex;
  gap: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 360px;
  flex-shrink: 0;
}

.footer-brand .logo {
  gap: 10px;
}

.footer-brand .logo i {
  color: var(--teal);
}

.footer-brand .logo span {
  font-size: 20px;
}

.footer-tagline {
  color: #FFFFFFAA;
  font-size: 15px;
}

.footer-address,
.footer-phone {
  color: #FFFFFF77;
  font-size: 14px;
  line-height: 1.5;
}

.footer-email {
  color: var(--teal);
  font-size: 14px;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.footer-nav-title {
  color: #FFFFFF66;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-nav-col a {
  color: #FFFFFFBB;
  font-size: 14px;
  display: block;
}

.footer-nav-col a:hover {
  color: var(--white);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #FFFFFF15;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy,
.footer-member {
  color: #FFFFFF55;
  font-size: 13px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-socials a {
  color: #FFFFFF77;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: var(--white);
}

/* ========================================
   OWNERS PAGE - SERVICES SECTION
   ======================================== */
.services-section {
  background: var(--navy);
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.services-section .section-title {
  color: var(--white);
}

.services-section .section-subtitle {
  color: #FFFFFFBB;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.service-card {
  background: #FFFFFF08;
  border: 1px solid #FFFFFF15;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: #FFFFFF12;
  transform: translateY(-4px);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: #2BA5B520;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  color: var(--teal);
}

.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.service-card p {
  font-size: 14px;
  color: #FFFFFFAA;
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
  background: var(--white);
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.testimonial-card {
  background: var(--cream-light);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--border-light);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card .quote-icon {
  color: var(--teal);
}

.testimonial-card blockquote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-loc {
  font-size: 13px;
  color: var(--text-secondary);
}

.review-bar {
  background: var(--navy);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 10px;
  width: 100%;
}

.review-bar .stars {
  display: flex;
  gap: 4px;
}

.review-bar .stars i {
  color: var(--gold);
}

.review-bar span {
  color: #FFFFFFCC;
  font-size: 14px;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
  background: var(--cream);
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card--featured {
  background: var(--navy);
  border: 2px solid var(--teal);
}

.pricing-badge {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pricing-top {
  padding: 28px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.pricing-desc {
  font-size: 14px;
  line-height: 1.5;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-amount {
  font-family: 'DM Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
}

.pricing-per {
  font-size: 14px;
}

.pricing-divider {
  height: 1px;
  width: 100%;
}

.pricing-features {
  padding: 16px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.pricing-feature i {
  color: var(--teal);
  flex-shrink: 0;
}

.pricing-cta {
  padding: 0 28px 28px;
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.pricing-btn--outline {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}

.pricing-btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.pricing-btn--teal {
  background: var(--teal);
  color: var(--white);
}

.pricing-btn--teal:hover {
  background: var(--teal-dark);
}

.pricing-note {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
}

/* Card color variants for default cards */
.pricing-card:not(.pricing-card--featured) .pricing-name { color: var(--navy); }
.pricing-card:not(.pricing-card--featured) .pricing-desc { color: var(--text-secondary); }
.pricing-card:not(.pricing-card--featured) .pricing-amount { color: var(--navy); }
.pricing-card:not(.pricing-card--featured) .pricing-per { color: var(--text-secondary); }
.pricing-card:not(.pricing-card--featured) .pricing-divider { background: var(--border-light); }
.pricing-card:not(.pricing-card--featured) .pricing-feature { color: var(--text-secondary); }
.pricing-card:not(.pricing-card--featured) .pricing-feature--highlight { color: var(--navy); }

/* Featured card colors */
.pricing-card--featured .pricing-name { color: var(--white); }
.pricing-card--featured .pricing-desc { color: #FFFFFFBB; }
.pricing-card--featured .pricing-amount { color: var(--white); }
.pricing-card--featured .pricing-per { color: #FFFFFFAA; }
.pricing-card--featured .pricing-divider { background: #FFFFFF20; }
.pricing-card--featured .pricing-feature { color: #FFFFFFBB; }
.pricing-card--featured .pricing-feature--highlight { color: #FFFFFFDD; }

/* ========================================
   ANNUAL CALENDAR SECTION
   ======================================== */
.calendar-section {
  background: var(--cream);
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.monthly-recurring {
  background: var(--navy);
  border-radius: 16px;
  padding: 32px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.monthly-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.monthly-header i {
  color: var(--teal);
}

.monthly-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.monthly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.monthly-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #FFFFFFCC;
}

.monthly-item i {
  color: var(--teal);
  flex-shrink: 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.calendar-month {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calendar-month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calendar-month-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.calendar-tag {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.calendar-tag--teal {
  background: #2BA5B515;
  color: var(--teal);
}

.calendar-tag--gold {
  background: #C4A35A15;
  color: var(--gold);
}

.calendar-tag--muted {
  background: #5A6B7F15;
  color: var(--text-secondary);
}

.calendar-tag--coral {
  background: #E8735A15;
  color: var(--coral);
}

.calendar-month-item {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ========================================
   FINAL CTA SECTION (shared)
   ======================================== */
.final-cta {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 60px 200px;
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: 48px;
  max-width: 700px;
}

.final-cta-sub {
  color: #FFFFFFCC;
  font-size: 17px;
  max-width: 620px;
}

.final-cta-note {
  color: #FFFFFF88;
  font-size: 14px;
}

/* Owner Hero specific */
.owner-hero {
  position: relative;
  width: 100%;
  height: 580px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owner-hero-overlay {
  position: absolute;
  inset: 0;
  background: #0F1F38D9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 120px;
  text-align: center;
}

.owner-hero h1 {
  color: var(--white);
  font-size: 58px;
  max-width: 900px;
}

.owner-hero-sub {
  color: #FFFFFFCC;
  font-size: 19px;
  max-width: 740px;
}

.owner-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF18;
  padding: 8px 20px;
  border-radius: 100px;
}

.owner-hero-badge i {
  color: var(--gold);
}

.owner-hero-badge span {
  color: #FFFFFFCC;
  font-size: 13px;
  font-weight: 500;
}

.owner-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 18px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: #b3943f;
  transform: translateY(-2px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .header {
    padding: 20px 40px;
  }

  .nav {
    gap: 24px;
  }

  .hero-overlay {
    padding: 0 60px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .rental-portal {
    padding: 56px 40px;
  }

  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .owner-split {
    grid-template-columns: 1fr;
  }

  .owner-split-left,
  .owner-split-right {
    padding: 48px 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .island-overlay {
    padding: 40px 60px;
  }

  .faq-section {
    padding: 56px 40px;
  }

  .renter-cta-overlay {
    padding: 0 60px;
  }

  .footer {
    padding: 48px 40px 24px;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-brand {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .monthly-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-section,
  .testimonials-section,
  .pricing-section,
  .calendar-section {
    padding: 56px 40px;
  }

  .trust-strip {
    padding: 16px 40px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 16px 20px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-top: 1px solid #FFFFFF15;
    z-index: 99;
  }

  .nav.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 500px;
  }

  .hero-overlay {
    padding: 40px 20px;
    position: relative;
    gap: 24px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-search {
    width: 100%;
    flex-direction: column;
    padding: 12px;
    gap: 8px;
  }

  .hero-search input {
    width: 100%;
  }

  .hero-search .search-btn {
    width: 100%;
    justify-content: center;
  }

  .trust-strip {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .rental-portal {
    padding: 40px 20px;
    gap: 32px;
  }

  .filter-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .portal-view-all {
    flex-direction: column;
    text-align: center;
  }

  .owner-split-left,
  .owner-split-right {
    padding: 40px 20px;
  }

  .split-title {
    font-size: 30px;
  }

  .island-stats {
    height: auto;
  }

  .island-overlay {
    position: relative;
    padding: 40px 20px;
    gap: 32px;
  }

  .island-title {
    font-size: 32px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .faq-section {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .renter-cta {
    height: auto;
  }

  .renter-cta-overlay {
    position: relative;
    padding: 40px 20px;
    gap: 20px;
  }

  .renter-cta h2 {
    font-size: 32px;
  }

  .renter-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand {
    width: 100%;
  }

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

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

  .services-section,
  .testimonials-section,
  .pricing-section,
  .calendar-section {
    padding: 40px 20px;
  }

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

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

  .monthly-recurring {
    padding: 24px 20px;
  }

  .owner-hero {
    height: auto;
    min-height: 480px;
  }

  .owner-hero-overlay {
    position: relative;
    padding: 40px 20px;
  }

  .owner-hero h1 {
    font-size: 34px;
  }

  .owner-hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .final-cta {
    min-height: auto;
  }

  .final-cta-overlay {
    position: relative;
    padding: 40px 20px;
    gap: 24px;
  }

  .final-cta h2 {
    font-size: 32px;
  }
}
