/* ========================================
   PROJECT DETAIL PAGE STYLES
   Al Durra National Real Estate
   Premium, High-End Design
   ======================================== */

/* ========================================
   1. HERO SECTION
   ======================================== */
.project-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}

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

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

.project-hero-fallback {
  display: none;
}

.project-hero-video:not([src]),
.project-hero-video.error + .project-hero-fallback {
  display: block;
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

/* Video Controls */
.video-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.video-control-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.video-control-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.video-control-btn svg {
  width: 18px;
  height: 18px;
  color: white;
}

/* YouTube Background Styles */
.project-hero-media.youtube-bg {
  overflow: hidden;
}

.project-hero-media.youtube-bg .youtube-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.project-hero-media.youtube-bg .youtube-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 aspect ratio */
  min-width: 100%;
  height: 100vh;
  min-height: 56.25vw; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Show fallback image by default, hide when video loads */
.project-hero-media.youtube-bg .project-hero-fallback {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.project-hero-media.youtube-bg.video-loaded .project-hero-fallback {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Mobile fallback - just show the image */
.project-hero-media.youtube-bg.mobile-fallback .youtube-container {
  display: none;
}

.project-hero-media.youtube-bg.mobile-fallback .project-hero-fallback {
  display: block;
  opacity: 1;
}

/* Hero Content */
.project-hero-grid {
  position: relative;
  z-index: 5;
}

.project-hero-content {
  max-width: 800px;
}

.project-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.project-breadcrumb a {
  transition: color 0.3s var(--ease-smooth);
}

.project-breadcrumb a:hover {
  color: var(--durra-orange);
}

.project-breadcrumb .current {
  color: rgba(255, 255, 255, 0.9);
}

.project-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 127, 80, 0.2);
  border: 1px solid rgba(255, 127, 80, 0.4);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--durra-orange);
  margin-bottom: 1.5rem;
}

.project-hero-badge .badge-icon svg {
  width: 14px;
  height: 14px;
}

.project-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.project-hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.project-hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.project-hero-location svg {
  width: 20px;
  height: 20px;
  color: var(--durra-orange);
}

/* Hero CTAs */
.project-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s var(--ease-smooth);
}

.hero-cta-btn svg {
  width: 18px;
  height: 18px;
}

.hero-cta-btn.primary {
  background: var(--durra-red);
  color: white;
}

.hero-cta-btn.primary:hover {
  background: var(--durra-orange);
  transform: translateY(-2px);
}

.hero-cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-cta-btn.tertiary {
  background: transparent;
  color: white;
  padding-left: 0;
}

.hero-cta-btn.tertiary:hover {
  color: var(--durra-orange);
}

.hero-cta-btn.tertiary svg {
  transition: transform 0.3s var(--ease-smooth);
}

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

/* ========================================
   2. PROJECT SNAPSHOT
   ======================================== */
.project-snapshot {
  padding: 0;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.snapshot-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .snapshot-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .snapshot-container {
    grid-template-columns: repeat(5, 1fr);
  }
}

.snapshot-card {
  background: white;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease-smooth);
}

.snapshot-card:hover {
  background: var(--durra-cream);
}

.snapshot-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.08);
  border-radius: 12px;
}

.snapshot-icon svg {
  width: 24px;
  height: 24px;
  color: var(--durra-red);
}

.snapshot-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.snapshot-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.snapshot-value.status-completed {
  color: #228B22;
}

/* ========================================
   3. PROJECT OVERVIEW - REIMAGINED
   ======================================== */
.project-overview-new {
  padding: 0;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--durra-red);
  margin-bottom: 1rem;
}

[data-theme="dark"] .section-label {
  color: var(--durra-orange);
}

.section-title {
  margin-bottom: 2rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* Overview Main Section */
.overview-main {
  padding: 6rem 0;
  background: var(--bg-light);
}

.overview-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overview-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.overview-lead strong {
  color: var(--durra-red);
  font-weight: 600;
}

.overview-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.overview-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--durra-red);
  transition: all 0.3s var(--ease-smooth);
}

