/* =========================================================
   RODOL HOMES — style.css
   Palette: charcoal #1c1d1e / gold #c9a25e / ivory #f4f1ea
   ========================================================= */

:root {
  --dark: #1c1d1e;
  --dark-solid: #151617;
  --gold: #fe8201;
  --gold-light: #f4ab59;;
  --ivory: #f4f1ea;
  --text-dark: #2a2b2c;
  --text-muted: #6f6f6f;
  --nav-height: 84px;
  --transition: 0.35s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--ivory);
  overflow-x: hidden;
}

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

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

/* becomes opaque after scroll */
.navbar.scrolled {
  background: rgba(28, 29, 30, 0.77);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: var(--nav-height);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo svg {
  width: 42px;
  height: 42px;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  color: #fff;
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 700;
}

.brand-text strong em {
  font-style: normal;
  color: var(--gold);
}

.brand-text small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  letter-spacing: 2.5px;
}

/* desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links > a,
.nav-dropdown > a {
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links > a:hover::after,
.nav-links > a.active::after {
  width: 100%;
}

.nav-links > a:hover {
  color: var(--gold-light);
}

/* dropdown (desktop) */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 160px;
  background: var(--dark-solid);
  border-top: 2px solid var(--gold);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}

.dropdown-menu a {
  display: block;
  color: #fff;
  font-size: 14px;
  padding: 10px 22px;
  transition: color var(--transition), padding-left var(--transition);
}

.dropdown-menu a:hover {
  color: var(--gold);
  padding-left: 28px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-phone {
  color: #fff;
  font-size: 11.6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--gold-light);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 16px 30px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-gold .arrow {
  transition: transform var(--transition);
}

.btn-gold:hover .arrow {
  transform: translateX(5px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 12px 22px;
  font-size: 12px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ================= HAMBURGER (mobile) ================= */

.hamburger {
  display: none;
  position: relative;
  width: 38px;
  height: 32px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

/* First line */
.hamburger span:nth-child(1) {
  position: absolute;
  top: 8px;
  right: 0;
  width: 23px;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.35s ease;
}

/* Second line */
.hamburger span:nth-child(2) {
  position: absolute;
  top: 16px;
  right: 0;
  width: 13px;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.35s ease;
}

/* Hide third line */
.hamburger span:nth-child(3) {
  display: none;
}

/* ================= OPEN STATE ================= */

.hamburger.active span:nth-child(1) {
  top: 12px;
  width: 23px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  top: 12px;
  width: 23px;
  transform: rotate(-45deg);
}

/* ================= MOBILE ================= */

@media (max-width: 1024px) {
  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* ================= MOBILE MENU (slide from right) ================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--dark-solid);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  overflow-y: auto;
  padding: 26px 34px 40px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}

.menu-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.mobile-links {
  display: flex;
  flex-direction: column;
}

.mobile-links > a,
.mobile-drop-toggle {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color var(--transition), padding-left var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-links > a:hover,
.mobile-drop-toggle:hover {
  color: var(--gold-light);
  padding-left: 8px;
}

.mobile-drop-toggle svg {
  transition: transform var(--transition);
}

.mobile-drop-toggle.open svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.mobile-submenu.open {
  max-height: 200px;
}

.mobile-submenu a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  padding: 12px 0 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-submenu a:hover {
  color: var(--gold);
}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) 32px 120px;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-title {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(37px, 6.5vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.hero-sub {
  color: #fff;
 font-family: 'Montserrat', sans-serif;
 font-size: clamp(24px, 3.6vw, 52px);
  margin-top: 18px;
}

/* ================= HERO TYPING EFFECT ================= */

.hero-sub {
  min-height: 1.2em;
  display: flex;
  align-items: center;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: #fff;
  margin-left: 5px;
  vertical-align: middle;
  animation: typingCursorBlink 0.7s steps(1) infinite;
}

@keyframes typingCursorBlink {
  0%, 49% {
    opacity: 1;
  }

  50%, 100% {
    opacity: 0;
  }
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 44px;
  flex-wrap: wrap;
  border-radius: 4px;
}

/* floating WhatsApp / Call */
.float-actions {
  position: fixed;
  right: 26px;
  bottom: 30px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;

  background: var(--dark-solid);
  color: #fff;

  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;

  padding: 14px 24px;
  border-radius: 40px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);

  transition:
    transform var(--transition),
    background var(--transition);
}


/* ================= DESKTOP ONLY ================= */

@media (max-width: 1024px) {
  .float-actions {
    display: none;
  }
}

.float-btn:hover {
  transform: translateX(-4px);
  background: #000;
}

/* ================= FEATURES STRIP ================= */

.features {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: -68px auto 0;
  padding: 0 32px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 42px 38px;
}

.feature + .feature {
  border-left: 1px solid #ececec;
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.feature h3 {
  font-family: 'Montserrat', sans-serif;  
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
}

.feature p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ================= PROPERTY SHOWCASE ================= */

.property-showcase {
  position: relative;
  width: 100%;
  background: #f4f1ea;
  padding: 45px 42px 28px;
}

.property-grid {
  max-width: 1175px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

/* ================= PROPERTY CARD ================= */

.property-card {
  background: #fff;
  overflow: hidden;
  box-shadow: none;
  min-width: 0;
}

.property-image {
  position: relative;
  width: 100%;
  height: 152px;
  overflow: hidden;
  background: #ddd;
}

.property-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.435);
}

/* ================= BEDROOM BADGE ================= */

.bedroom-badge {
  position: absolute;
  top: 17px;
  right: 0;

  background: rgba(255, 255, 255, 0.96);
  color: #151617;

  padding: 9px 13px 8px;

  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.15px;

  white-space: nowrap;
}

/* ================= PROPERTY INFORMATION ================= */

.property-info {
  padding: 19px 30px 17px;
  background: #fff;
}

.property-info h3 {
  margin: 0 0 6px;

  color: #202122;

  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.property-location {
  margin: 0;

  color: #303132;

  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.35;
}

/* ================= DOTTED DIVIDER ================= */

.property-divider {
  width: 100%;
  margin: 17px 0 9px;

  border-top: 2px dotted #d5d5d5;
}

/* ================= PROPERTY PRICE ================= */

.property-price {
  color: #111;

  text-align: center;

  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;

  white-space: nowrap;
}

/* ================= PROPERTY SHOWCASE RESPONSIVE ================= */

@media (max-width: 1100px) {

  .property-showcase {
    padding-left: 28px;
    padding-right: 28px;
  }

  .property-grid {
    gap: 20px;
  }

  .property-info {
    padding-left: 22px;
    padding-right: 22px;
  }

  .property-price {
    font-size: 15px;
  }

  .bedroom-badge {
    font-size: 9.5px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 900px) {

  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 700px;
  }

  .property-image {
    height: 190px;
  }

  .property-info {
    padding: 20px 24px 18px;
  }

  .property-price {
    font-size: 22px;
  }
}

@media (max-width: 640px) {

  .property-showcase {
    padding: 8px 18px 24px;
  }

  .property-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
  }

  .property-image {
    height: 210px;
  }

  .property-info {
    padding: 20px 24px 18px;
  }

  .property-info h3 {
    font-size: 18px;
  }

  .property-location {
    font-size: 15px;
  }

  .property-price {
    font-size: 23px;
  }
}

/* ================= INTRO ================= */

.intro {
  text-align: center;
  padding: 110px 24px 90px;
  max-width: 860px;
  margin: 0 auto;
}

.intro-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 54px);
  margin-bottom: 20px;
}

.intro-title em {
  font-style: italic;
  color: var(--gold);
}

.intro p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ================= THE CASPIAN PROJECT ================= */

.project-feature {
  padding: 80px 32px;
  background: #ffffff;
}

.project-feature-inner {
  max-width: 1175px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}

/* Left column: image + button */
.project-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.project-image {
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.project-reserve-btn {
  align-self: flex-start;
  border: 1px solid #222;
  color: #222;
  background: transparent;
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.project-reserve-btn:hover {
  background: #222;
  color: #fff;
}

/* Right column: details + description */
.project-right {
  display: flex;
  flex-direction: column;
}

.project-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dotted #c8c8c8;
}

.detail-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
}

.detail-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #222;
  text-align: right;
  font-weight: 500;
}

.project-description {
  margin-top: 30px;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
}

/* Responsive */
@media (max-width: 900px) {
  .project-feature-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .project-left {
    flex-direction: column;
  }
  
  .project-image {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .project-feature {
    padding: 60px 20px;
  }
  
  .project-image {
    height: 240px;
  }
  
  .project-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .detail-value {
    text-align: left;
  }
}

/* ================= PROPERTY HIGHLIGHTS ================= */

.project-highlights {
  padding: 80px 32px;
  background: #f4f1ea;
}

.highlights-inner {
  max-width: 1175px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* Left column */
.highlights-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlights-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  color: #2a2b2c;
  margin-bottom: 28px;
  line-height: 1.15;
}

.highlights-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.highlights-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  color: #5a5a5a;
  font-size: 14.5px;
  line-height: 1.5;
}

.highlights-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #999;
}

