/* ========================================
   CLEANED & ORGANIZED CSS
   ======================================== */

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.language-switcher {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 1000;
  animation: slideInFromRight 0.6s ease-out;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.85)
  );
  color: var(--primary-green);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(139, 119, 117, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.lang-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.lang-btn:hover::before {
  left: 100%;
}

.lang-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.lang-btn:hover {
  background: linear-gradient(135deg, var(--primary-green), #8b7775);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(139, 119, 117, 0.4);
  border-color: var(--primary-green);
}

.lang-btn:hover i {
  transform: rotate(360deg);
}

.lang-btn:active {
  transform: translateY(-1px) scale(1.02);
}

/* RTL Language Switcher */
html[dir="rtl"] .language-switcher {
  right: auto;
  left: 25px;
  animation: slideInFromLeft 0.6s ease-out;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile responsiveness for language switcher */
@media (max-width: 768px) {
  .language-switcher {
    top: 15px;
    right: 15px;
  }

  html[dir="rtl"] .language-switcher {
    left: 15px;
  }

  .lang-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .lang-btn i {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .language-switcher {
    top: 10px;
    right: 10px;
  }

  html[dir="rtl"] .language-switcher {
    left: 10px;
  }

  .lang-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    gap: 0.4rem;
  }
}

/* Phone number inputs should always be LTR */
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[type="phone"],
html[dir="rtl"] .phone-input,
html[dir="rtl"] #hero-consultation-phone,
html[dir="rtl"] #expert-phone,
html[dir="rtl"] #golden-visa-phone,
html[dir="rtl"] #brochure-phone,
html[dir="rtl"] #floor-plan-phone,
html[dir="rtl"] #consultation-phone {
  direction: ltr !important;
  text-align: left !important;
}

html[dir="rtl"] input[type="tel"]::placeholder,
html[dir="rtl"] input[type="phone"]::placeholder,
html[dir="rtl"] .phone-input::placeholder {
  direction: ltr !important;
  text-align: left !important;
}

/* Intl Tel Input flags and dropdown should be LTR */
html[dir="rtl"] .iti,
html[dir="rtl"] .iti__flag-container,
html[dir="rtl"] .iti__selected-flag,
html[dir="rtl"] .iti__country-list,
html[dir="rtl"] .iti__country,
html[dir="rtl"] .iti__dial-code,
html[dir="rtl"] .iti__country-name {
  direction: ltr !important;
  text-align: left !important;
}

/* Preserve padding for phone inputs in RTL */
html[dir="rtl"] .iti input[type="tel"],
html[dir="rtl"] .iti input[type="phone"] {
  padding-left: 52px !important;
  padding-right: 8px !important;
}

/* Ensure flag dropdown appears correctly in RTL */
html[dir="rtl"] .iti__country-list {
  left: 0 !important;
  right: auto !important;
}

/* Flag container positioning */
html[dir="rtl"] .iti__flag-container {
  left: 0 !important;
  right: auto !important;
}

/* Preserve flag container padding */
html[dir="rtl"] .iti__selected-flag {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

/* ========================================
   CSS VARIABLES - COLORS & GRADIENTS
   ======================================== */
:root {
  /* Primary Colors */
  --primary-green-btn: #8b7775;
  --primary-green: #8b7775;
  --primary-green-light: #8b7775;
  --primary-green-dark: #8b7775;

  /* Secondary Colors */
  --secondary-beige: #dae6dc66;
  --secondary-beige-light: #dae6dc66;
  --secondary-beige-dark: #9a8f82;

  /* Neutral Colors */
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f8fafc;
  --gray-medium: #64748b;
  --gray-dark: #333333;
  --gray-border: #e2e8f0;

  /* Text Colors */
  --text-primary: #333;
  --text-secondary: #666;
  --text-white: #e6e6e6;
  --text-light: #cacaca;
  --text-muted: #94a3b8;

  /* Status Colors */
  --success: #27ae60;
  --error: #e74c3c;
  --warning: #feca57;

  /* Background Gradients */
  --gradient-hero: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.66) 0%,
    rgba(126, 190, 0, 0) 70%,
    #8b7775
  );
  --gradient-about: linear-gradient(
    to bottom,
    #8b7775 0%,
    #8b7775a7 30%,
    #8b7775a7 80%,
    #f8f9fa 95%,
    #f8f9fa 100%
  );
  --gradient-footer: linear-gradient(
    to bottom,
    #8b7775 0%,
    #8b7775f7 30%,
    #8b7775f7 80%,
    #8b7775f7 100%
  );
  --gradient-payment: url(images/material/9.jpeg) no-repeat center center;
  --gradient-location: var(--secondary-beige);
  --gradient-experts: linear-gradient(
    to bottom,
    var(--secondary-beige),
    var(--primary-green-light)
  );

  /* Button Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green)
  );
  --gradient-primary-hover: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green)
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--primary-green-light),
    var(--secondary-beige)
  );
  --gradient-secondary-hover: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-green-light)
  );

  /* Card Gradients */
  --gradient-card-overlay: linear-gradient(
    135deg,
    rgba(142, 102, 216, 0.05),
    rgba(167, 139, 216, 0.05)
  );
  --gradient-map-overlay: linear-gradient(
    135deg,
    rgba(35, 59, 19, 0.1) 0%,
    rgba(73, 104, 52, 0.1) 100%
  );

  /* Shadow Colors */
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.2);
  --shadow-green: rgba(35, 59, 19, 0.3);
}

/* ========================================
   FONT DECLARATIONS
   ======================================== */