.overview-cta:hover {
  color: var(--durra-orange);
  gap: 1rem;
}

.overview-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-smooth);
}

.overview-cta:hover svg {
  transform: translateX(5px);
}

/* Image Stack */
.overview-image-col {
  padding: 2rem 0;
}

.overview-image-stack {
  position: relative;
  height: 100%;
  min-height: 450px;
}

.overview-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

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

.overview-img.primary {
  width: 70%;
  height: 350px;
  top: 0;
  left: 0;
  z-index: 2;
}

.overview-img.secondary {
  width: 55%;
  height: 280px;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.overview-img-badge {
  position: absolute;
  bottom: 30%;
  left: 55%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: var(--durra-red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(165, 42, 42, 0.4);
}

.overview-img-badge .badge-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  line-height: 1;
}

.overview-img-badge .badge-text {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

/* Features Grid */
.overview-features {
  padding: 5rem 0;
  background: var(--durra-cream);
}

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

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s var(--ease-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.feature-card:hover .feature-image img {
  transform: scale(1.1);
}

.feature-content {
  padding: 1.5rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.08);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--durra-red);
}

.feature-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Stats Banner */
.overview-stats-banner {
  padding: 4rem 0;
  background: var(--bg-dark);
}

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

@media (min-width: 768px) {
  .stats-banner-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-banner-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-banner-item:last-child {
  border-right: none;
}

.stat-banner-item .stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--durra-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-banner-item .stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Adjustments for Overview */
@media (max-width: 1023px) {
  .overview-main {
    padding: 4rem 0;
  }

  .overview-image-col {
    order: -1;
    margin-bottom: 2rem;
  }

  .overview-image-stack {
    min-height: 350px;
  }

  .overview-img.primary {
    width: 65%;
    height: 280px;
  }

  .overview-img.secondary {
    width: 50%;
    height: 220px;
  }

  .overview-img-badge {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 50%;
  }

  .overview-img-badge .badge-number {
    font-size: 2rem;
  }

  .overview-img-badge .badge-text {
    font-size: 0.55rem;
  }
}

@media (max-width: 640px) {
  .overview-image-stack {
    min-height: 300px;
  }

  .overview-img.primary {
    width: 75%;
    height: 240px;
  }

  .overview-img.secondary {
    width: 55%;
    height: 180px;
  }

  .stat-banner-item {
    border-right: none;
  }
}

/* ========================================
   4. IMAGE GALLERY
   ======================================== */
.project-gallery {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.gallery-header {
  margin-bottom: 2rem;
}

.project-gallery .section-title {
  color: var(--text-light);
}

/* Gallery Tabs */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.gallery-tab {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.gallery-tab:hover {
  color: var(--text-dark);
  border-color: rgba(0, 0, 0, 0.3);
}

.gallery-tab.active {
  background: var(--durra-red);
  border-color: var(--durra-red);
  color: white;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 50%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease-smooth);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-caption {
  font-size: 0.9rem;
  color: white;
  margin-bottom: 0.5rem;
}

.gallery-zoom-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s var(--ease-smooth);
}

.gallery-item:hover .gallery-zoom-btn {
  opacity: 1;
  transform: scale(1);
}

.gallery-zoom-btn:hover {
  background: var(--durra-red);
}

.gallery-zoom-btn svg {
  width: 18px;
  height: 18px;
  color: white;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.lightbox-close:hover {
  background: var(--durra-red);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  color: white;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.lightbox-nav:hover {
  background: var(--durra-red);
}

.lightbox-nav.prev {
  left: 2rem;
}

.lightbox-nav.next {
  right: 2rem;
}

.lightbox-nav svg {
  width: 28px;
  height: 28px;
  color: white;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  text-align: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-caption {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   5. FLOOR PLANS
   ======================================== */
.project-floorplans {
  padding: 8rem 0;
}

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

.floorplans-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Floor Plan Filters */
.floorplan-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.floorplan-filters .filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.floorplan-filters label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.floorplan-filters select {
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  transition: all 0.3s var(--ease-smooth);
}

.floorplan-filters select:focus {
  outline: none;
  border-color: var(--durra-red);
}

/* Floor Plan Grid */
.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .floorplan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .floorplan-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.floorplan-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s var(--ease-smooth);
}

.floorplan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floorplan-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.floorplan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

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

.availability {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
}

.availability.available {
  background: rgba(34, 139, 34, 0.9);
  color: white;
}

.availability.limited {
  background: rgba(255, 165, 0, 0.9);
  color: white;
}

.availability.sold {
  background: rgba(165, 42, 42, 0.9);
  color: white;
}

.floorplan-info {
  padding: 1.5rem;
}

.floorplan-info h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.floorplan-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.floorplan-specs .spec {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.spec-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.floorplan-cta {
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  background: var(--durra-red);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.floorplan-cta:hover:not(:disabled) {
  background: var(--durra-orange);
}

.floorplan-cta:disabled {
  background: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}

/* ========================================
   6. AMENITIES
   ======================================== */
.project-amenities {
  padding: 8rem 0;
  background: var(--durra-cream);
}

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

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

@media (min-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.amenity-category {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.category-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--durra-red);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.amenity-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s var(--ease-smooth);
}

.amenity-item:hover {
  background: var(--durra-cream);
}

.amenity-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.08);
  border-radius: 10px;
  flex-shrink: 0;
}

.amenity-icon svg {
  width: 20px;
  height: 20px;
  color: var(--durra-red);
}

.amenity-item span {
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* ========================================
   7. LOCATION - REIMAGINED
   ======================================== */
.project-location-new {
  padding: 0;
}

/* Location Hero with Full Map */
.location-hero {
  position: relative;
  height: 500px;
}

.location-map-full {
  position: absolute;
  inset: 0;
}

.location-map-full iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Floating Info Card */
.location-info-card {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 280px;
  z-index: 10;
}

.location-pin-badge {
  width: 50px;
  height: 50px;
  background: var(--durra-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.location-pin-badge svg {
  width: 24px;
  height: 24px;
  color: white;
}

.location-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--durra-red);
  margin-bottom: 0.5rem;
}

.location-address {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.location-subaddress {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.location-coords {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  font-family: var(--font-mono, monospace);
  color: var(--text-muted);
  padding: 0.75rem;
  background: var(--durra-cream);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.location-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  background: var(--durra-red);
  border-radius: 8px;
  transition: all 0.3s var(--ease-smooth);
}

.location-directions-btn:hover {
  background: var(--durra-orange);
  transform: translateY(-2px);
}

.location-directions-btn svg {
  width: 16px;
  height: 16px;
}

/* Connectivity Section */
.location-connectivity {
  padding: 5rem 0;
  background: var(--bg-light);
}

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

.connectivity-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Transport Grid */
.transport-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .transport-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.transport-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s var(--ease-smooth);
}

.transport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.transport-card.highlight {
  background: var(--bg-dark);
}

.transport-card.highlight h4,
.transport-card.highlight .place {
  color: white;
}

.transport-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.transport-icon.walking {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

.transport-icon.driving {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
}

.transport-icon.highlight {
  background: rgba(255, 255, 255, 0.1);
  color: var(--durra-orange);
}

.transport-icon svg {
  width: 28px;
  height: 28px;
}

.transport-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.transport-card.highlight h4 {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.transport-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.transport-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.transport-list .place {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.transport-list .time {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--durra-red);
  background: rgba(165, 42, 42, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.transport-card.highlight .transport-list .time {
  background: rgba(255, 255, 255, 0.1);
  color: var(--durra-orange);
}

/* Location Features Banner */
.location-features-banner {
  padding: 3rem 0;
  background: var(--durra-cream);
}

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

@media (min-width: 768px) {
  .location-features-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.location-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon-circle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon-circle svg {
  width: 24px;
  height: 24px;
  color: var(--durra-red);
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.feature-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive Adjustments for Location */
@media (max-width: 1023px) {
  .location-hero {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .location-map-full {
    position: relative;
    height: 350px;
  }

  .location-info-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    max-width: none;
    margin: -2rem 1.5rem 0;
    z-index: 10;
  }
}

@media (max-width: 640px) {
  .location-map-full {
    height: 280px;
  }

  .location-info-card {
    margin: -1.5rem 1rem 0;
    padding: 1.5rem;
  }

  .location-coords {
    flex-direction: column;
    gap: 0.25rem;
  }

  .location-feature {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* ========================================
   8. TIMELINE
   ======================================== */
.project-timeline {
  padding: 8rem 0;
  background: var(--durra-pearl);
}

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

.project-timeline .section-title {
  color: var(--text-dark);
}

.project-timeline .section-label {
  color: var(--durra-red);
}

.timeline-container {
  position: relative;
}

.timeline-progress {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
}

.timeline-progress-bar {
  height: 100%;
  background: var(--durra-orange);
  transition: width 1s var(--ease-out-expo);
}

.timeline-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.timeline-item {
  flex: 1;
  min-width: 180px;
  max-width: 200px;
  text-align: center;
}

.timeline-marker {
  width: 42px;
  height: 42px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.timeline-item.completed .timeline-marker {
  background: var(--durra-orange);
  border-color: var(--durra-orange);
}

.timeline-item.current .timeline-marker {
  box-shadow: 0 0 0 8px rgba(255, 127, 80, 0.3);
}

.timeline-marker svg {
  width: 20px;
  height: 20px;
  color: white;
}

.timeline-content {
  text-align: center;
}

.timeline-date {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--durra-orange);
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================================
   9. WHY CHOOSE
   ======================================== */
.project-why-choose {
  padding: 8rem 0;
}

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

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

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s var(--ease-smooth);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.why-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(165, 42, 42, 0.25);
  transition: all 0.3s var(--ease-smooth);
}

.why-card:hover .why-number {
  color: var(--durra-red);
  transform: scale(1.1);
}

.why-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.25rem;
}

.why-icon svg {
  width: 100%;
  height: 100%;
  color: var(--durra-red);
}

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   10. TESTIMONIALS
   ======================================== */
.project-testimonials {
  padding: 8rem 0;
  background: var(--durra-pearl);
}

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

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  display: none;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.testimonial-card.active {
  display: block;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: #FFD700;
}

.testimonial-content blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

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

.author-info {
  text-align: left;
}

.author-name {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
}

.author-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Testimonials Navigation */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--durra-red);
  border-color: var(--durra-red);
}

.testimonial-prev:hover svg,
.testimonial-next:hover svg {
  color: white;
}

.testimonial-prev svg,
.testimonial-next svg {
  width: 20px;
  height: 20px;
  color: var(--text-dark);
  transition: color 0.3s var(--ease-smooth);
}

.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.testimonials-dots .dot.active {
  background: var(--durra-red);
  transform: scale(1.2);
}

/* ========================================
   11. DEVELOPER - LIGHT VERSION
   ======================================== */
.project-developer-light {
  padding: 5rem 0;
  background: var(--bg-light);
}

/* Developer Intro */
.developer-intro {
  display: flex;
  flex-direction: column;
}

.project-developer-light .section-title {
  color: var(--text-dark);
}

.project-developer-light .developer-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Developer CTA Light */
.developer-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--durra-red);
  transition: all 0.3s var(--ease-smooth);
}

.developer-cta-light:hover {
  color: var(--durra-orange);
  gap: 1rem;
}

.developer-cta-light svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-smooth);
}

.developer-cta-light:hover svg {
  transform: translateX(5px);
}

/* Mini Stats */
.developer-stats-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.dev-mini-stats {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.mini-stat {
  text-align: center;
}

.mini-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--durra-red);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.mini-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Trust Cards Grid */
.trust-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .trust-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-smooth);
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trust-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.08);
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.trust-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--durra-red);
}

.trust-card-content h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.trust-card-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Responsive Adjustments for Developer Light */
@media (max-width: 1023px) {
  .developer-stats-col {
    justify-content: flex-start;
    margin-top: 2rem;
  }
}

@media (max-width: 640px) {
  .project-developer-light {
    padding: 4rem 0;
  }

  .dev-mini-stats {
    width: 100%;
    justify-content: space-around;
    padding: 1.25rem 1rem;
  }

  .mini-stat-number {
    font-size: 1.75rem;
  }

  .trust-card {
    padding: 1.5rem;
  }
}

/* Other Projects Section - Light Version */
.developer-projects-light {
  padding: 3rem 0 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.other-projects-header-light {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.other-projects-header-light h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
}

.view-all-link-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--durra-red);
  transition: all 0.3s var(--ease-smooth);
}

.view-all-link-light:hover {
  color: var(--durra-orange);
}

.view-all-link-light svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-smooth);
}

.view-all-link-light:hover svg {
  transform: translateX(5px);
}

/* Other Projects Grid - Light */
.other-projects-grid-light {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .other-projects-grid-light {
    grid-template-columns: repeat(3, 1fr);
  }
}

.other-project-card-light {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-smooth);
}

.other-project-card-light:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.other-project-card-light .other-project-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.other-project-card-light .other-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.other-project-card-light:hover .other-project-image img {
  transform: scale(1.1);
}

.other-project-card-light .other-project-image.placeholder-image {
  background: var(--durra-pearl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.other-project-card-light .other-project-image.placeholder-image .placeholder-icon {
  width: 60px;
  height: auto;
  object-fit: contain;
  opacity: 0.6;
}

.other-project-card-light:hover .other-project-image.placeholder-image .placeholder-icon {
  transform: scale(1.1);
  opacity: 0.8;
}

.other-project-info-light {
  padding: 1.25rem;
}

.other-project-info-light .project-type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--durra-red);
  margin-bottom: 0.5rem;
}

.other-project-info-light h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Responsive Adjustments for Other Projects Light */
@media (max-width: 1023px) {
  .other-projects-header-light {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ========================================
   12. DOWNLOADS
   ======================================== */
.project-downloads {
  padding: 8rem 0;
  background: var(--durra-pearl);
}

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

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

@media (min-width: 768px) {
  .downloads-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.download-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: all 0.3s var(--ease-smooth);
}

.download-card:hover {
  border-color: var(--durra-red);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.download-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.08);
  border-radius: 12px;
  flex-shrink: 0;
}

.download-icon svg {
  width: 24px;
  height: 24px;
  color: var(--durra-red);
}

.download-info {
  flex: 1;
}

.download-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.download-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.download-meta {
  font-size: 0.75rem;
  color: var(--durra-red);
  font-weight: 500;
}

.download-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--durra-cream);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
}