.highlights-brochure-btn {
  align-self: flex-start;
  border: 1px solid #222;
  color: #222;
  background: transparent;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 1.5px;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.highlights-brochure-btn:hover {
  background: #222;
  color: #fff;
}

/* Right column */
.highlights-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.highlight-image-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.highlight-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
  .highlights-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .highlights-left {
    order: 2;
  }

  .highlights-right {
    order: 1;
  }
}

@media (max-width: 640px) {
  .project-highlights {
    padding: 60px 20px;
  }

  .highlight-image-wrapper img {
    height: 200px;
  }

  .highlights-list li {
    font-size: 13.5px;
  }
}

/* ================= PROJECT GALLERY ================= */

.project-gallery {
  padding: 80px 32px;
  background: #f3f6f7; /* White background to match Caspian section */
}

.gallery-wrapper {
  max-width: 1175px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar for clean look */
  -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 calc((100% - 40px) / 3); /* 3 items with gaps */
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/*.gallery-item {
  flex: 0 0 calc((100% - 60px) / 3); /* 4 items with 20px gap each /
  overflow: hidden;
  border-radius: 8px;*/
}

/* On tablet (≤900px): show 3 */
@media (max-width: 900px) {
  .gallery-item {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}


/* Circular Arrow Buttons */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #555;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-arrow:hover {
  background: #fff;
  border-color: #222;
  color: #222;
  transform: translateY(-50%) scale(1.1);
}

.gallery-arrow-left {
  left: -15px;
}

.gallery-arrow-right {
  right: -15px;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-item {
    flex: 0 0 calc((100% - 24px) / 3);
  }
  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .project-gallery {
    padding: 60px 20px;
  }
  .gallery-track {
    gap: 12px;
  }
  .gallery-item {
    flex: 0 0 calc((100% - 24px) / 1); /* Show 1 on mobile */
  }
  .gallery-item img {
    height: 220px;
  }
  .gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .gallery-arrow-left {
    left: -5px;
  }
  .gallery-arrow-right {
    right: -5px;
  }
}

/* ================= FLOOR PLANS & LAYOUTS ================= */

.floorplans-section {
  padding: 80px 32px 60px;
  background: #ffffff;
}

.floorplans-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: #2a2b2c;
  margin-bottom: 30px;
}