@font-face {
  font-family: "LEMONMILK-Bold";
  src: url("./fonts/LEMONMILK-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LEMONMILK-Regular";
  src: url("./fonts/LEMONMILK-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Kumbh Sans", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 0;
  background: var(--gradient-hero), url("images/exterior/10.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: visible;
}

.hero-text,
.hero-form-container {
  align-self: baseline;
}
.hero-grid {
  padding: 2rem 0 2rem 2rem;
  display: grid;
  grid-template-areas:
    "logos logos"
    "text form";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  justify-content: center;
  /* gap: 30px; */
  align-items: stretch;
  border: none;
  min-height: 100vh;
  height: auto;
  position: relative;
  z-index: 2;
}

.hero-logos {
  grid-area: logos;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 20px;
}

.hero-bottom-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  margin-top: 20px;
}

.developer-logo-top {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.project-logo-top {
  height: 100px;
}

.zain-logo-bottom {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.zain-logo-top {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.212);
}

.developer {
  color: var(--primary-green);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.location {
  color: var(--primary-green);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-name {
  color: var(--white);
  font-family: "goldenbook", serif;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(2.7rem, 6vw, 3.5rem);
}
.project-name-span {
  font-weight: normal;
  font-size: 1.2rem;
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.183);
}

/* ========================================
   HERO BUTTONS
   ======================================== */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-primary {
  background: var(--primary-green-btn);
  color: var(--white);
  border: none;
  width: 100%;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 12px 26px;
  width: 100%;
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-green);
}

/* ========================================
   LICENSE INFO
   ======================================== */
.license-info {
  margin-bottom: 0;
}

.license-info small {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========================================
   HERO FORM CONTAINER
   ======================================== */
.hero-form-container {
  grid-area: form;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  min-height: auto;
}

.hero-form {
  width: 100%;
  max-width: 400px;
  height: auto;
  min-height: auto;
  background: rgba(255, 255, 255, 0.927);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
.zain-logo-footer {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.hero-form h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 16px;
  text-align: center;
}

.hero-form p {
  font-size: 1rem;
  color: var(--gray-medium);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-privacy-guarantee {
  margin-bottom: 0px !important;
  font-size: 0.8rem !important;
}
/* ========================================
   HERO CONSULTATION FORM
   ======================================== */
.hero-consultation-form {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.hero-consultation-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-consultation-form .form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.iti__tel-input {
  width: 100%;
}

.iti__selected-flag {
  border-right: 1px solid #16759a56;
}

.hero-consultation-form .form-group input {
  padding: 14px 16px;
  border: 1px solid #16759a56;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.847);
}

.hero-consultation-form .form-group input:focus {
  outline: none;
}

.hero-consultation-form .btn-primary {
  width: 100%;
  margin-top: 8px;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.bold-text {
  font-weight: 900;
}

/* ========================================
   HERO PROPERTY INFO
   ======================================== */
.hero-property-info {
  width: 100%;
  padding-top: 20px;
  margin-top: 20px;
}

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

.fact-card {
  align-self: center;
  background: none;
  padding: 18px 15px;
  background-color: var(--white);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.fact-card:nth-child(4) .fact-number {
  font-size: 1.2rem;
}

.fact-number {
  font-family: "LEMONMILK-Regular", serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}

.fact-label {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}

/* ========================================
   ABOUT PROJECT SECTION
   ======================================== */
.about-project {
  background: var(--gradient-about);

  position: relative;
}

.about-project::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./images/material/1.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
}

.about-content {
  /* display: flex; */
  gap: 80px;
  align-items: start;
  padding: 20px;
  min-height: 400px;
}

.about-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 25px 50px var(--shadow-light);
  position: relative;
  border-radius: 10px;
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-card-overlay);
  z-index: 1;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.02);
}

.section-title {
  font-size: 2.5rem;
  font-family: "goldenbook", serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.about-description {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-brochure-section {
  text-align: center;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-brochure-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #574c4c;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  width: fit-content;
}

.download-brochure-btn i {
  font-size: 1rem;
}

.about-description + h3,
.architecture-highlights + h3,
.wellness-features + h3,
.location-highlights + h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #8b7775;
  color: rgb(69, 69, 69);
}

.about-description + h3:first-of-type {
  margin-top: 32px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.tag {
  background: #f1f5f9;
  color: #475569;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #8b7775;
  color: white;
  transform: translateY(-2px);
}

.location-highlights {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 32px;
}

.architecture-highlights {
  font-size: 1.1rem;
  color: rgb(69, 69, 69);
  line-height: 1.7;
  margin-bottom: 32px;
}

.wellness-features {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 32px;
}

.amenities-highlights {
  background: #f8fafc;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 32px;
  border-left: 4px solid #8b7775;
}

.amenities-highlights h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #8b7775;
  margin-bottom: 16px;
}

.amenities-highlights p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

.form-group input {
  padding: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #8b7775;
}

.validation-output {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 20px;
  display: none;
  visibility: hidden;
  opacity: 0;
  color: black;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #64748b;
}

.checkbox input {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox input:checked + .checkmark {
  background: #6366f1;
  border-color: #6366f1;
}

.checkbox input:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.special-offer .btn-secondary {
  width: 100%;
}

/* Floor Plans Diagram Section */
.floor-plans-diagram {
  margin-top: 60px;
  padding: 40px;
  background: #f8fafc;
  border-radius: 5px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.floor-plans-diagram h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #8b7775;
  margin-bottom: 30px;
  text-align: center;
}

.floor-plan-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.floor-plan-tab {
  color: white;
  opacity: 50%;
  background: linear-gradient(135deg, #8b7775, #dae6dc66);
  border: 2px solid transparent;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.floor-plan-tab.active,
.floor-plan-tab:hover {
  background: linear-gradient(135deg, #8b7775, #8b7775);
  color: white;
  opacity: 100%;
  border-color: #8b7775;
  transform: translateY(-2px);
}

.floor-plan-content {
  position: relative;
  min-height: 400px;
}

.floor-plan-diagram {
  display: none;
  text-align: center;
}

.floor-plan-diagram.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.floor-plan-diagram img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.floor-plan-diagram img:hover {
  transform: scale(1.02);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: #f8fafc;
}

.gallery-content {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  order: 1;
}

.gallery-left {
  width: 100%;
  max-width: 950px;
  overflow: hidden;
  order: 2;
}

.gallery-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.tab-btn {
  background: linear-gradient(135deg, #8b7775, #dae6dc66);
  color: white;
  border: 2px solid transparent;
  padding: 14px 28px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 4px 15px rgba(73, 104, 52, 0.3); */
}

.tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8b7775, #8b7775);
  transition: left 0.3s ease;
  z-index: -1;
}

.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, #8b7775, #8b7775);
  color: white;
  border-color: #8b7775;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(35, 59, 19, 0.4);
}

.tab-btn.active::before,
.tab-btn:hover::before {
  left: 0;
}

.tab-content {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-carousel {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  overflow: hidden;
  height: 450px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  background: rgba(255, 255, 255, 0.847);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #8b7775;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #8b7775;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 12px 35px #8b7775b3;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #8b77752d;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #8b7775;
  transform: scale(1.2);
}

/* Gallery Sidebar */
.gallery-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gallery-info {
  background: white;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.gallery-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #8b7775;
  margin-bottom: 20px;
}

.gallery-info p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 30px;
}

.gallery-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: #f8fafc;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #8b7775;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

/* Consultation Dialog */
.consultation-dialog {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.dialog-content {
  background: white;
  border-radius: 5px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #64748b;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dialog-close:hover {
  background: #f1f5f9;
  color: #8b7775;
}

.dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.dialog-image {
  background: linear-gradient(135deg, #8b7775, #8b7775);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.dialog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  opacity: 0.9;
}

.dialog-form {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dialog-form h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #8b7775;
  margin-bottom: 16px;
  text-align: center;
}

.consultation-form .form-group {
  margin-bottom: 24px;
}

.consultation-form label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.consultation-form input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.consultation-form input:focus {
  outline: none;
  border-color: #8b7775;
  box-shadow: 0 0 0 3px rgba(142, 102, 216, 0.1);
}

.consultation-form .btn-primary {
  width: 100%;
  margin-top: 16px;
}

/* Floating Contact Buttons */
.floating-buttons {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1000;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.float-btn.phone {
  background: #8b7775;
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Floor Plans Section */
.floor-plans {
  padding: 100px 0;
  background: white;
}
.section-header1 {
  display: flex;
  justify-content: center;
  text-align: center;
}
.residence-images {
  margin: auto;
}
.section-header1 h2 {
  font-family: "LEMONMILK-Bold", sans-serif;
  margin-bottom: 10px;
  color: #8b7775;
}

.section-header,
.section-header4 {
  text-align: center;
}
.section-header4 {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2,
.gallery-section h3,
.section-header h2,
.floor-plans-diagram h3 {
  font-family: "LEMONMILK-Bold", sans-serif;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-header4 h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.3rem;
  color: white;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

.step-number {
  color: var(--text-white);
}
.step-content,
.step-content p {
  text-align: center;
  width: 100%;
}
.step-number,
step-content h4 {
  text-align: center;
  color: var(--secondary-beige);
}

/* ========================================
   PAYMENT PLANS SECTION
   ======================================== */
.payment-plans {
  padding: 120px 0;
  background: #8b7775d0;
  background-size: cover;
  position: relative;
}
.payment-plans::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./images/material/9.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
}
.payment-horizontal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 2rem auto;
}

.payment-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.step-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.step-content p {
  color: var(--text-white);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ========================================
   EXPERTS SECTION
   ======================================== */
.experts-image {
  width: 100%;
  height: 250px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-light);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.experts-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-medium);
}

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

.experts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 60px;
}

.experts-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.experts-left p {
  font-size: 1.1rem;
  color: var(--gray-medium);
  line-height: 1.7;
  margin-bottom: 40px;
}

.experts-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.expert-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expert-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.expert-feature i {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-top: 4px;
  flex-shrink: 0;
}

.expert-feature h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 4px;
}

.expert-feature p {
  color: var(--primary-green);
  font-size: 0.95rem;
  margin: 0;
}

.experts-form {
  background: var(--gray-light);
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 10px 30px var(--shadow-light);
  max-width: 800px;
  margin: 0 auto;
}

.experts-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.privacy-guarantee {
  font-size: 0.9rem;
  color: var(--gray-medium);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.4;
}
.expert-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.expert-form .form-group input,
.expert-form .form-group select,
.expert-form .form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--gray-border);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--white);
}

.expert-form .form-group input:focus,
.expert-form .form-group select:focus,
.expert-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.expert-form .btn-primary {
  width: 100%;
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer {
  background: var(--gradient-footer);
  color: var(--white);
  padding: 0px 0 20px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/material/1.jpeg");
  background-size: cover;
  background-position: center;
  transform: rotate(180deg);
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
}
/* .footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(150, 75, 0, 0.08) 0%,
    rgba(150, 75, 0, 0.05) 100%
  );
  pointer-events: none;
} */

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo i {
  margin-right: 10px;
  color: var(--primary-green);
  font-size: 1.8rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-green);
}

.footer-section p {
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gray-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
}

.footer-section ul li {
  list-style: none;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #cbd5e1;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-green);
  width: 20px;
}

.footer-bottom {
  background-color: transparent;
  /* border-top: 1px solid rgba(150, 75, 0, 0.3); */
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-project-logo,
.footer-aldar-logo {
  height: 90px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-bottom p {
  color: #cbd5e1;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-green);
}
/* ========================================
   DESKTOP LAYOUT ADJUSTMENTS
   ======================================== */
.container {
  max-width: 1400px;
}

.experts-right {
  margin: auto;
}

.hero-title {
  font-size: 4rem;
}

.section-title {
  font-size: 3rem;
}

.features-section {
  gap: 3rem;
}

.location-details {
  gap: 3rem;
}

.experts-content {
  gap: 5rem;
}

.container {
  max-width: 1400px;
}

.hero-grid {
  gap: 40px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.section-title {
  font-size: 3rem;
}

.about-content {
  gap: 100px;
}

.experts-content {
  gap: 100px;
}

.gallery-content {
  gap: 80px;
}

.gallery-carousel .swiper {
  height: fit-content;
}

.swiper-button-next,
.swiper-button-prev {
  width: 60px;
  height: 60px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.8rem;
}

/* ========================================
   DESKTOP RESPONSIVE STYLES
   ======================================== */
.hero-subtitle-tall br {
  display: none;
}

/* Hero Section Desktop */
.hero {
  min-height: 100vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  order: 1;
}

.hero-form-container {
  order: 2;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.hero-property-info {
  margin-top: 2rem;
}

.property-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
}

.fact-card {
  padding: 1.5rem;
  margin: auto;
  text-align: center;
  width: 100%;
  height: 100% !important;
}

.fact-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #8b7775;
  margin-bottom: 0.5rem;
}

.fact-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Hero Form Desktop */
.hero-form {
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-form h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

/* About Section Desktop */
.about-project {
  padding: 5rem 0;
}

.about-content {
  /* display: flex;
  flex-direction: column; */
  align-items: center;
  text-align: center;
  margin: 0 auto;
  gap: 3rem;
}

.about-sidebar {
  width: 100%;
  max-width: 600px;
  position: static;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.feature-item {
  padding: 0;
}

.feature-image {
  height: 220px;
}

.feature-content {
  padding: 2rem;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Location Section Desktop */
.location-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.location-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8b7775;
  margin-bottom: 1rem;
}

.location-section .section-header p {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
}

.location-map-container {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  background: #f8f9fa;
  padding: 8px;
}

.location-map-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(35, 59, 19, 0.1) 0%,
    rgba(73, 104, 52, 0.1) 100%
  );
  border-radius: 5px;
  z-index: 1;
  pointer-events: none;
}

.location-map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 15px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.location-map-container:hover iframe {
  transform: scale(1.02);
}

.location-map-container:hover {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

/* Map loading state */
.location-map-container iframe {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.location-map-container iframe:not([src=""]) {
  background: transparent;
}

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

.location-detail {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.location-detail p {
  font-size: 1.1rem;
}

.location-detail h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 0.5rem 0;
}

/* Location Icons */
.location-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.location-icon i {
  font-size: 1.8rem;
  color: white;
}

.beach-icon {
  background: linear-gradient(135deg, #8b7775 0%, #6b5d5a 100%);
  box-shadow: 0 4px 15px rgba(139, 119, 117, 0.3);
}

.tent-icon {
  background: linear-gradient(135deg, #8b7775 0%, #6b5d5a 100%);
  box-shadow: 0 4px 15px rgba(139, 119, 117, 0.3);
}

.marina-icon {
  background: linear-gradient(135deg, #8b7775 0%, #6b5d5a 100%);
  box-shadow: 0 4px 15px rgba(139, 119, 117, 0.3);
}

.parking-icon {
  background: linear-gradient(135deg, #8b7775 0%, #6b5d5a 100%);
  box-shadow: 0 4px 15px rgba(139, 119, 117, 0.3);
}

.location-icon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Payment Plans Desktop */
.payment-plans {
  padding: 5rem 0;
}

.step-number {
  font-size: 6rem;
  color: var(--white);
}

.payment-plans .btn-primary {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.step-content h4 {
  font-size: 1.2rem;
}

/* Experts Contact Desktop */
.experts-contact {
  padding: 5rem 0;
}

.wellness-carousel {
  max-width: 600px;
  margin: 2rem 0 3rem 0;
}

.wellness-swiper {
  height: 350px;
}

.expert-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.expert-feature {
  padding: 0.5rem;
}

.expert-feature i {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.expert-feature p {
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Experts Form Desktop - Positioned below content */
.experts-form {
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.experts-form h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.experts-form p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Form Groups Desktop */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group input {
  padding: 18px 20px;
  font-size: 1.1rem;
}

.btn-primary {
  padding: 18px 30px;
  font-size: 1.1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

/* Floating Buttons Desktop */
.floating-buttons {
  bottom: 2rem;
  right: 2rem;
}

.float-btn {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
}

.experts-form p {
  font-size: 0.9rem;
}
/* Fix image overflow */
.about-image img,
.plan-image img,
.floor-plan-diagram img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.floor-plan-diagram img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.footer-section ul li {
  list-style: none;
}

/* Gallery Section within About */
.gallery-section {
  width: 50%;
  margin: 0 auto;
  padding: 20px;
  margin-top: 60px;
  background: #f8fafc;
  border-radius: 5px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Brochure Dialog Styles */
.brochure-dialog {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
}

.brochure-dialog .dialog-content {
  background: white;
  border-radius: 5px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: dialogSlideIn 0.3s ease;
}

@keyframes dialogSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.brochure-dialog .dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.3s ease;
  z-index: 10;
}

.brochure-dialog .dialog-close:hover {
  background: #e2e8f0;
  color: #8b7775;
  transform: scale(1.1);
}

.brochure-dialog .dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.brochure-dialog .dialog-image {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.brochure-dialog .dialog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.brochure-dialog .dialog-form {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brochure-dialog .dialog-form h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #8b7775;
  margin-bottom: 16px;
  text-align: center;
}

.brochure-dialog .dialog-form p {
  color: #64748b;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}

.brochure-dialog .brochure-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brochure-dialog .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brochure-dialog .form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.brochure-dialog .form-group input {
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.brochure-dialog .form-group input:focus {
  outline: none;
  border-color: #8b7775;
  box-shadow: 0 0 0 3px rgba(142, 102, 216, 0.1);
}

/* Ensure phone input is always visible */
#brochure-phone {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure intl-tel-input wrapper is visible */
.iti {
  display: block !important;
  visibility: visible !important;
}

.brochure-dialog .btn-primary {
  background: linear-gradient(135deg, #8b7775, #8b7775);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.brochure-dialog .btn-primary:hover {
  transform: translateY(-2px);
}

.gallery-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #8b7775;
  margin-bottom: 30px;
  text-align: center;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  background: linear-gradient(135deg, #8b7775, #dae6dc66);
  color: white;
  border: 2px solid transparent;
  padding: 14px 28px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8b7775, #8b7775);
  transition: left 0.3s ease;
  z-index: -1;
}

.tab-btn.active,
.tab-btn:hover {
  background: #8b7775;
  color: white;
  border-color: #8b7775;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #8b77753a;
}

.tab-btn.active::before,
.tab-btn:hover::before {
  left: 0;
}

.tab-content {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-carousel {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 5px;
  overflow: hidden;
}

/* Toast Notification System */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #27ae60;
  transform: translateX(400px);
  transition: transform 0.3s ease-in-out;
  min-width: 300px;
  max-width: 400px;
}

.toast.show {
  transform: translateX(0);
}

.toast-success {
  border-left-color: #27ae60;
}

.toast-error {
  border-left-color: #e74c3c;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-icon {
  font-size: 18px;
  font-weight: bold;
  color: #27ae60;
}

.toast-error .toast-icon {
  color: #e74c3c;
}

.toast-message {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* Features Section Styles */
.features-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem 0;
}

.feature-item {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  /* width: 500px; */
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-image {
  width: 500px;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-image img {
  transform: scale(1.05);
}

.feature-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-content h3 {
  font-family: "LEMONMILK-Bold", sans-serif;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.feature-content p {
  color: white;
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
}

.location-section {
  position: relative;
}

.location-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.location-section .container {
  position: relative;
  z-index: 2;
}

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

.location-detail {
  text-align: center;
  padding: 1.5rem;
  background: transparent;
  border-radius: 8px;
}

.location-detail h3 {
  font-size: 3rem;
  color: #8b7775;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.location-detail p {
  color: #414e38;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* Wellness Carousel Styles */
.wellness-carousel {
  border-radius: 5px;
  overflow: hidden;
}

.wellness-swiper {
  width: 100%;
  height: 350px;
}

.wellness-swiper .swiper-slide {
  height: 350px;
}

.wellness-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 5px;
}

.wellness-swiper .swiper-pagination {
  bottom: 10px;
}

.wellness-swiper .swiper-pagination-bullet {
  background: white;
  opacity: 0.7;
}

.wellness-swiper .swiper-pagination-bullet-active {
  background: #8b7775;
  opacity: 1;
}

.wellness-swiper .swiper-button-next,
.wellness-swiper .swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.wellness-swiper .swiper-button-next:after,
.wellness-swiper .swiper-button-prev:after {
  font-size: 16px;
}

/* Error and Success Message Styles */
.error-message {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.success-message {
  color: #27ae60;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.error-message.show {
  display: block;
}

.success-message.show {
  display: block;
}
.floor-plans-diagram {
  margin: 0 auto;
  width: 50%;
}
/* ========================================
   TABLET RESPONSIVE STYLES
   ======================================== */
@media (max-width: 768px) {
  .floor-plans-diagram {
    margin: 0 auto;
    width: 100%;
  }

  /* Hero Section */
  .hero {
    padding: 0;
    background-attachment: scroll;
  }

  .hero-grid {
    gap: 20px;
    min-height: auto;
  }

  .hero-form-container {
    padding: 0;
    min-height: auto;
    height: auto;
  }

  .hero-form {
    height: auto;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  }

  .hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .property-facts {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 10px;
  }

  .fact-card {
    height: auto !important;
    padding: 0px;
    margin: auto;

    background-color: transparent;
  }

  .fact-number {
    font-size: 1.2rem;
  }

  .hero-property-info {
    padding-top: 10px;
  }

  .feature-tags {
    justify-content: center;
  }

  /* Layout Sections */
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .payment-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .payment-horizontal {
    flex-direction: column;
  }

  .step-number {
    width: 80px;
    height: 80px;
    margin: 0px;
    font-size: 4.5rem;
  }

  .step-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
  }

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

  /* Gallery Section */
  .gallery-content {
    gap: 30px;
    padding: 0 15px;
  }
  .brochure-dialog .brochure-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
  .brochure-dialog .dialog-form p {
    margin-bottom: 0px;
  }
  .gallery-section {
    margin-top: 40px;
    width: 100%;
    margin: 0 auto;
  }

  .gallery-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .gallery-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .tab-btn {
    flex: 1;
    min-width: 0;
    max-width: 200px;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #8b7775, #dae6dc66);
    color: white;
    border: 2px solid transparent;
  }

  .gallery-carousel {
    margin-bottom: 20px;
  }

  .gallery-carousel .swiper {
    height: 400px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 48px;
    height: 48px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.2rem;
  }

  /* Floor Plans */
  .floor-plans-diagram {
    padding: 24px 16px;
  }

  /* Forms */
  .payment-card {
    padding: 24px 16px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .footer-logos {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .footer-project-logo,
  .footer-aldar-logo {
    height: 35px;
  }

  /* Location Section Mobile */
  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .location-section .section-header h2 {
    font-size: 2rem;
  }
  .section-header4 h2 {
    font-size: 2rem;
  }

  .location-section .section-header p {
    font-size: 1rem;
  }
  .section-header4 p {
    font-size: 1rem;
  }

  .location-map-container {
    padding: 6px;
  }

  .location-map-container iframe {
    height: 350px;
    border-radius: 15px;
  }

  /* Floating Elements */
  .floating-buttons {
    right: 20px;
    bottom: 20px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  /* Remove sticky effects on mobile */
  .about-sidebar {
    position: static !important;
    top: auto !important;
  }

  .project-image {
    height: 150px;
    margin-bottom: 20px;
  }

  .special-offer.sticky {
    position: static !important;
    top: auto !important;
  }
  .gallery-section {
    margin-top: 20px;
  }

  /* Gallery Carousel Mobile */
  .gallery-carousel .swiper {
    height: 300px;
  }

  .gallery-carousel .swiper-slide {
    height: 300px;
  }
  .brochure-dialog .dialog-content {
    width: 95%;
    max-height: 95vh;
    margin: 20px;
    border-radius: 8px 8px 0 0;
  }

  .brochure-dialog .dialog-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brochure-dialog .dialog-image {
    height: 300px;
  }

  .brochure-dialog .dialog-form {
    padding: 30px 20px;
  }

  .brochure-dialog .dialog-form h3 {
    font-size: 1.5rem;
  }
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
  }

  .toast {
    min-width: auto;
    max-width: none;
  }
  .features-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1rem 0;
  }

  .feature-image {
    height: 180px;
  }

  .feature-content {
    padding: 1.2rem;
  }

  .feature-content h3 {
    font-size: 1.2rem;
  }

  .feature-content p {
    font-size: 0.8rem;
  }
  .expert-features {
    gap: 1rem;
  }
  .location-section .container {
    padding: 2rem 1.5rem;
  }

  .location-details {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: auto 0px;
  }

  .location-detail {
    padding: 0.5rem;
  }

  .location-detail h3 {
    font-size: 1.5rem;
  }

  .location-detail p {
    font-size: 0.9rem;
  }
  .wellness-carousel {
    max-width: 100%;
    margin: 0 0;
  }

  .wellness-swiper {
    height: 300px;
  }

  .wellness-swiper .swiper-slide {
    height: 300px;
  }

  .wellness-swiper .swiper-button-next,
  .wellness-swiper .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  .dialog-image img {
    object-position: 28% 26%;
  }
  .dialog-image img {
    object-position: 50% 12%;
  }
  .wellness-swiper .swiper-button-next:after,
  .wellness-swiper .swiper-button-prev:after {
    font-size: 14px;
  }
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */
@media (max-width: 480px) {
  /* Hero Section */
  .hero {
    background-attachment: scroll;
  }

  .hero-grid {
    grid-template-areas:
      "logos logos"
      "text text"
      "form form";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0px !important;
    text-align: center;
    min-height: auto;
    height: auto;
  }

  .hero-logos {
    padding: 15px 0;
    margin-bottom: 15px;
  }

  .hero-bottom-logos {
    padding: 15px 0;
    margin-top: 15px;
  }

  .developer-logo-top,
  .aldar-logo-top {
    height: 30px;
  }
  .project-logo-top {
    height: 70px;
  }
  .zain-logo-top {
    height: 50px;
  }

  .zain-logo-bottom {
    height: 45px;
  }

  .hero-form-container {
    padding: 0;
    min-height: auto;
    height: auto;
  }

  .hero-form {
    height: auto;
    min-height: auto;
    padding: 30px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .property-facts {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 12px;
  }

  .hero-property-info {
    padding: 12px;
  }

  /* Layout Sections */
  .about-content {
    flex-direction: column;
    gap: 60px;
  }

  .about-left {
    flex: none;
  }

  .about-sidebar {
    flex: none;
  }

  .experts-content {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 50px;
  }

  .plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .payment-options {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .location-section .container {
    flex-direction: column;
  }
  .step-number {
    font-size: 4.5em;
  }
  .swiper-backface-hidden .swiper-slide {
    height: fit-content;
  }
  .step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0px;
  }

  .about-sidebar {
    position: static;
    top: auto;
  }

  .special-offer.sticky {
    position: static;
    top: auto;
  }

  /* Gallery Section */
  .gallery-content {
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 100%;
    padding: 0 20px;
  }

  .gallery-sidebar {
    order: 2;
  }

  .gallery-left {
    max-width: 100%;
    order: 1;
  }

  .gallery-tabs {
    justify-content: center;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 20px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #8b7775, #dae6dc66);
    color: white;
    border: 2px solid transparent;
  }

  .gallery-carousel {
    margin-bottom: 20px;
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-carousel .swiper {
    width: 100% !important;
    max-width: 100% !important;
    height: 450px;
    min-height: auto;
    max-height: none;
  }
  .payment-horizontal {
    margin: 1rem 0rem;
    gap: 3rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 52px;
    height: 52px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.4rem;
  }

  /* Floor Plans */
  .floor-plan-tabs {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
  }

  .floor-plan-tab {
    padding: 10px 16px;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #8b7775, #dae6dc66);
    color: white;
    border: 2px solid transparent;
  }

  .floor-plans-diagram {
    max-width: 100%;
    padding: 0 16px;
    overflow: hidden;
  }

  .floor-plan-diagram {
    height: auto;
    min-height: auto;
    max-height: none;
    display: none;
  }

  .floor-plan-diagram.active {
    display: block;
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .floor-plan-diagram img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 5px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header4 h2 {
    font-size: 2rem;
  }
  .section-header p {
    font-size: 1rem;
    color: var(--text-light);
  }
  .payment-plans {
    padding: 120px 0;
  }

  .payment-step {
    gap: 0rem;
  }
  .experts-contact {
    padding: 40px 0px;
    text-align: center;
    background: linear-gradient(
      to bottom,
      #dae6dc66,
      60%,
      #dae6dc66,
      80%,
      #8b7775
    );
    overflow-x: hidden;
  }

  .experts-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow-x: hidden;
  }

  .experts-image {
    height: 200px;
    margin-bottom: 25px;
  }

  .experts-form .btn-primary {
    margin: auto;
  }

  /* Swiper Responsiveness */
  .swiper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }

  .swiper-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }

  .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0;
  }

  .swiper-slide img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover;
    border-radius: 5px;
    max-width: 100% !important;
  }

  .exteriors-swiper,
  .interiors-swiper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .exteriors-swiper .swiper-wrapper,
  .interiors-swiper .swiper-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* About Image */
  .about-image {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .about-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
  }
  .experts-content,
  .experts-content {
    gap: 0px;
  }
  .about-content {
    gap: 0px;
    padding: 0px;
  }
  .hero-form h3 {
    font-size: 1.5rem;
  }
  .hero-consultation-form .btn-primary {
    margin: auto;
  }
  .payment-plans {
    padding: 40px 20px;
  }
  .about-project {
    padding: 40px 20px;
  }
  .experts-left h2 {
    font-size: 1.6rem;
  }

  .experts-content {
    overflow-x: hidden;
  }

  /* Experts Contact Overflow Fixes */
  .wellness-carousel {
    max-width: 100%;
    overflow: hidden;
  }

  .wellness-swiper {
    max-width: 100%;
    overflow: hidden;
  }

  .expert-feature {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .floor-plan-content {
    height: fit-content;
    min-height: auto;
  }

  /* Hero Section */
  .hero-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
  }

  .hero-subtitle {
    font-size: clamp(1.2rem, 1.8vw, 0.95rem);
    line-height: 1.2;
  }

  .property-facts {
    gap: 10px;
  }

  .fact-number {
    font-size: 1.6rem;
    color: white;
  }

  .fact-label {
    font-size: 0.8rem;
    color: white;
  }

  .hero-grid {
    padding: 20px 20px;
  }

  /* Layout Sections */
  .section-title {
    font-size: 1.6rem;
  }

  .about-description {
    font-size: 0.8rem;
  }

  .project-details,
  .special-offer {
    padding: 24px;
    margin: 15px 0;
  }

  .project-details h3 {
    text-align: center;
  }
  .project-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .project-details .detail-item {
    width: 100%;
  }

  .plan-card {
    margin: 0 10px;
  }

  .payment-card {
    padding: 30px 20px;
  }

  .experts-image {
    height: 250px;
    margin-bottom: 20px;
  }

  /* Gallery Section */
  .gallery-section {
    padding: 20px 12px;
    margin-top: 30px;
  }

  .gallery-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .gallery-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .desktop-br {
    display: none;
  }
  .tab-btn {
    flex: 1;
    min-width: 0;
    padding: 10px 20px;
    font-size: 0.7rem;
    max-width: 180px;
    background: linear-gradient(135deg, #8b7775, #dae6dc66);
    color: white;
    border: 2px solid transparent;
    /* box-shadow: 0 4px 15px rgba(73, 104, 52, 0.3); */
  }

  .gallery-carousel {
    margin-bottom: 15px;
  }

  .gallery-carousel .swiper {
    height: fit-content;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 44px;
    height: 44px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.1rem;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  /* Floor Plans */
  .floor-plans-diagram {
    padding: 24px 16px;
  }

  /* Footer */
  .footer-logo {
    justify-content: center;
  }

  .footer-links {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  /* Consultation Dialog */
  .consultation-dialog {
    padding: 16px;
  }

  .dialog-content {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 16px;
  }

  .dialog-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dialog-image {
    height: 200px;
  }

  .dialog-form {
    padding: 24px;
  }

  .dialog-form h3 {
    font-size: 1.5rem;
  }

  .dialog-form p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .consultation-form input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  .about-content {
    text-align: center;
  }

  .project-image {
    height: 200px;
    margin-bottom: 15px;
  }

  .location-section .container {
    padding: 1.5rem 1rem;
  }
  .location-section {
    padding: 20px 0;
    background: #f8f9fa;
  }
  .expert-features {
    gap: 24px;
  }
  .location-detail h3 {
    font-size: 1.9rem;
  }
  .experts-form {
    margin: 1rem;
  }
  .features-section {
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .feature-image {
    height: 200px;
    width: auto;
  }

  .feature-content {
    padding: 1rem;
  }
  /* Location Section Styles */
  .privacy-guarantee {
    font-size: 0.5rem;
  }
  .wellness-swiper {
    height: 250px;
  }

  .wellness-swiper .swiper-slide {
    height: 250px;
  }

  .experts-right {
    padding: 1rem;
  }
  .experts-left {
    padding: 1rem;
  }
}

/* ========================================
   RESIDENCE TYPES SECTION
   ======================================== */
.residence-types {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--gray-light) 0%, #e9ecef 100%);
}

.residence-types .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.residence-types .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 10px;
  font-family: "LEMONMILK-Bold", sans-serif;
}

.residence-types .section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.residence-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.residence-description {
  text-align: center;
  margin-bottom: 30px;
}

.residence-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.residence-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.residence-image-container {
  position: relative;
  border-radius: 16px;
  width: fit-content;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.residence-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.residence-image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.residence-types-grid {
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.residence-swiper {
  display: none;
}

.residence-types-grid .residence-type {
  display: block;
}

/* Desktop Grid Layout */
@media (min-width: 769px) {
  .residence-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .residence-swiper {
    display: none !important;
  }
}

.residence-type {
  background: var(--white);
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow-light);
  border: 2px solid transparent;
}

.residence-type:hover {
  box-shadow: 0 5px 15px var(--shadow-light);
  border-color: transparent;
}

.residence-type-color {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.residence-type-color.magenta {
  background: linear-gradient(135deg, #ff48e1, #ff48e1);
}

.residence-type-color.teal {
  background: linear-gradient(135deg, #03ffe0, #03ffe0);
}

.residence-type-color.azul {
  background: linear-gradient(135deg, #889eff, #889eff);
}
.residence-type-color.cyan {
  background: linear-gradient(135deg, #73ffbd, #73ffbd);
}

.residence-type-color.neon {
  background: linear-gradient(135deg, #ffff68, #ffff68);
}

.residence-type-color.foundry {
  background: linear-gradient(135deg, #f18501, #f18501);
}

.residence-type-color.grid {
  background: linear-gradient(135deg, #dc143c, #dc143c);
}

.residence-type-color.tempo {
  background: linear-gradient(135deg, #6b3ba9, #6b3ba9);
}

.residence-type h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 6px;
  font-family: "LEMONMILK-Bold", sans-serif;
}

.residence-type p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin: 0;
}

/* Mobile Responsive for Residence Types */
@media (max-width: 768px) {
  .residence-types {
    padding: 80px 0;
  }

  .residence-types .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .residence-types .section-header p {
    font-size: 0.9rem;
  }

  .residence-description {
    margin-bottom: 20px;
  }

  .residence-description p {
    font-size: 0.9rem;
    padding: 0 10px;
    line-height: 1.6;
  }

  .residence-images {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
  }

  .residence-image-container img {
    height: 250px;
  }

  .residence-types-grid {
    max-width: 100%;
    margin-top: 20px;
  }

  .residence-swiper {
    display: block !important;
    padding: 0 20px;
    height: auto;
    overflow: hidden;
    width: 100%;
  }

  .residence-swiper .swiper-slide {
    width: 120px !important;
    flex-shrink: 0;
  }

  .residence-type {
    padding: 10px 5px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .residence-type-color {
    width: 20px;
    height: 20px;
    margin-bottom: 6px;
  }

  .residence-type h4 {
    font-size: 0.8rem;
    margin-bottom: 3px;
  }

  .residence-type p {
    font-size: 0.7rem;
  }
}

/* ========================================
   PRICING SECTION STYLES
   ======================================== */
.pricing-section {
  padding: 80px 0;
  background: #dae6dc66;
}

.pricing-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid #8b7775;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-color: #dae6dc66;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #8b7775;
  margin-bottom: 20px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8b7775;
  margin-bottom: 10px;
}

.pricing-card .size {
  font-size: 1.1rem;
  color: #dae6dc66;
  font-weight: 500;
}

.discount-section {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 3px solid #8b7775;
}

.discount-section h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #8b7775;
  text-align: center;
  margin-bottom: 30px;
}

.discount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.discount-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #f8f9fa;
  border-left: 5px solid #8b7775;
  border: 2px solid #dae6dc66;
  margin-bottom: 10px;
}

.discount-type {
  font-weight: 600;
  color: #8b7775;
}

.discount-value {
  font-weight: 700;
  color: #8b7775;
}

.eoi-section {
  background: #8b7775;
  padding: 60px 50px;
  text-align: center;
  color: var(--white);
  /* margin-top: 40px; */
  position: relative;
  overflow: hidden;
}

.eoi-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(74, 104, 52, 0.9),
    rgba(218, 230, 220, 0.1)
  );
  z-index: 1;
}

.eoi-section > * {
  position: relative;
  z-index: 2;
}

.eoi-section h3 {
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
}

.eoi-amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-light);
  /* margin-bottom: 25px; */
  letter-spacing: -0.02em;
}

.special-promotion {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  opacity: 1;
  line-height: 1.2;
}

/* Residence Type Colors for Imperial Gardens */
.residence-type-color.studio {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.residence-type-color.one-bed {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.residence-type-color.two-bed {
  background: linear-gradient(135deg, #45b7d1, #96c93d);
}

.residence-type-color.total {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

/* Payment Flow Styles */
.payment-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #8b7775;
  min-width: 200px;
}

.flow-number {
  width: 50px;
  height: 50px;
  background: #8b7775;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.flow-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #8b7775;
  margin-bottom: 8px;
}

.flow-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.flow-arrow {
  font-size: 2rem;
  color: #8b7775;
  margin: 0 20px;
  font-weight: bold;
}

/* Mobile Responsive for Payment Flow */
@media (max-width: 768px) {
  .payment-flow {
    flex-direction: column;
    gap: 20px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .flow-step {
    min-width: 250px;
  }
}

/* ========================================
   AMENITIES SECTION STYLES - MOBILE FIRST
   ======================================== */

.amenities-section {
  padding: 40px 20px;
  background: linear-gradient(
    135deg,
    var(--secondary-beige) 0%,
    var(--primary-green-light) 100%
  );
  position: relative;
  overflow: hidden;
}

.amenities-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.amenities-section > * {
  position: relative;
  z-index: 2;
}

.amenities-section h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
}

.amenities-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.amenity-category {
  background: var(--white);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(74, 104, 52, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.amenity-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--primary-green-light)
  );
}

.amenity-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.amenity-category h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.amenity-category h4 i {
  font-size: 1.5rem;
  color: var(--primary-green-light);
  width: 30px;
  text-align: center;
}

.amenity-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenity-category li {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.amenity-category li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.1rem;
}

.amenity-category li:hover {
  color: var(--primary-green);
}

/* Tablet Styles */
@media (min-width: 768px) {
  .amenities-section {
    padding: 60px 40px;
  }

  .amenities-section h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .amenities-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
  }

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

  .amenity-category {
    padding: 30px;
  }

  .amenity-category h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  .amenity-category li {
    font-size: 1.05rem;
    margin-bottom: 15px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .amenities-section {
    padding: 80px 60px;
  }

  .amenities-section h3 {
    font-size: 3.2rem;
    margin-bottom: 25px;
  }

  .amenities-intro {
    font-size: 1.3rem;
    margin-bottom: 60px;
  }

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

  .amenity-category {
    padding: 35px;
  }

  .amenity-category h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .amenity-category li {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .amenities-section {
    padding: 100px 80px;
  }

  .amenities-grid {
    gap: 50px;
  }

  .amenity-category {
    padding: 40px;
  }
}

/* Animation for amenity categories */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.amenity-category {
  animation: fadeInUp 0.6s ease forwards;
}

.amenity-category:nth-child(1) {
  animation-delay: 0.1s;
}
.amenity-category:nth-child(2) {
  animation-delay: 0.2s;
}
.amenity-category:nth-child(3) {
  animation-delay: 0.3s;
}
.amenity-category:nth-child(4) {
  animation-delay: 0.4s;
}

/* Special styling for different amenity categories */
.amenity-category:nth-child(1) h4 i {
  color: #ff6b6b;
}

.amenity-category:nth-child(2) h4 i {
  color: #4ecdc4;
}

.amenity-category:nth-child(3) h4 i {
  color: #45b7d1;
}

.amenity-category:nth-child(4) h4 i {
  color: #96c93d;
}

/* ========================================
   SPECIFICATIONS LIST STYLES
   ======================================== */
.specifications-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

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

.spec-item strong {
  color: var(--white);
  font-weight: 600;
  min-width: 120px;
  flex-shrink: 0;
}

.spec-item span,
.spec-item div {
  color: var(--white);
  font-weight: 500;
}

/* ========================================
   BLURRED FLOOR PLANS STYLES
   ======================================== */
.blurred-floor-plan {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blurred-floor-plan img {
  width: 100%;
  height: auto;
  display: block;
  filter: blur(8px);
  transition: filter 0.3s ease;
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
}

.download-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  background: rgba(74, 104, 52, 0.9);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid #dae6dc66;
  min-width: 250px;
}

.download-overlay h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.download-overlay p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #dae6dc66;
  font-weight: 500;
}

.download-floor-plan-btn {
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.download-floor-plan-btn:hover {
  background: #8b7775;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.download-floor-plan-btn i {
  font-size: 1.1rem;
}

/* Floor Plan Download Section */
.floor-plan-download-section {
  text-align: center;
  padding: 20px;
}

.floor-plan-download-section .download-floor-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  width: fit-content;
}

.floor-plan-download-section .download-floor-plan-btn:hover {
  background: #8b7775;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.floor-plan-download-section .download-floor-plan-btn i {
  font-size: 1rem;
}

/* Floor Plan Dialog Styles - Now using brochure-dialog classes for consistency */

/* Golden Visa Section Styles */
.golden-visa {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.golden-visa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/green-bg.png") no-repeat center center;
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.golden-visa .container {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.golden-visa .section-header {
  text-align: center;
  /* margin-bottom: 60px; */
}

.golden-visa .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 20px;
  font-family: "LEMONMILK-Bold", sans-serif;
}

.golden-visa .section-header p {
  font-size: 1.2rem;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.golden-visa-content {
  max-width: 1000px;
  margin: 0 auto;
}

.golden-visa-content img {
  width: 100%;
  max-width: 600px;
  height: 400px;
  display: block;
  margin: 0 auto 40px auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.071);
  transition: transform 0.3s ease;
  border-radius: 5px;
}

.golden-visa-content img:hover {
  transform: scale(1.02);
}

.uae-golden-visa-card_subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.6;
  margin: 20px 0 30px 0;
  font-weight: 400;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.residency-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 30px 0 40px 0;
}

.residency-text {
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.residency-text h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-green);
  font-family: "LEMONMILK-Medium", sans-serif;
}

.residency-text p {
  font-size: 1.1rem;
  color: #000000;
  font-weight: 500;
  margin-bottom: 20px;
}

.apply-button-container {
  text-align: center;
}
.apply-button-container .btn-primary,
.gold-btn {
  background-color: #a48e15;
}

.apply-now-btn {
  background: linear-gradient(135deg, var(--primary-green), #2c5530);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(74, 104, 52, 0.3);
  font-family: "LEMONMILK-Medium", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.apply-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(74, 104, 52, 0.4);
  background: linear-gradient(135deg, #2c5530, var(--primary-green));
}

.apply-now-btn i {
  font-size: 1rem;
}

/* Golden Visa Dialog Styles */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.dialog-overlay.active {
  display: flex;
}

.golden-visa-dialog {
  background: var(--white);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  animation: dialogSlideIn 0.3s ease;
}

@keyframes dialogSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dialog-header {
  padding: 25px 30px 20px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dialog-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 0;
  font-family: "LEMONMILK-Bold", sans-serif;
}

.dialog-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dialog-close:hover {
  background: #f8f9fa;
  color: #000;
}
.golden-visa-form {
  display: flex;
  flex-direction: column;
}

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-family: "LEMONMILK-Medium", sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(74, 104, 52, 0.1);
}

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

.form-actions {
  margin-top: 20px;
  text-align: center;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-green), #2c5530);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(74, 104, 52, 0.3);
  font-family: "LEMONMILK-Medium", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(74, 104, 52, 0.4);
  background: linear-gradient(135deg, #2c5530, var(--primary-green));
}

.submit-btn i {
  font-size: 1rem;
}

.visa-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-item {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-green);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.benefit-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 10px;
  font-family: "LEMONMILK-Medium", sans-serif;
}

.benefit-item p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

/* Responsive Design for Golden Visa */
@media (max-width: 768px) {
  .residency-option {
    gap: 20px;
  }

  .residency-option h4 {
    font-size: 1.2rem;
  }

  .residency-option p {
    font-size: 1rem;
  }

  .golden-visa {
    padding: 60px 0;
  }

  .golden-visa .section-header h2 {
    font-size: 2rem;
  }

  .golden-visa .section-header p {
    font-size: 0.8rem;
  }

  .residency-options {
    gap: 25px;
    margin: 25px 0 35px 0;
  }

  .residency-text h4 {
    font-size: 1.2rem;
  }

  .residency-text p {
    font-size: 1rem;
  }

  .apply-now-btn {
    padding: 12px 35px;
    font-size: 1rem;
  }

  .visa-benefits {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }

  .benefit-item {
    padding: 25px 15px;
  }

  .benefit-icon {
    font-size: 2rem;
  }

  .benefit-item h4 {
    font-size: 1.2rem;
  }

  .golden-visa-content img {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .residency-options {
    gap: 20px;
    margin: 20px 0 30px 0;
  }

  .residency-text h4 {
    font-size: 1.1rem;
  }

  .residency-text p {
    font-size: 0.9rem;
  }

  .apply-now-btn {
    padding: 10px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .visa-benefits {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .residency-option:first-child {
    margin-bottom: 1rem;
  }
  .benefit-item {
    padding: 20px 15px;
  }

  .residency-options {
    gap: 15px;
    margin: 20px 0 30px 0;
    flex-direction: column;
  }
  .residency-text {
    flex-direction: column;
    gap: 5px;
  }
  .residency-text h4 {
    font-size: 1.3rem;
  }

  .residency-text p {
    font-size: 0.7rem;
  }
  .golden-visa-content img {
    height: 200px;
  }
  .apply-now-btn {
    padding: 8px 25px;
    font-size: 0.8rem;
  }
}