.download-card:hover .download-btn {
  background: var(--durra-red);
}

.download-btn svg {
  width: 20px;
  height: 20px;
  color: var(--durra-red);
  transition: color 0.3s var(--ease-smooth);
}

.download-card:hover .download-btn svg {
  color: white;
}

/* ========================================
   13. FAQ
   ======================================== */
.project-faq {
  padding: 8rem 0;
  background: var(--durra-cream);
}

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

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

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-smooth);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ========================================
   14. ENQUIRY SECTION
   ======================================== */
.project-enquiry {
  padding: 8rem 0;
  background: var(--durra-pearl);
}

.enquiry-content .section-title {
  margin-bottom: 1.5rem;
}

.enquiry-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.enquiry-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.contact-item svg {
  width: 22px;
  height: 22px;
  color: var(--durra-red);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-item .label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-item a {
  font-size: 1rem;
  color: var(--text-dark);
  transition: color 0.3s var(--ease-smooth);
}

.contact-item a:hover {
  color: var(--durra-red);
}

.trust-signals {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: #228B22;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Enquiry Form */
.enquiry-form-container {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.enquiry-form .form-group {
  margin-bottom: 1.25rem;
}

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

@media (min-width: 640px) {
  .enquiry-form .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.enquiry-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--durra-cream);
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s var(--ease-smooth);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  background: white;
  border-color: var(--durra-red);
  box-shadow: 0 0 0 3px rgba(165, 42, 42, 0.1);
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 120px;
}

.enquiry-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.submit-btn.primary-btn {
  background: var(--durra-red);
  color: white;
}

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

.submit-btn.secondary-btn {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.submit-btn.secondary-btn:hover {
  border-color: var(--durra-red);
  color: var(--durra-red);
}

.submit-btn svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   15. FOOTER CTA
   ======================================== */
.project-footer-cta {
  position: relative;
  padding: 10rem 0;
  text-align: center;
  overflow: hidden;
}

.footer-cta-bg {
  position: absolute;
  inset: 0;
}

.footer-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.footer-cta-content {
  position: relative;
  z-index: 1;
}

.footer-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-align: center;
}

.footer-cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  text-align: center;
}

.footer-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s var(--ease-smooth);
}