/* Tab Buttons */
.floorplans-tabs {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;           /* Prevent wrapping */
  gap: 4;                      /* Remove gap, use spacing inside buttons */
  max-width: 900px;
  margin: 0 auto 50px;
}

.floorplan-tab {
  flex: 1;                     /* Each tab expands equally */
  padding: 14px 8px;           /* Reduce horizontal padding */
  background: #f5f5f5;
  color: #555;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;             /* Slightly smaller font */
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;         /* Prevent text breaking */
  text-align: center;
}

.floorplan-tab:hover {
  background: #eaeaea;
}

.floorplan-tab.active {
  background: #fe8201; /* Your orange */
  color: #fff;
}

/* Content Area */
.floorplans-content {
  max-width: 1175px;
  margin: 0 auto;
  position: relative;
}

.floorplan-panel {
  display: none;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.floorplan-panel.active {
  display: grid;
}

/* Left Column */
.floorplan-left h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

.floorplan-left p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.floorplan-left .location-address {
  margin-top: 20px;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.location-pin {
  margin-right: 8px;
}

/* Right Column */
.floorplan-right {
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  min-height: 450px;
}

.floorplan-right img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: contain;
  display: block;
  background: #fafafa;
}

/* Map iframe */
.floorplan-right iframe {
  min-height: 450px;
  border: 0;
}

/* Footer Note */
.floorplans-note {
  text-align: center;
  margin-top: 50px;
  color: #999;
  font-size: 13px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
  .floorplan-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .floorplan-left {
    order: 2;
  }
  
  .floorplan-right {
    order: 1;
  }
  
  .floorplan-right,
  .floorplan-right img,
  .floorplan-right iframe {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .floorplans-section {
    padding: 60px 20px 40px;
  }
  
@media (max-width: 768px) {
  .floorplans-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .floorplan-tab {
    flex: 1 1 45%;            /* Two per row on tablets */
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  .floorplan-tab {
    flex: 1 1 100%;           /* Full width on small phones */
  }
}
  
  .floorplan-right,
  .floorplan-right img,
  .floorplan-right iframe {
    min-height: 250px;
  }
}

/* ================= PROPERTY MILESTONE ================= */

.milestones-section {
  padding: 80px 32px 60px;
  background: #f4f1ea;
  max-width: 1175px;
  margin: 0 auto;
}

.milestones-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: #2a2b2c;
  text-align: center;
  margin-bottom: 50px;
}

/* Scroll container */
.milestones-scroll {
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar */
.milestones-scroll::-webkit-scrollbar {
  height: 8px;
}

.milestones-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.milestones-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.milestones-scroll::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* Track */
.milestones-track {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  min-width: max-content;
  border-radius: 12px;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #fefefe;
}

/* Horizontal line */
.milestones-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #121212;
  z-index: 0;
}

/* Milestone item */
.milestone-item {
  position: relative;
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  text-align: center;
}

/* Above: text on top, image below */
.milestone-above {
  flex-direction: column;
}

.milestone-above .milestone-text {
  order: 1;
  margin-bottom: 12px;
}

.milestone-above .milestone-image {
  order: 2;
}

/* Below: image on top, text below */
.milestone-below .milestone-image {
  order: 1;
}

.milestone-below .milestone-text {
  order: 2;
  margin-top: 12px;
}

/* Dot */
.milestone-dot {
  width: 12px;
  height: 12px;
  background: #111;
  border-radius: 50%;
  position: relative;
  z-index: 5;
  margin: 12px 0;
  box-shadow: 0 0 0 3px #fff;
}

/* Image */
.milestone-image {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

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

/* Text */
.milestone-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px;
  line-height: 1.3;
}

.milestone-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Badge */
.milestone-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.milestone-badge.done {
  background: #fe8201;
  color: #fff;
}

.milestone-badge.in-progress {
  background: #1e88e5;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .milestones-section {
    padding: 60px 20px 40px;
    max-width: 100%;
  }
  
  .milestone-item {
    width: 180px;
  }
  
  .milestone-image {
    height: 110px;
  }
}
/* ================= PROPERTY VIEWER / 360 VIRTUAL TOUR ================= */

.property-viewer {
  padding: 80px 32px 60px;
  background: #ffffff;
  text-align: center;
}

.viewer-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: #2a2b2c;
  margin-bottom: 40px;
  text-align: center;
}

/* The white card frame */
.viewer-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.viewer-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  background: #111; /* Fallback background while loading */
}

.viewer-caption {
  margin-top: 24px;
  color: #666;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .property-viewer {
    padding: 60px 20px 40px;
  }

  .viewer-card {
    padding: 10px;
  }

  .viewer-title {
    margin-bottom: 30px;
  }

  .viewer-caption {
    font-size: 14px;
  }
}
/* ================= DEVELOPER'S PERSPECTIVE ================= */

.developers-perspective {
  padding: 80px 32px;
  background: #f4f1ea;
}

.developers-inner {
  max-width: 1175px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* Left column: image */
.developers-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.developers-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.developers-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Right column: text */
.developers-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.developers-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #2a2b2c;
  margin-bottom: 24px;
  line-height: 1.15;
}

.developers-paragraph {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Button */
.developers-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: #1e2a38;  /* Dark navy from reference image */
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.developers-cta-btn:hover {
  background: #0f1a24;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .developers-perspective {
    padding: 60px 24px;
  }
  
  .developers-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .developers-image-wrapper img {
    height: 300px;
  }
  
  .developers-content {
    text-align: center;
  }
  
  .developers-cta-btn {
    align-self: center;
  }
}

