/* === PATH TIER CARDS === */
.villa-paths {
  background: var(--navy-mid);
}

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

.path-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.path-card.path-a { border-top: 3px solid var(--gold); }
.path-card.path-b { border-top: 3px solid #7A9A6E; }
.path-card.path-c { border-top: 3px solid #5A7A9E; }

.path-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.path-card.path-b .path-tag { color: #7A9A6E; }
.path-card.path-c .path-tag { color: #5A7A9E; }

.path-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.path-price {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.path-card.path-b .path-price { color: #7A9A6E; }
.path-card.path-c .path-price { color: #5A7A9E; }

.path-subtitle {
  font-size: 0.75rem;
  color: rgba(248,244,236,0.4);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.path-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
  flex: 1;
}

.path-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(200,169,110,0.06);
  font-size: 0.82rem;
}

.path-spec-row span { color: rgba(248,244,236,0.4); }
.path-spec-row strong { color: var(--cream); font-weight: 500; }

.path-card .btn-full { margin-top: auto; }

/* === LEGAL BUY — co dokładnie kupuje klient? === */
.legal-buy {
  background: var(--navy);
}

.legal-buy-inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
}

.legal-buy-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 0.5rem;
}

.legal-buy-content {
  flex: 1;
}

.legal-buy-content .section-title {
  margin-bottom: 1rem;
}

.legal-buy-content .section-body {
  line-height: 1.8;
}

/* === WHY NOW === */
.why-now {
  background: #0D1E30;
  border-top: 1px solid var(--border);
}

.why-now-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.why-now-inner .section-title {
  margin-bottom: 3rem;
}

.why-now-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}

.why-now-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(10,22,40,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.why-now-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.why-now-content h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.why-now-content p {
  font-size: 0.85rem;
  color: rgba(248,244,236,0.6);
  line-height: 1.75;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .paths-grid { grid-template-columns: 1fr; }
  .why-now-grid { grid-template-columns: 1fr; }
  .legal-buy-inner { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 600px) {
  .path-card { padding: 1.5rem; }
}

/* === LECHIA OCEAN GARDENS — Premium Real Estate Landing Page === */

:root {
  --navy:     #0A1628;
  --navy-mid: #112236;
  --navy-lite:#1A3050;
  --gold:     #C8A96E;
  --gold-lite:#DFC48A;
  --cream:    #F8F4EC;
  --white:    #FFFFFF;
  --text:     #1C1C1C;
  --muted:    #7A7A72;
  --border:   rgba(200,169,110,0.2);
  --radius:   3px;
  --shadow:   0 4px 24px rgba(10,22,40,0.08);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* === LAYOUT === */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad {
  padding: 7rem 0;
}

/* === TYPOGRAPHY === */
.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.section-body {
  font-size: 1rem;
  color: rgba(248,244,236,0.65);
  line-height: 1.8;
  max-width: 600px;
}

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

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1;
}

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

.btn-primary:hover {
  background: var(--gold-lite);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(248,244,236,0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

.btn-full { width: 100%; text-align: center; }

/* === NAV === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}

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

.nav-cta {
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.3) 0%,
    rgba(10,22,40,0.2) 30%,
    rgba(10,22,40,0.45) 60%,
    rgba(10,22,40,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 9rem 2rem 5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  max-width: 680px;
  text-shadow: 0 2px 20px rgba(10,22,40,0.4);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(248,244,236,0.88);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 12px rgba(10,22,40,0.5);
}

.hero-body {
  font-size: 0.92rem;
  color: rgba(248,244,236,0.68);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 10px rgba(10,22,40,0.5);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === TRUST BAR === */
.trust-bar {
  position: relative;
  z-index: 2;
  background: rgba(10,22,40,0.85);
  border-top: 1px solid rgba(200,169,110,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.82rem;
  color: rgba(248,244,236,0.7);
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}

.trust-sep {
  color: rgba(200,169,110,0.4);
  font-size: 0.75rem;
}

/* === SECTION DIVIDER === */
.section-divider {
  height: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

/* === ABOUT === */
.about {
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(248,244,236,0.5);
  line-height: 1.5;
}

.about-map {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.about-map-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.map-row:last-child { border-bottom: none; }

.map-key {
  font-size: 0.8rem;
  color: rgba(248,244,236,0.5);
}

.map-val {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 500;
}

/* === VILLAS === */
.villas {
  background: var(--navy-mid);
}

.villas-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.villas-table-wrap {
  overflow-x: auto;
}

.villas-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.villas-table thead th {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  padding: 0 1rem 1rem;
  text-align: left;
  font-weight: 500;
}

.villas-table thead th:first-child { padding-left: 0; }

.villas-table tbody tr {
  border-top: 1px solid var(--border);
}

.villas-table tbody td {
  padding: 1.75rem 1rem;
  font-size: 0.92rem;
  color: var(--cream);
  vertical-align: top;
}

.villas-table tbody td:first-child { padding-left: 0; }

.villa-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.villa-tag {
  font-size: 0.72rem;
  color: var(--gold);
  opacity: 0.7;
}

.villa-price {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--gold);
}

.villa-price-note {
  font-size: 0.72rem;
  color: rgba(248,244,236,0.4);
  margin-top: 0.2rem;
}

.villa-spec {
  font-size: 0.82rem;
  color: rgba(248,244,236,0.6);
  line-height: 1.5;
}

.villa-badge {
  display: inline-block;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 2px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  color: var(--gold);
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.included-item {
  font-size: 0.8rem;
  color: rgba(248,244,236,0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.included-item::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.villa-highlight {
  background: rgba(200,169,110,0.08);
  border-top: 2px solid var(--gold);
}

.villa-highlight td { padding-top: 2rem; }

/* === LOCATION === */
.location {
  background: var(--navy);
}

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

.location-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.loc-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.loc-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--gold);
}

.loc-feature-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--cream);
}

.loc-feature-text p {
  font-size: 0.82rem;
  color: rgba(248,244,236,0.5);
  line-height: 1.6;
}

.location-aside {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.aside-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.aside-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.aside-block-value {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.aside-block-label {
  font-size: 0.8rem;
  color: rgba(248,244,236,0.5);
  line-height: 1.5;
}

/* === TARGET AUDIENCE === */
.audience {
  background: var(--navy-mid);
}

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

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

.audience-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.audience-num {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.audience-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.audience-card-body {
  font-size: 0.88rem;
  color: rgba(248,244,236,0.6);
  line-height: 1.75;
}

.audience-tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 2px;
  padding: 0.3rem 0.7rem;
}

/* === LEGAL === */
.legal {
  background: var(--navy);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.legal-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.legal-icon {
  width: 28px;
  height: 28px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--gold);
}

.legal-text {
  font-size: 0.88rem;
  color: rgba(248,244,236,0.7);
  line-height: 1.65;
}

.legal-highlight-box {
  background: rgba(200,169,110,0.06);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.highlight-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.highlight-text {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.highlight-detail {
  font-size: 0.82rem;
  color: rgba(248,244,236,0.5);
  line-height: 1.7;
}

/* === PROCESS === */
.process {
  background: var(--navy-mid);
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}

.process-step {
  position: relative;
  padding: 1.5rem 1rem;
  border-top: 2px solid var(--border);
}

.process-step.active-step {
  border-top-color: var(--gold);
}

.step-num {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}

.step-body {
  font-size: 0.78rem;
  color: rgba(248,244,236,0.45);
  line-height: 1.55;
}

.step-connector {
  position: absolute;
  top: 2rem;
  right: -1rem;
  width: 2rem;
  display: flex;
  justify-content: center;
}

.step-connector::before {
  content: '→';
  color: rgba(200,169,110,0.3);
  font-size: 0.9rem;
}

/* === DOCUMENTS === */
.documents {
  background: var(--navy);
}

.documents-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.doc-item {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.doc-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.doc-text {
  font-size: 0.88rem;
  color: rgba(248,244,236,0.8);
  line-height: 1.55;
}

/* === INCENTIVE === */
.incentive {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-lite) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.incentive-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 6rem 2rem;
}

.incentive-deadline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 2rem;
}

.incentive-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.incentive-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2.5rem 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.incentive-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--cream);
}

.incentive-item::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.incentive-value {
  font-size: 0.82rem;
  color: rgba(248,244,236,0.4);
  margin-top: 1.5rem;
}

/* === RENTAL === */
.rental {
  background: var(--navy);
}

.rental-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.rental-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.rental-feat {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.rental-feat-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.rental-feat-body {
  font-size: 0.78rem;
  color: rgba(248,244,236,0.5);
  line-height: 1.6;
}

/* === LEGAL RIGHTS (new section) === */
.legal-rights {
  background: #0D1E30;
  position: relative;
}

.legal-rights::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,169,110,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.legal-rights .page-container {
  position: relative;
  z-index: 1;
}

.legal-rights-intro {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

.legal-rights-subtitle {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 2rem;
}

.legal-rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.legal-rights-col-left {}

.legal-rights-explainer {
  font-size: 0.88rem;
  color: rgba(248,244,236,0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.legal-rights-explainer p {
  margin-bottom: 1rem;
}

.legal-rights-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
  margin: 1.5rem 0;
}

.legal-rights-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.legal-rights-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(10,22,40,0.5);
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.legal-rights-item-icon {
  width: 32px;
  height: 32px;
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--gold);
}

.legal-rights-item-text {
  font-size: 0.88rem;
  color: rgba(248,244,236,0.75);
  line-height: 1.6;
}

.legal-rights-item-text strong {
  color: var(--cream);
  display: block;
  margin-bottom: 0.2rem;
}

.legal-rights-closing {
  margin-top: 4rem;
  padding: 2.5rem;
  background: rgba(200,169,110,0.06);
  border: 1px solid rgba(200,169,110,0.2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.legal-rights-closing-text {
  font-size: 0.92rem;
  color: rgba(248,244,236,0.75);
  line-height: 1.8;
  margin-bottom: 0;
}

.legal-rights-closing-text strong {
  color: var(--cream);
}

.legal-rights-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(200,169,110,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.legal-rights-cta:hover {
  border-color: var(--gold);
  text-decoration: none;
}

/* === RISKS === */
.risks {
  background: var(--navy-mid);
}

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

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

.risk-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.risk-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.risk-body {
  font-size: 0.85rem;
  color: rgba(248,244,236,0.6);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.risk-mitigation {
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0.8;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.risk-mitigation strong { color: var(--gold); }

/* === FAQ === */
.faq {
  background: var(--navy);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  text-align: left;
}

.faq-question:hover { color: var(--gold); }

.faq-toggle {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
  font-size: 0.88rem;
  color: rgba(248,244,236,0.6);
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* === LEAD MAGNET === */
.lead-magnet {
  background: var(--navy-mid);
}

.lead-magnet-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 6rem 2rem;
}

.lm-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.lm-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

/* === CONTACT === */
.contact {
  background: var(--navy);
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 6rem 2rem;
}

.contact-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.78rem;
  color: rgba(248,244,236,0.55);
  font-weight: 500;
}

.form-input, .form-select, .form-textarea {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: rgba(248,244,236,0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.form-checkbox-label input { accent-color: var(--gold); }

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

.whatsapp-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
  color: rgba(248,244,236,0.35);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.whatsapp-divider::before,
.whatsapp-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200,169,110,0.2);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
  border-radius: var(--radius);
  padding: 0.85rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  width: 100%;
}
.btn-whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  transform: translateY(-1px);
}
.btn-whatsapp:active {
  transform: translateY(0);
}

.whatsapp-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(248,244,236,0.35);
}

/* === FINAL CTA === */
.final-cta {
  background: linear-gradient(160deg, var(--navy-lite) 0%, var(--navy-mid) 100%);
  border-top: 1px solid var(--border);
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 7rem 2rem;
}

.cta-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.cta-body {
  font-size: 1rem;
  color: rgba(248,244,236,0.6);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* === FOOTER === */
.site-footer {
  background: #060D18;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

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

.footer-meta {
  font-size: 0.78rem;
  color: rgba(248,244,236,0.25);
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  display: none;
  z-index: 200;
}

.cookie-banner.show { display: block; }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(248,244,236,0.6);
}

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

.cookie-actions { display: flex; gap: 0.75rem; }

.cookie-btn {
  background: none;
  border: 1px solid var(--border);
  color: rgba(248,244,236,0.5);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.cookie-btn.accept {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* === SUCCESS === */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 2rem;
}

.success-box {
  max-width: 540px;
  text-align: center;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.success-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-body {
  font-size: 0.95rem;
  color: rgba(248,244,236,0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* === ABOUT PHOTOS === */
.about-photos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-photo-main {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-photo-secondary {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

/* === VILLA LIFESTYLE === */
.villa-lifestyle {
  background: var(--navy);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lifestyle-content { }

.lifestyle-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.lifestyle-feat {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.lifestyle-feat-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.lifestyle-feat-body {
  font-size: 0.78rem;
  color: rgba(248,244,236,0.55);
  line-height: 1.6;
}

.lifestyle-image-wrap {
  position: relative;
}

.lifestyle-image {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 8px 40px rgba(10,22,40,0.4);
}

/* === VILLA INTERIORS === */
.villa-interiors {
  background: var(--navy-mid);
}

.interiors-header {
  text-align: center;
  margin-bottom: 3rem;
}

.interiors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.interior-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.interior-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.interior-caption {
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  color: rgba(248,244,236,0.45);
  border-top: 1px solid var(--border);
}

/* === VILLAS IMAGE STRIP === */
.villas-image-strip {
  margin-bottom: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.villas-strip-img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}

/* === PLOT MAP === */
.plot-map {
  background: var(--navy);
}

.plot-map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.plot-map-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.plot-map-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--navy-mid);
  display: block;
}

.plot-legend {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(248,244,236,0.6);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot.sold    { background: #8B2020; border: 1px solid rgba(139,32,32,0.5); }
.legend-dot.reserved { background: #9B7A1A; border: 1px solid rgba(155,122,26,0.5); }
.legend-dot.available { background: #2A6E3A; border: 1px solid rgba(42,110,58,0.5); }

/* === BUNGALOW === */
.bungalow {
  background: var(--navy-mid);
}

.bungalow-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.bungalow-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bungalow-hero-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.bungalow-hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.bungalow-sub-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bungalow-sub-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.bungalow-floorplan-wrap {
  background: var(--navy);
}

.bungalow-sub-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.bungalow-floorplan {
  object-fit: contain;
  padding: 1rem;
  background: var(--navy);
}

.bungalow-sub-caption {
  padding: 0.6rem 0.75rem;
  font-size: 0.72rem;
  color: rgba(248,244,236,0.4);
  border-top: 1px solid var(--border);
  background: var(--navy);
}

.bungalow-info { }

.bungalow-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.bungalow-price {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.bungalow-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  background: var(--navy);
}

.bungalow-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}

.bungalow-spec-row:last-child { border-bottom: none; }

.bungalow-spec-label { color: rgba(248,244,236,0.5); }

.bungalow-spec-val {
  font-weight: 600;
  color: var(--cream);
  font-family: 'Fraunces', serif;
}

.bungalow-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.bungalow-feat {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.bungalow-feat-icon {
  width: 22px;
  height: 22px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
}

.bungalow-feat-text {
  font-size: 0.85rem;
  color: rgba(248,244,236,0.7);
  line-height: 1.55;
}

.bungalow-financing-box {
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.bungalow-financing-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.bungalow-financing-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(200,169,110,0.1);
}

.bungalow-financing-row:last-child { border-bottom: none; }

.bungalow-financing-row span { color: rgba(248,244,236,0.5); }

.bungalow-financing-row strong { color: var(--cream); }

.bungalow-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === VILLA SAMBATRA — premium flagship === */
.villa-sambatra {
  background: var(--bg);
}

.villa-sambatra-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.villa-sambatra-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.villa-sambatra-hero-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.villa-sambatra-hero-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.villa-sambatra-floorplan-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.villa-sambatra-floorplan {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.villa-sambatra-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,0.85));
  color: rgba(248,244,236,0.6);
  font-size: 0.72rem;
  padding: 1.5rem 1rem 0.75rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.villa-sambatra-info {
  display: flex;
  flex-direction: column;
}

.villa-sambatra-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.villa-sambatra-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(248,244,236,0.55);
  font-family: 'DM Sans', sans-serif;
}

.villa-sambatra-price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0.75rem 0 1.5rem;
  letter-spacing: -0.01em;
}

.villa-sambatra-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.villa-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid rgba(200,169,110,0.08);
  background: rgba(255,255,255,0.02);
}

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

.villa-spec-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
  opacity: 0.8;
}

.villa-spec-text {
  flex: 1;
}

.villa-spec-name {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(248,244,236,0.4);
  margin-bottom: 0.2rem;
}

.villa-spec-val {
  font-size: 0.88rem;
  color: var(--cream);
  line-height: 1.4;
}

.villa-sambatra-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}

@media (max-width: 768px) {
  .villa-sambatra-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .villa-sambatra-title {
    font-size: 1.75rem;
  }
  .villa-sambatra-price {
    font-size: 1.5rem;
  }
}

/* === LOCATION PHOTOS & VIDEO === */
.location-photo-wrap {
  margin-bottom: 1.5rem;
}

.location-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.location-photo-caption {
  font-size: 0.72rem;
  color: rgba(248,244,236,0.35);
  margin-top: 0.5rem;
}

.youtube-wrap {
  margin-bottom: 2rem;
}

.youtube-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--navy);
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube-caption {
  font-size: 0.72rem;
  color: rgba(248,244,236,0.35);
  margin-top: 0.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .about-grid,
  .lifestyle-grid,
  .bungalow-layout,
  .location-grid,
  .legal-grid,
  .rental-grid { grid-template-columns: 1fr; }

  .about-photos { margin-top: 2rem; }

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

  .villas-strip-img { aspect-ratio: 16 / 9; }

  .bungalow-sub-images { grid-template-columns: 1fr; }

  .bungalow-price { font-size: 2rem; }

  .villas-table-wrap { overflow-x: auto; }

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

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

  .documents-list { grid-template-columns: 1fr; }

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

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

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

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .about-stats { grid-template-columns: 1fr; }

  .rental-features { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .btn-full { width: 100%; }

  .process-steps { grid-template-columns: 1fr; }

  .navbar-inner { padding: 0 1.25rem; }
  .page-container { padding: 0 1.25rem; }

  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
/* === FLOATING WHATSAPP BUTTON === */
.wa-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}

.wa-float-btn:hover {
  transform: scale(1.08);
  background: #1fb855;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  text-decoration: none;
}

.wa-float-btn:active {
  transform: scale(1.02);
}

@media (max-width: 600px) {
  .wa-float-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
  }
  .wa-float-btn svg { width: 24px; height: 24px; }
}