.footer-cta-btn.primary {
  background: var(--durra-red);
  color: white;
}

.footer-cta-btn.primary:hover {
  background: var(--durra-orange);
  transform: translateY(-3px);
}

.footer-cta-btn.secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.footer-cta-btn svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   FLOATING CTA BUTTONS
   ======================================== */
.floating-cta {
  position: fixed;
  left: 1.5rem;
  bottom: 6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 100;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s var(--ease-smooth);
}

.floating-btn svg {
  width: 18px;
  height: 18px;
}

.floating-btn span {
  display: none;
}

@media (min-width: 768px) {
  .floating-btn span {
    display: inline;
  }
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.floating-btn.enquiry-btn {
  background: var(--durra-red);
}

.floating-btn.whatsapp-btn {
  background: #25D366;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
  .project-hero {
    min-height: 90vh;
    padding-bottom: 3rem;
  }

  .video-controls {
    bottom: 1rem;
    right: 1rem;
  }

  .project-hero-ctas {
    flex-direction: column;
  }

  .hero-cta-btn {
    justify-content: center;
  }

  .snapshot-container {
    margin-top: -2rem;
  }

  .project-overview,
  .project-gallery,
  .project-floorplans,
  .project-amenities,
  .project-location,
  .project-timeline,
  .project-why-choose,
  .project-testimonials,
  .project-developer,
  .project-downloads,
  .project-faq,
  .project-enquiry {
    padding: 5rem 0;
  }

  .timeline-items {
    flex-direction: column;
    align-items: center;
  }

  .timeline-item {
    max-width: 100%;
  }

  .timeline-progress {
    display: none;
  }

  .developer-stats {
    gap: 2rem;
  }

  .floating-cta {
    right: 1rem;
    bottom: 5rem;
  }

  .enquiry-form-container {
    padding: 1.5rem;
  }
}

/* ==============================================
   RTL OVERRIDES FOR PROJECT DETAIL PAGE
   ============================================== */

/* RTL overrides for project detail page */
.project-hero-content {
  text-align: right;
}

.project-info-list {
  text-align: right;
}

.project-info-item {
  flex-direction: row-reverse;
}

.project-description {
  text-align: right;
}

.gallery-nav {
  flex-direction: row-reverse;
}

.gallery-prev svg,
.gallery-next svg {
  transform: scaleX(-1);
}

.other-project-info {
  text-align: right;
}/* =========================================================
   PROJECT DETAIL — brief summary layout (pd-*)
   Added 2026-06-21: description • key stats • gallery • map
   ========================================================= */
.pd-hero{position:relative;min-height:68vh;display:flex;align-items:flex-end;padding:0 0 4rem;background-size:cover;background-position:center;color:#fff;overflow:hidden}
.pd-hero::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.1) 0%,rgba(0,0,0,.5) 55%,rgba(0,0,0,.82) 100%);z-index:0}
.pd-hero--placeholder{background:linear-gradient(135deg,#2a0f0f 0%,#5a1a1a 55%,#A52A2A 100%)}
.pd-hero .grid{position:relative;z-index:1;width:100%}
.pd-back{display:inline-flex;align-items:center;gap:.5rem;color:rgba(255,255,255,.85);text-decoration:none;font-size:.9rem;margin-bottom:1.5rem;transition:color .3s}
.pd-back:hover{color:#fff}
.pd-badges{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:1.1rem}
.pd-badge{display:inline-block;padding:.35rem .9rem;border:1px solid rgba(255,255,255,.38);border-radius:100px;font-size:.76rem;letter-spacing:.04em;text-transform:uppercase;color:#fff;background:rgba(255,255,255,.08)}
.pd-hero .project-status{align-self:center}
.pd-title{font-family:var(--font-display);font-size:clamp(2.4rem,6vw,4.5rem);line-height:1.05;margin:0;font-weight:600}
.pd-section{padding:5rem 0}
.pd-overview .grid{row-gap:2.5rem}
.pd-desc p{font-size:1.05rem;line-height:1.9;color:var(--text-muted);margin:1rem 0 0}
.pd-stats{align-self:start;background:var(--durra-pearl,#F0EDE8);border-radius:14px;padding:1.5rem 1.9rem}
.pd-stat{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:.9rem 0;border-bottom:1px solid rgba(0,0,0,.08)}
.pd-stat:last-child{border-bottom:0}
.pd-stat-label{font-size:.8rem;text-transform:uppercase;letter-spacing:.05em;color:var(--text-muted)}
.pd-stat-value{font-weight:600;color:var(--text-dark);text-align:end}
.pd-gallery{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1rem;margin-top:2rem}
.pd-gallery-item{display:block;overflow:hidden;border-radius:12px;aspect-ratio:4/3}
.pd-gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.19,1,.22,1)}
.pd-gallery-item:hover img{transform:scale(1.05)}
.pd-map{margin-top:2rem;border-radius:14px;overflow:hidden;box-shadow:0 10px 40px rgba(0,0,0,.08)}
.pd-map iframe{display:block;width:100%;height:460px;border:0}
@media(max-width:640px){.pd-hero{min-height:56vh}.pd-section{padding:3.5rem 0}.pd-map iframe{height:340px}}

/* Disable gallery hover zoom animation (requested) */
.gallery-item img{transition:none !important}
.gallery-item:hover img{transform:none !important}

/* Gallery: fully remove hover animation; whole item is clickable -> lightbox */
.gallery-item{cursor:pointer}
.gallery-item img{transition:none !important}
.gallery-item:hover img{transform:none !important}
.gallery-item-overlay{display:none !important}
/* Gallery no-crop variant: each item keeps its own aspect ratio (set inline); images never cropped */
.gallery-grid.gallery-nocrop{grid-template-columns:1fr;align-items:start;gap:1rem}
.gallery-grid.gallery-nocrop .gallery-item{border-radius:8px}
.gallery-grid.gallery-nocrop .gallery-item img{width:100%;height:100%;object-fit:contain}
@media(min-width:768px){.gallery-grid.gallery-nocrop{grid-template-columns:repeat(2,1fr)}.gallery-grid.gallery-nocrop .gallery-item.wide{grid-column:1 / -1}}
/* Location/map section: breathing space top & bottom */
.project-location-new{padding:6rem 0 !important}