@media (max-width: 640px) {
  .developers-perspective {
    padding: 50px 20px;
  }
  
  .developers-image-wrapper img {
    height: 240px;
  }
  
  .developers-paragraph {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* ================= PROPERTY TYPES ================= */

.property-types {
  padding: 80px 32px;
  background: #f4f1ea;
  max-width: 1175px;
  margin: 0 auto;
}

/* Tabs */
.property-types-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 40px;
}

.property-type-tab {
  padding: 14px 28px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #777;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.property-type-tab:hover {
  color: #333;
}

.property-type-tab.active {
  color: #1c1d1e;
  border-bottom-color: #fe8201; /* orange accent */
}

/* Grid */
.property-types-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.property-types-grid.active {
  display: grid;
}

/* Card */
.property-type-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.property-type-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* Image + badges */
.property-type-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #e0e0e0;
}

.property-type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.property-type-card:hover .property-type-image img {
  transform: scale(1.03);
}

.badge-left,
.badge-right {
  position: absolute;
  top: 16px;
  padding: 8px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.badge-left {
  left: 0;
  background: #ffffff;
  color: #222;
}

.badge-right {
  right: 0;
  background: #fe8201;
  color: #1c1d1e;
}

/* Info area */
.property-type-info {
  padding: 24px;
    background: #fbf8f6;
}

.property-type-info h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  color: #2a2b2c;
  margin-bottom: 10px;
}

.property-type-desc {
  font-size: 14px;
  color: #777;
  margin-bottom: 18px;
}

/* Unit chips */
.property-type-units {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.property-type-units span {
  border: 1px solid #ddd;
  padding: 6px 12px;
  font-size: 11px;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Status */
.property-type-status {
  font-size: 13px;
  color: #666;
  margin-bottom: 22px;
}

/* Link */
.property-type-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #fe8201;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid #fe8201;
  padding-bottom: 4px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.property-type-link:hover {
  gap: 14px;
  color: #d97e1f;
}

/* Responsive */
@media (max-width: 900px) {
  .property-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .property-types {
    padding: 60px 20px;
  }

  .property-types-grid {
    grid-template-columns: 1fr;
  }

  .property-type-image {
    height: 220px;
  }

  .property-type-tab {
    padding: 12px 20px;
    font-size: 12px;
  }
}

/* ================= NEWS & UPDATES / BLOG ROLLS ================= */

.blog-rolls {
  padding: 130px 32px 60px;
  background: #ffffff;
  max-width: 1175px;
  margin: 0 auto;
}

.blog-rolls-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: #2a2b2c;
  margin-bottom: 12px;
  text-align: left;
}

.blog-rolls-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #888;
  max-width: 600px;
  margin-bottom: 45px;
  line-height: 1.5;
}

/* Grid layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 18px;
  background: #f0f0f0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.blog-card-link:hover {
  color: #fe8201;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  border-color: #222;
  color: #222;
}

.pagination-btn.active {
  background: #222;
  color: #fff;
  border-color: #222;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-rolls {
    padding: 120px 20px 40px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-rolls-title {
    font-size: 32px;
  }

  .pagination-btn {
    width: 36px;
    height: 36px;
  }
}

/* ================= BLOG PAGE / SINGLE POST ================= */

.blog-page {
  padding: 130px 32px 80px;
  background: #ffffff;
  max-width: 1175px;
  margin: 0 auto;
}

.blog-page-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Breadcrumb */
.blog-breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.blog-breadcrumb a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
  color: #222;
}

.blog-breadcrumb span {
  margin: 0 8px;
  color: #ccc;
}

/* Meta */
.blog-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta-separator {
  color: #ddd;
}

/* Title */
.blog-page-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: #222;
  line-height: 1.15;
  margin-bottom: 30px;
}

/* Hero Image */
.blog-page-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #f0f0f0;
}

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

/* Content */
.blog-page-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}

.blog-page-content p:last-child {
  margin-bottom: 0;
}

/* Divider */
.blog-page-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 50px 0 40px;
}

/* Journal title */
.journal-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 400;
  color: #222;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .blog-page {
    padding: 120px 20px 60px;
  }
  
  .blog-page-content p {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .blog-breadcrumb {
    font-size: 10px;
  }
  
  .blog-meta {
    font-size: 11px;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-page {
  padding: 130px 32px;
  background: #f8f6f2;
}

.contact-page-inner {
  max-width: 1175px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Left: Form */
.contact-form-side {
  padding: 50px 50px;
  display: flex;
  flex-direction: column;
}

.contact-form-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-form-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400;
  color: #222;
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-form-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 36px;
}

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

.contact-form-row {
  display: flex;
  gap: 20px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 16px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #333;
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #999;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #fe8201;
}

.contact-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  cursor: pointer;
}

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

.contact-submit-btn {
  align-self: flex-start;
  background: #1c1d1e;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 18px 36px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.contact-submit-btn:hover {
  background: #fe8201;
}

/* Right: Image + Info */
.contact-info-side {
  position: relative;
  min-height: 100%;
}

.contact-info-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.contact-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(28, 29, 30, 0.92);
  color: #fff;
  padding: 30px 30px 26px;
}

.contact-office-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #fff;
}

.contact-office-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #ddd;
  line-height: 1.5;
  margin-bottom: 18px;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #eee;
  line-height: 1.4;
}

.contact-info-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-list a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-list a:hover {
  color: #fe8201;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-page-inner {
    grid-template-columns: 1fr;
  }
  
  .contact-form-side {
    padding: 110px 30px;
  }
  
  .contact-info-side {
    min-height: 400px;
    position: relative;
  }
}

@media (max-width: 640px) {
  .contact-page {
    padding: 90px 20px;
  }
  
  .contact-form-side {
    padding: 30px 20px;
  }
  
  .contact-form-row {
    flex-direction: column;
  }
  
  .contact-form-row .contact-input,
  .contact-form-row .contact-select {
    width: 100%;
  }
  
  .contact-submit-btn {
    width: 100%;
    text-align: center;
  }
}

/* ================= BOOKING MODAL ================= */

