/* ==========================================================================
   BRABUS ISLAND ABU DHABI - 100% EXACT MATCH STYLES FOR ALL SECTIONS
   ========================================================================== */

:root {
  --bg-page: #ffffff;
  --bg-section-alt: #f8f9fa;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --border-light: #e4e4e7;
  --border-subtle: #f4f4f5;
  --border-dark: #000000;
  
  --text-main: #09090b;
  --text-muted: #52525b;
  --text-dim: #a1a1aa;
  
  --dark-hero-bg: #0a0a0c;

  --font-din: 'FF DIN', 'DIN Next LT Pro', 'DIN Next', 'DIN 2014', 'D-DIN', 'DIN Alternate', 'DIN', 'Barlow', 'Rajdhani', sans-serif;
  --font-heading: var(--font-din);
  --font-sans: var(--font-din);
  --font-body: var(--font-din);

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background: var(--bg-page);
  color: var(--text-main);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 90px 0;
  background: var(--bg-page);
}

.section-number {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-top-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin-bottom: 50px;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--text-main);
  line-height: 1.2;
}

.margin-bottom {
  margin-bottom: 36px;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 720px;
  margin-top: 12px;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background: #222222;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-white {
  background: #ffffff;
  color: #000000;
}

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

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
}

.btn-outline:hover {
  background: var(--text-main);
  color: #ffffff;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.75rem;
}

.btn-block {
  width: 100%;
}

/* Navbar & Brand Logo */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all var(--transition-fast);
}

.navbar.scrolled .brand-logo {
  height: 80px;
  filter: none;
  mix-blend-mode: multiply;
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
}

.navbar.scrolled .nav-link {
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.navbar.scrolled .nav-link:hover, 
.navbar.scrolled .nav-link.active {
  color: #000000;
}

.btn-nav-cta {
  padding: 10px 20px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}

.navbar.scrolled .btn-nav-cta {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.navbar.scrolled .btn-nav-cta:hover {
  background: #222222;
  border-color: #222222;
}

.mobile-toggle {
  display: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
}

.navbar.scrolled .mobile-toggle span {
  background: #000000;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 80px 0;
  overflow: hidden;
  background: var(--dark-hero-bg);
  color: #ffffff;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.9;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}

.hero-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 900px;
  text-align: left;
}

.eyebrow-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-vertical {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* Section 01 — Residences */
.philosophy-seamless-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  margin-top: 10px;
  width: 100%;
}

.grid-cell.cell-image {
  position: relative;
  overflow: hidden;
  height: 480px;
  width: 100%;
}

.seamless-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grid-cell.cell-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  padding: 40px 60px;
}

.grid-cell.text-right-padded {
  padding-left: 60px;
  padding-right: 0px;
}

.grid-cell.text-left-padded {
  padding-left: 0px;
  padding-right: 60px;
}

.card-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.grid-cell .card-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 20px;
}

.grid-cell .card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.card-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin-bottom: 24px;
}

.pills-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  flex-wrap: wrap;
}

.pill-dot {
  color: var(--text-dim);
}

/* Section 02 — Properties (Zero-Gap Grid Match) */
.properties-top-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.properties-main-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #000000;
  text-transform: uppercase;
}

.properties-main-desc {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.65;
}

.filter-tabs-row {
  display: flex;
  gap: 36px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.filter-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all var(--transition-fast);
  border-radius: 0;
  white-space: nowrap;
}

.filter-btn.active, .filter-btn:hover {
  color: #000000;
  border-bottom-color: #000000;
  background: transparent;
}

.residences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
}

.residence-card {
  background: #ffffff;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  border-top: none;
  border-left: none;
  border-radius: 0;
  transition: all var(--transition-fast);
}

.residence-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-thumb {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #f4f4f5;
}

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

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

.tag-status.white-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ffffff;
  color: #000000;
  padding: 5px 12px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 0;
  z-index: 2;
}

.tag-status.black-tag-top {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #000000;
  color: #ffffff;
  padding: 5px 12px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 0;
  z-index: 2;
}

.tag-category.black-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #000000;
  color: #ffffff;
  padding: 5px 12px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 0;
  z-index: 2;
}

.card-body {
  padding: 24px;
}

.residence-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.residence-specs {
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 16px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 14px;
  margin-bottom: 20px;
}

.price-amount {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 20px;
}

.btn-card-inquire {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid #d4d4d8;
  color: #000000;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-align: center;
  transition: all var(--transition-fast);
  border-radius: 0;
  display: block;
}

.btn-card-inquire:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* Section 03 — Gallery */
.gallery-main-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.gallery-custom-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.gallery-row {
  display: flex;
  width: 100%;
}