.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  background: #1c1d1e;
  color: #fff;
  max-width: 640px;
  width: 100%;
  padding: 40px;
  border-radius: 8px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.booking-modal-overlay.show .booking-modal {
  transform: translateY(0);
}

/* Close button */
.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #aaa;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}

.booking-modal-close:hover {
  color: #fe8201;
}

/* Headings */
.booking-modal-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fe8201;
  margin-bottom: 10px;
}

.booking-modal-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}

.booking-modal-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #bbb;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* Form layout */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-form-row {
  display: flex;
  gap: 16px;
}

.booking-input,
.booking-textarea,
.booking-select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  outline: none;
  transition: border-color 0.3s ease;
  text-transform: uppercase;
}

.booking-input::placeholder,
.booking-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.booking-input:focus,
.booking-textarea:focus,
.booking-select:focus {
  border-color: #fe8201;
}

/* Date picker styling */
.booking-date {
  color-scheme: dark; /* Makes the native calendar icon white */
}

.booking-date::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

/* Select styling */
.booking-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  cursor: pointer;
}

.booking-select option {
  background: #1c1d1e;
  color: #fff;
}

.booking-textarea {
  resize: vertical;
  min-height: 70px;
}

/* Submit button */
.booking-submit-btn {
  background: #fe8201;
  color: #1c1d1e;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}

.booking-submit-btn:hover {
  background: #f4ab59;
  transform: translateY(-2px);
}

/* Footer text */
.booking-modal-footer {
  margin-top: 20px;
  font-size: 12px;
  color: #888;
  text-align: center;
}

/* Responsive */
@media (max-width: 640px) {
  .booking-modal {
    padding: 30px 20px;
  }

  .booking-form-row {
    flex-direction: column;
    gap: 14px;
  }

  .booking-modal-title {
    font-size: 24px;
  }

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

/* ================= MOBILE MENU BOOK NOW BUTTON ================= */

.mobile-menu-cta {
  margin-top: auto;          /* Pushes button to the bottom if menu is flex column */
  padding-top: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 30px;
}

.mobile-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 20px;
  font-size: 13px;
  letter-spacing: 1.5px;
}

.mobile-book-btn .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 10px;
}

.mobile-book-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ================= HERO BADGES ================= */

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.badge-dark {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dark .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fe8201;
}

.badge-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.badge-gold {
  background: #fe8201;
  color: #1c1d1e;
}

/* ================= HERO LOCATION ================= */

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
}

.hero-location svg {
  color: #fe8201;
  flex-shrink: 0;
}

/* ================= HERO TITLE ================= */

.hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-title em {
  font-style: normal;
  color: #fe8201;
}

/* ================= HERO SUBTITLE ================= */

.hero-subtitle {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 600px;
}

/* ================= HERO STATS ================= */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #bbb;
}

.stat-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 24px);
  color: #fff;
}

/* ================= HERO CTA BUTTON ================= */

.hero-cta-btn {
  background: #fff;
  color: #1c1d1e;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-cta-btn:hover {
  background: #fe8201;
  color: #fff;
}

.hero-cta-btn .arrow {
  transition: transform 0.3s ease;
}

.hero-cta-btn:hover .arrow {
  transform: translateX(5px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .hero-badges {
    gap: 8px;
  }

  .hero-badge {
    padding: 6px 12px;
    font-size: 10px;
  }

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

  .hero-location {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ================= PROPERTY GRID — 2 COLUMNS ================= */

.property-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1000px;
  gap: 40px;
}

/* Larger imagery for a more premium two-up layout */
.property-grid-2 .property-image {
  height: 320px;
}

/* Title sizing for project cards */
.property-grid-2 .property-info h3 {
  font-size: 22px;
  letter-spacing: 0.2px;
}

.property-grid-2 .property-location {
  font-size: 15px;
  color: #555;
}

.property-grid-2 .property-price {
  font-size: 20px;
  font-weight: 700;
  color: #1c1d1e;
}

/* Slightly taller padding for breathing room */
.property-grid-2 .property-info {
  padding: 24px 32px 26px;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .property-grid-2 {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 480px;
  }

  .property-grid-2 .property-image {
    height: 220px;
  }

  .property-grid-2 .property-info h3 {
    font-size: 19px;
  }

  .property-grid-2 .property-price {
    font-size: 18px;
  }
}

.property-showcase-heading {
  max-width: 1000px;
  margin: 0 auto 40px;
  text-align: center;
}

.property-showcase-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 400;
  color: #2a2b2c;
  margin-bottom: 12px;
}

.property-showcase-heading p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #777;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================= EXPLORE PROJECTS MODAL ================= */

.projects-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.projects-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.projects-modal {
  background: #ffffff;
  max-width: 760px;
  width: 100%;
  max-height: 92vh;
  overflow: visible;              /* ← no clipping here anymore */
  border-radius: 10px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  padding: 44px 54px 34px;
}

.projects-modal-overlay.show .projects-modal {
  transform: translateY(0);
}

/* Close button */
.projects-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: #666;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 5;
}

.projects-modal-close:hover { color: #fe8201; }

/* ================= CAROUSEL VIEWPORT (NEW — handles clipping) ================= */
.projects-carousel-viewport {
  overflow: hidden;               /* clips the second slide so it doesn't peek */
  border-radius: 6px;
  width: 100%;
}

/* Carousel track — holds the two slides side by side */
.projects-carousel {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.project-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Slide image */
.project-slide-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
}

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

/* Badges */
.project-badge {
  position: absolute;
  top: 16px;
  padding: 9px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}
.project-badge.badge-left  { left: 0;  background: #ffffff; color: #222; }
.project-badge.badge-right { right: 0; background: #d4b483; color: #1c1d1e; }

/* Slide body */
.project-slide-body { padding: 26px 0 0; }

.project-slide-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #1c1d1e;
  margin-bottom: 10px;
}

.project-slide-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.5;
}

.project-unit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.project-unit-chips span {
  border: 1px solid #ddd;
  padding: 7px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  color: #444;
  font-weight: 500;
  white-space: nowrap;
}

.project-slide-status {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #666;
  margin-bottom: 22px;
}

.project-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #1c1d1e;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1.5px solid #1c1d1e;
  transition: color 0.3s ease, gap 0.3s ease, border-color 0.3s ease;
}
.project-slide-link:hover {
  color: #fe8201;
  border-color: #fe8201;
  gap: 16px;
}

/* Nav arrows */
.projects-modal-nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #1c1d1e;
  color: #1c1d1e;
  cursor: pointer;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.projects-modal-nav:hover {
  background: #fe8201;
  color: #fff;
  border-color: #fe8201;
}
.projects-modal-prev { left: 12px; }
.projects-modal-next { right: 12px; }

/* Dots */
.projects-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.project-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.project-dot.active { background: #fe8201; transform: scale(1.2); }

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .projects-modal {
    padding: 36px 18px 26px;
    max-height: 95vh;
    overflow-y: auto;
    max-width: 100%;
  }

  .projects-carousel-viewport { overflow: visible; }

  .projects-carousel {
    transform: none !important;
    flex-direction: column;
    gap: 36px;
  }

  .project-slide {
    flex: 0 0 auto;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: projectSlideIn 0.7s ease forwards;
  }
  .project-slide[data-index="1"] { animation-delay: 0.15s; }

  @keyframes projectSlideIn {
    to { opacity: 1; transform: translateY(0); }
  }

  .project-slide-image { height: 210px; }
  .projects-modal-nav, .projects-dots { display: none; }
}

.brand-logo img {
  width: 115px;
  height: 115px;
  display: block;
  object-fit: contain;
}

/* Footer logo sizing */
.footer-brand .brand-logo img {
  width: 140px;
  height: 140px;
  display: block;
  object-fit: contain;
  margin: -45px 0 45px;

}

.footer-brand .brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  margin-right: 0;   /* was 3px, safe to reset */
}

/* Desktop only — space to the right of the navbar logo */
@media (min-width: 1025px) {
  .navbar .brand-logo img {
    margin-right: 200px;
  }
}

/* Mobile menu logo sizing */
.mobile-menu .brand-logo img {
  width: 100px;
  height: 100px;
  display: block;
  object-fit: contain;
      margin: -4px 1px 1px -16px;

}

/* Even tighter on very small phones */
@media (max-width: 400px) {
  .mobile-menu .brand-logo img {
    width: 85px;
    height: 85px;
  }
}

/* ===== FOOTER MOBILE — logo, description & alignment fix ===== */
@media (max-width: 620px) {

  /* Scale footer logo down for mobile */
  .footer-brand .brand-logo img {
    width: 130px;
    height: 130px;
    margin: -4px 1px 1px -16px;
        text-align: center;
 
  }

  /* Center the logo within the footer grid */
  .footer-brand .brand {
    justify-self: left;
    text-align: left;
  }

  /* Remove the negative margin that was causing overlap */
  .footer-description {
    margin-top: 0 !important;
    padding-top: 12px;
    text-align: center;
  }
}


/* ================= GOOGLE REVIEW BAND ================= */
.review-band {
  background: linear-gradient(135deg, #1c1d1e 0%, #2a2b2c 100%);
  padding: 50px 32px;
  position: relative;
  overflow: hidden;
}

.review-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247,154,51,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.review-band-inner {
  max-width: 1175px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.review-band-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}

.review-band-left h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.2px;
}

.review-band-left p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #bdbdbd;
  margin: 0;
}

.review-band-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1c1d1e;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 26px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.review-band-btn:hover {
  background: #f79a33;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(247, 154, 51, 0.35);
}

@media (max-width: 768px) {
  .review-band { padding: 40px 20px; }
  .review-band-inner { flex-direction: column; text-align: center; }
  .review-stars { justify-content: center; }
  .review-band-left h3 { font-size: 19px; }
  .review-band-btn { width: 100%; justify-content: center; }
}

.review-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 40px;
  padding: 6px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #444;
  margin-bottom: 16px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.review-chip-stars {
  color: #f79a33;
  letter-spacing: 1px;
}

.review-chip a {
  color: #1c1d1e;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #1c1d1e;
}

.review-chip a:hover {
  color: #f79a33;
  border-color: #f79a33;
}

/* Empty state */
.blog-empty {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #777;
  padding: 40px 0;
}

/* Make the whole image clickable */
.blog-card-image-link {
  display: block;
  text-decoration: none;
}

/* Title link inherits the card's typography */
.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: #f79a33;
}

/* Disabled pagination arrows */
.pagination-btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Pagination buttons as anchors */
a.pagination-btn {
  text-decoration: none;
  color: inherit;
}

a.pagination-btn:hover {
  border-color: #222;
  color: #222;
}

/* ================= BLOG SHARE BAR ================= */

.blog-share {
  margin: 44px 0 0;
  padding: 26px 0 6px;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.blog-share-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
}

.blog-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #1c1d1e;
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
}