.gallery-big-col {
  width: 50%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.gallery-small-group {
  width: 50%;
  display: flex;
  align-items: flex-start;
}

.gallery-small-col {
  width: 50%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.gallery-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-big-col:hover .gallery-tile-img,
.gallery-small-col:hover .gallery-tile-img {
  transform: scale(1.04);
}

.gallery-tile-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
}

/* Section 04 — Island Life */
.island-life-section {
  position: relative;
  padding: 120px 0;
  background: #0a0a0c;
  color: #ffffff;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.island-life-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.95;
}

.island-life-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 10, 12, 0.92) 0%, rgba(10, 10, 12, 0.75) 45%, rgba(10, 10, 12, 0.15) 100%);
  z-index: 2;
}

.island-life-container {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.island-life-content {
  max-width: 580px;
}

.light-text {
  color: rgba(255, 255, 255, 0.6);
}

.island-life-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.island-life-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 32px;
}

.island-life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

.island-feature .feature-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.island-feature .feature-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}

.island-grid-full-divider {
  grid-column: span 2;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 6px 0;
}

.island-banner-seamless {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.seamless-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seamless-banner-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  pointer-events: none;
  z-index: 3;
}

/* Section 05 — Private Presentations (Exact Underline Form Match) */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-main-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 24px;
}

.contact-desc {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 460px;
}

.contact-left-divider {
  width: 100%;
  max-width: 480px;
  height: 1px;
  background: var(--border-light);
  margin-bottom: 32px;
}

.inquiries-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.email-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
}

/* Minimalist Form Inputs */
.minimal-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.minimal-form-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e4e4e7;
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  transition: border-color var(--transition-fast);
  border-radius: 0;
}

.minimal-form-group input::placeholder {
  color: #a1a1aa;
}

.minimal-form-group input:focus {
  border-bottom-color: #000000;
}

.form-bottom-line {
  width: 100%;
  height: 1px;
  background: #e4e4e7;
  margin-top: 10px;
  margin-bottom: 24px;
}

.btn-submit-presentation {
  align-self: flex-start;
  padding: 14px 28px;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 0;
  border: none;
  cursor: pointer;
}

.btn-submit-presentation:hover {
  background: #222222;
}

/* Footer (Original Single Line Match) */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
}

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

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer-right-text {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.footer-domain {
  font-weight: 800;
  letter-spacing: 1.5px;
}

/* Modal & Toast */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f4f4f5;
  color: #000000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image-col {
  height: 360px;
}

.modal-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info-col {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Success Modal Styles */
.success-modal-card {
  max-width: 520px;
  background: #09090b;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  padding: 44px 36px;
  text-align: center;
  border-radius: var(--radius-lg);
}

.success-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-badge-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.success-modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

.success-modal-desc {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.6;
  color: #a1a1aa;
}

.success-modal-desc strong {
  color: #ffffff;
}

.success-modal-divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 6px 0;
}

.success-modal-subtext {
  font-size: 0.88rem;
  color: #71717a;
  letter-spacing: 0.5px;
}

.btn-success-close {
  margin-top: 14px;
  width: 100%;
  max-width: 220px;
  padding: 14px 24px;
  background: #ffffff;
  color: #000000;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.btn-success-close:hover {
  background: #e4e4e7;
}

.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #000000;
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 24px;
  height: 24px;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Comprehensive Responsive Breakpoints */
@media (max-width: 1200px) {
  .nav-container, .hero-container {
    padding: 0 28px;
  }
  .residences-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-big-col {
    height: 440px;
  }
  .gallery-small-col {
    height: 220px;
  }
}

@media (max-width: 992px) {
  .nav-container {
    padding: 0 20px;
  }
  .brand-logo {
    height: 70px;
  }
  .navbar.scrolled .brand-logo {
    height: 60px;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right var(--transition-smooth);
    z-index: 999;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-menu .nav-link {
    color: #000000;
    font-size: 1.1rem;
    padding: 12px 0;
  }
  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }
  .btn-nav-cta {
    display: none;
  }

  .philosophy-seamless-grid {
    grid-template-columns: 1fr;
  }
  .grid-cell.cell-image {
    height: 380px;
  }
  .grid-cell.cell-text {
    padding: 40px 24px;
  }
  .grid-cell.text-right-padded,
  .grid-cell.text-left-padded {
    padding-left: 0;
    padding-right: 0;
  }

  .properties-top-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .residences-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-row {
    flex-direction: column;
  }
  .gallery-big-col, .gallery-small-group {
    width: 100%;
  }
  .gallery-big-col {
    height: 320px;
  }

  .island-life-container {
    padding: 0 24px;
  }
  .island-life-content {
    max-width: 100%;
  }
  .island-life-bg-overlay {
    background: rgba(10, 10, 12, 0.85);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .scroll-vertical {
    display: none;
  }

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

  .gallery-small-group {
    flex-direction: column;
  }
  .gallery-small-col {
    width: 100%;
    height: 220px;
  }

  .island-life-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .island-grid-full-divider {
    grid-column: span 1;
  }
  .island-banner-seamless {
    height: 320px;
  }

  .footer-row {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-right-text {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