.share-btn svg { flex: 0 0 auto; }

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Brand hovers */
.share-x:hover     { background: #1c1d1e; color: #fff; border-color: #1c1d1e; }
.share-fb:hover    { background: #1877F2; color: #fff; border-color: #1877F2; }
.share-wa:hover    { background: #25D366; color: #fff; border-color: #25D366; }
.share-copy:hover  { background: #f79a33; color: #fff; border-color: #f79a33; }
.share-native:hover{ background: #1c1d1e; color: #fff; border-color: #1c1d1e; }

.share-copy.is-copied {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

/* Responsive */
@media (max-width: 640px) {
  .blog-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .blog-share-buttons {
    width: 100%;
    gap: 8px;
  }
  .share-btn {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
    padding: 11px 12px;
    font-size: 12px;
  }
}

/* ================= ADMIN LOGIN FLOATING TAB ================= */

.admin-tab {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9997;                         /* below modals, above page content */

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 22px 14px 18px;

  background: #1c1d1e;
  color: #ffffff;

  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;

  border-radius: 40px 0 0 40px;          /* rounded on the left only */
  box-shadow: -8px 10px 26px rgba(0, 0, 0, 0.28);

  /* Start hidden off-screen to the right */
  transform: translate(100%, -50%);
  opacity: 0;

  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.45s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  will-change: transform, opacity;
}

/* Revealed state — after 10s, or when cursor nears the right edge */
.admin-tab.show {
  transform: translate(0, -50%);
  opacity: 1;
}

/* Hover polish */
.admin-tab:hover {
  background: #f79a33;
  color: #1c1d1e;
  box-shadow: -10px 12px 30px rgba(247, 154, 51, 0.35);
}

.admin-tab:hover .admin-tab-icon svg {
  stroke: #1c1d1e;
}

/* Icon wrapper */
.admin-tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: currentColor;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.admin-tab:hover .admin-tab-icon {
  transform: rotate(-8deg) scale(1.08);
}

.admin-tab-icon svg {
  transition: stroke 0.3s ease;
}

/* Optional label nudge on hover */
.admin-tab-label {
  transition: transform 0.3s ease;
}

.admin-tab:hover .admin-tab-label {
  transform: translateX(2px);
}

/* Mobile — smaller pill, sits at bottom-right for easier tapping */
@media (max-width: 768px) {
  .admin-tab {
    top: auto;
    bottom: 30px;
    right: 0;
    padding: 12px 18px 12px 14px;
    font-size: 12px;
    transform: translate(100%, 0);
    border-radius: 30px 0 0 30px;
  }

  .admin-tab.show {
    transform: translate(0, 0);
  }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .admin-tab,
  .admin-tab-icon,
  .admin-tab-label {
    transition: none !important;
  }
}

/* ================= SECTION PLACEHOLDERS ================= */

.page-section {
  padding: 120px 32px;
  text-align: center;
  background: #fff;
}

.page-section.alt {
  background: var(--ivory);
}

.page-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  margin-bottom: 16px;
}

.page-section p {
  color: var(--text-muted);
  font-size: 16px;
}

.page-section a {
  color: var(--gold);
  font-weight: 600;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer-wrap {
  width: 100%;
  background: #fff;
}

/* ================= NEWSLETTER ================= */

.footer-newsletter {
  position: relative;

  /*
   * White area.
   * The form is positioned absolutely so that it can
   * cross over into the dark footer below.
   */
  height: 237px;

  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  z-index: 5;
}

/* Newsletter heading */

.footer-newsletter h3 {
  margin: 0;

  color: #151515;

  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;

  /*
   * Keeps the heading vertically centered
   * inside the white section.
   */
  transform: translateY(-18px);
}

/* ================= NEWSLETTER FORM ================= */

.footer-newsletter-form {
  position: absolute;

  left: 50%;
  bottom: -35px;

  transform: translateX(-50%);

  width: min(722px, calc(100% - 40px));
  height: 70px;

  display: grid;
  grid-template-columns: 1fr 202px;

  align-items: stretch;

  background: #fff;

  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.12),
              0 12px 32px rgba(0, 0, 0, 0.16);

  z-index: 29;
}
/* ================= EMAIL FIELD ================= */

.footer-email-wrap {
  display: flex;
  align-items: center;

  gap: 13px;

  padding: 0 34px;

  min-width: 0;

  background: #f4f1ea;
}

.footer-email-icon {
  width: 19px;
  height: 19px;

  flex: 0 0 19px;

  color: #858585;
}

.footer-email {
  width: 100%;

  border: 0;
  outline: 0;

  background: transparent;

  color: #333;

  font: inherit;
  font-size: 16px;
}

.footer-email::placeholder {
  color: #8a8a8a;
  opacity: 1;
}

/* ================= SUBSCRIBE BUTTON ================= */

.footer-subscribe {
  border: 20;

  background: #202020;
  color: #dfdfdf;

  font: inherit;
  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: background 0.25s ease;
}

.footer-subscribe:hover {
  background: #111;
}

/* ================= MAIN DARK FOOTER ================= */

.footer-main {
  /*
   * Extra top padding makes room for the newsletter
   * form which overlaps this section.
   */
  min-height: 397px;

  box-sizing: border-box;

  background: #333333;
  color: #fff;

  padding: 151px 6% 72px;
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto;

  display: grid;

  grid-template-columns: 1.55fr 1fr 1fr 1.15fr;

  column-gap: 74px;
}

.footer-brand .brand {
  display: inline-flex;
  align-items: left;

  text-decoration: none;
  color: #fff;
}

.footer-brand .brand-logo {
  width: 48px;
  height: 48px;

  display: inline-flex;

  margin-right: 49px;
}

.footer-brand .brand-logo svg {
  width: 48px;
  height: 48px;
}

.footer-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 0.7;
}

.footer-brand .brand-text strong {
  color: #fff;
  font-size: 23px;
  letter-spacing: -0.3px;
}

.footer-brand .brand-text em {
  font-style: normal;
  font-weight: 490;
}

.footer-brand .brand-text small {
  margin-top: 7px;

  color: #a7a7a7;

  font-size: 9px;
  letter-spacing: 1.2px;
}

.footer-description {
  max-width: 215px;

  margin: -29px 0 45px;

  color: #bdbdbd;

  font-size: 14px;
  line-height: 1.55;
}

.projecthead-description {
  max-width: 645px;

  margin: 22px 0 45px;

  color: #efefef;

  font-size: 16px;
  line-height: 1.55;
}

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

.footer-social {
  width: 39px;
  height: 39px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fe8201;
  background: #202020;

  text-decoration: none;
}

.footer-social svg {
  width: 25px;
  height: 25px;
}

.footer-column h3 {
  margin: 0 0 29px;

  color: #fff;

  font-size: 17px;
  line-height: 1;
  font-weight: 600;
}

.footer-column a,
.footer-column p {
  display: block;

  margin: 0 0 24px;

  color: #c5c5c5;

  font-size: 14px;
  line-height: 0.95;

  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-contact p {
  max-width: 190px;
}

/* Mobile newsletter heading hidden by default */
.newsletter-mobile {
  display: none;
}

/* =========================================================
   BAYSTAR KILIMANI — RESPONSIVE FOOTER
   Append AFTER your desktop footer CSS.
   Desktop styles are not touched.
   ========================================================= */

/* ================= FOOTER TABLET ================= */

@media (max-width: 900px) {

  .footer-main {
    padding: 90px 6% 60px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 55px;
    column-gap: 45px;
  }

  /* Description directly below logo, centered */
  .footer-description {
    text-align: center;
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ================= FOOTER MOBILE ================= */

@media (max-width: 620px) {

  /* ---------- Newsletter (unchanged) ---------- */

  .footer-newsletter {
    height: 220px;
  }

  .footer-newsletter h3 {
    width: calc(100% - 35px);
    font-size: 15px;
    line-height: 1.4;
    transform: translateY(-20px);
  }

  .footer-newsletter-form {
    width: calc(100% - 32px);
    height: 62px;
    grid-template-columns: 1fr 120px;
    bottom: -31px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  }



/* Mobile devices */
@media (max-width: 620px) {

  .newsletter-desktop {
    display: none;
  }

  .newsletter-mobile {
    display: block;
    margin: 0 auto;
    width: calc(100% - 35px);
    text-align: center;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
  }
}

  .footer-email-wrap {
    padding: 0 15px;
    gap: 9px;
  }

  .footer-email-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
  }

  .footer-email {
    font-size: 13px;
  }

  .footer-subscribe {
    font-size: 14px;
  }

  /* ---------- Main footer ---------- */

  .footer-main {
    padding: 100px 24px 50px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    text-align: center;
    column-gap: 60px;
    row-gap: 44px;
  }

  /* Flatten .footer-brand so logo / description / socials
     become grid items we can reorder freely */
  .footer-brand {
    display: contents;
    text-align: center;
  }

  /* 1 — Logo + wordmark, centred, full row */
  .footer-brand .brand {
    order: 1;
    grid-column: 1 / -1;
    justify-self: center;
    text-align: left;
  }

  /* 2 — Description directly below logo,
         centred symmetrically across the full footer */
  .footer-description {
    order: 2;
    grid-column: 1 / -1;
    margin-top: -20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-self: center;
    width: 100%;
  }

  /* 3 — Our Projects | Our Services side by side */
  .footer-column {
    order: 3;
    text-align: center;
  }

  .footer-column h3 {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .footer-column a {
    font-size: 13px;
  }

  /* 4 — Contacts */
  .footer-contact {
    order: 4;
    grid-column: 1 / -1;
    text-align: center;
  }

  /* 5 — Socials last, centred */
  .footer-socials {
    order: 5;
    grid-column: 1 / -1;
    justify-self: center;
    justify-content: center;
    text-align: center;
  }

  /* Slightly larger social icons on mobile */
  .footer-social {
    width: 46px;
    height: 46px;
  }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

/* large tablets / small laptops */

@media (max-width: 1180px) {

  .nav-links {
    gap: 22px;
  }

  .nav-phone {
    display: none;
  }
}

@media (max-width: 1024px) {

  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .features {
    margin-top: -40px;
  }

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

  .feature + .feature {
    border-left: none;
    border-top: 1px solid #ececec;
  }

  .feature {
    padding: 34px 30px;
  }
}

/* phones */

@media (max-width: 640px) {

  :root {
    --nav-height: 72px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding: calc(var(--nav-height) + 30px) 22px 140px;
  }

  .hero-kicker {
    font-size: 10.5px;
    letter-spacing: 3px;
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 340px;
  }

  .float-actions {
    right: 16px;
    bottom: 30px;
  }

  .float-btn {
    padding: 12px 20px;
    font-size: 11px;
  }

  .features {
    padding: 0 18px;
  }

  .intro {
    padding: 80px 20px 60px;
  }

  .page-section {
    padding: 90px 22px;
  }
}

/* very small phones */

@media (max-width: 400px) {

  .hero-buttons .btn {
    max-width: 100%;
  }
}

/* ================= VIEW PROJECT LINK ================= */

.property-view-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;

  margin-top: 17px;
  padding-bottom: 9px;

  color: #111;
  text-decoration: none;

  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1;

  transform: translateY(0);

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/* Underline */
.property-view-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: #111;

  transition:
    width 0.35s ease,
    background 0.3s ease;
}

/* Arrow */
.property-arrow {
  display: inline-block;

  font-size: 16px;
  line-height: 10px;
  font-weight: 400;

  transform: translateX(0);

  transition:
    transform 0.35s ease;
}

/* ================= HOVER ================= */

.property-view-link:hover {
  color: #c9a25e;
  transform: translateY(-5px);
}

.property-view-link:hover::after {
  width: calc(100% + 14px);
  background: #c9a25e;
}

.property-view-link:hover .property-arrow {
  transform: translateX(7px);
}

#locations {
  position: relative;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url('assets/images/location.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

#locations h2,
#locations p {
  color: white;
}