/* ===== Forbes Property Network - Component Styles ===== */

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white);
  z-index: 1000;
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--medium-gray);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo img {
  height: 44px;
  transition: height var(--transition-base);
}

.nav.scrolled .nav-logo img {
  height: 36px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

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

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--white);
    padding: 2rem;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform var(--transition-base);
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-link { font-size: 1.1rem; }
  .nav-phone { font-size: 1rem; }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-height));
  padding-top: var(--nav-height);
}

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

.hero-bg .img-placeholder {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(15, 36, 64, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: var(--space-3xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(198, 168, 75, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero h1 span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ===== LEAD FORM ===== */
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
  max-width: 400px;
  width: 100%;
}

.lead-form-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.lead-form-card .form-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--medium-gray);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 168, 75, 0.1);
}

.form-input.error {
  border-color: var(--error);
}

.form-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 0.25rem;
  display: none;
}

.form-input.error + .form-error {
  display: block;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-consent {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: var(--space-sm);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--success);
}

.form-success h4 {
  color: var(--success);
  margin-bottom: 0.5rem;
}

/* Hero form floating on desktop */
.hero-form-wrapper {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

@media (max-width: 1024px) {
  .hero-form-wrapper {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: var(--space-xl);
  }
}

/* ===== HIGHLIGHTS STRIP ===== */
.highlights-strip {
  background: var(--navy);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.highlights-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.highlight-card:hover {
  background: rgba(198, 168, 75, 0.1);
  border-color: var(--gold);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
}

.highlight-text {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 2rem;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-type {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pricing-area {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--light-gray);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== AMENITY CARDS ===== */
.amenity-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-2xl);
}

.amenity-tab {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--white);
  color: var(--text-secondary);
}

.amenity-tab:hover,
.amenity-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.amenity-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.amenity-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.amenity-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(198, 168, 75, 0.1), rgba(198, 168, 75, 0.05));
  border-radius: var(--radius-md);
  color: var(--gold);
  flex-shrink: 0;
}

.amenity-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ===== LOCATION CARDS ===== */
.location-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
}

.location-time {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.location-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.location-distance {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item .img-placeholder {
  width: 100%;
  height: 100%;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 54, 93, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(26, 54, 93, 0.5);
}

.gallery-item-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
  color: var(--gold);
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--gold);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

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

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: var(--space-md);
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.15);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
  border-radius: var(--radius-md);
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== POPUP MODAL ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.popup-overlay.show {
  display: flex;
}

.popup-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: popupSlideUp 0.4s ease;
}

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

.popup-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: var(--space-xl);
  text-align: center;
}

.popup-header h3 {
  color: var(--white);
  margin-bottom: 0.25rem;
}

.popup-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.popup-body {
  padding: var(--space-xl);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  transition: background var(--transition-fast);
  z-index: 1;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--navy);
  padding: 0.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.sticky-mobile-cta-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.sticky-mobile-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.6rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
}

.sticky-mobile-btn svg {
  width: 20px;
  height: 20px;
}

.sticky-mobile-btn:first-child { background: var(--gold); }
.sticky-mobile-btn:nth-child(2) { background: #25D366; }

@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 72px; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 997;
  transition: all var(--transition-base);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

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

/* ===== COOKIE CONSENT ===== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.cookie-bar.show {
  display: flex;
}

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

.cookie-accept {
  padding: 0.5rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cookie-bar {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== COUNTER ANIMATION ===== */
.counter-section {
  background: var(--off-white);
  padding: var(--space-2xl) 0;
}

.counter-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3xl);
}

.counter-item {
  text-align: center;
}

.counter-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
}

.counter-value .counter-suffix {
  color: var(--gold);
}

.counter-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* ===== DEVELOPER SECTION ===== */
.developer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.developer-logo {
  width: 180px;
  height: 80px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 168, 75, 0.1), transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cta-contact-item svg {
  color: var(--gold);
}

/* ===== TABS ===== */
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-full);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.tab-btn:hover,
.tab-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.tab-btn.active {
  background: var(--gold);
  color: var(--white);
}

.tab-content {
  display: none;
}

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

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-image {
  aspect-ratio: 16/9;
}

.blog-card-body {
  padding: var(--space-lg);
}

.blog-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0.5rem 0;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ===== ENHANCED IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc4 40%, #e8e4dc 100%);
  background-size: 400% 400%;
  animation: shimmer 3s ease infinite;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 200px;
  color: #9e9a93;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: sweep 2.5s ease-in-out infinite;
}
.img-placeholder::after {
  content: '📷';
  font-size: 2rem;
  opacity: 0.35;
  display: block;
}
@keyframes shimmer {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes sweep {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.img-placeholder.tall { min-height: 400px; }
.img-placeholder.hero-img { min-height: 500px; border-radius: var(--radius-lg); }
.img-placeholder.card-img { min-height: 220px; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.img-placeholder.avatar { width: 80px; height: 80px; min-height: 80px; border-radius: 50%; flex-shrink: 0; }
.img-placeholder.logo-img { height: 60px; min-height: 60px; width: 160px; border-radius: var(--radius-sm); }
.img-placeholder.floor-plan { min-height: 380px; background: linear-gradient(135deg, #f0ede6 0%, #e0dbd1 100%); }
.img-placeholder.map-placeholder { min-height: 380px; background: linear-gradient(135deg, #dde8e4 0%, #c8dcd5 40%, #dde8e4 100%); }
.img-placeholder.gallery-placeholder { min-height: 260px; }
.img-placeholder.video-placeholder { min-height: 400px; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: rgba(255,255,255,0.5); }
.img-placeholder.video-placeholder::after { content: '▶'; font-size: 3rem; color: var(--gold); opacity: 0.9; }

/* ===== FEATURE SHOWCASE GRID ===== */
.feature-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.feature-showcase-image { position: relative; min-height: 480px; }
.feature-showcase-content { padding: 3rem; background: var(--off-white); display: flex; flex-direction: column; justify-content: center; }
.feature-showcase-content h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 1rem; }
.feature-showcase.reverse { direction: rtl; }
.feature-showcase.reverse > * { direction: ltr; }

/* ===== STAT CARD ===== */
.stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; text-align: center; box-shadow: var(--shadow-md); border-top: 3px solid var(--gold); }
.stat-card-value { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-card-label { font-size: 0.85rem; color: var(--text-light); margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===== ICON CARD ===== */
.icon-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); transition: all var(--transition-base); border: 1px solid var(--medium-gray); }
.icon-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.icon-card-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.icon-card-icon svg { color: var(--gold); }
.icon-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--navy); }
.icon-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== PROCESS STEP ===== */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; }
.process-step { text-align: center; padding: 2rem 1.5rem; position: relative; }
.process-step::after { content: '→'; position: absolute; right: -0.5rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--gold); }
.process-step:last-child::after { display: none; }
.step-number { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--white); font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.step-title { font-weight: 600; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.4rem; }
.step-desc { font-size: 0.8rem; color: var(--text-secondary); }

/* ===== MEDIA / VIDEO CARD ===== */
.media-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; cursor: pointer; }
.media-card-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); transition: background var(--transition-base); }
.media-card-play:hover { background: rgba(0,0,0,0.5); }
.play-btn { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 12px rgba(198,168,75,0.25); transition: transform var(--transition-base); }
.play-btn:hover { transform: scale(1.1); }

/* ===== COMPARISON TABLE ===== */
.comparison-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.comparison-table th { background: var(--navy); color: var(--white); padding: 1rem 1.25rem; text-align: left; font-weight: 600; }
.comparison-table th.highlight { background: var(--gold); color: var(--navy); }
.comparison-table td { padding: 0.875rem 1.25rem; border-bottom: 1px solid var(--medium-gray); font-size: 0.9rem; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--off-white); }
.comparison-table .check { color: var(--success); font-weight: 700; }
.comparison-table .cross { color: var(--error); }

/* ===== QUOTE BLOCK ===== */
.quote-block { border-left: 4px solid var(--gold); padding: 1.5rem 2rem; background: var(--off-white); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 2rem 0; }
.quote-text { font-family: var(--font-heading); font-size: 1.2rem; color: var(--navy); line-height: 1.6; }
.quote-source { font-size: 0.875rem; color: var(--text-light); margin-top: 0.75rem; }

/* ===== BADGE ROW ===== */
.badge-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 1rem; background: var(--off-white); border: 1px solid var(--medium-gray); border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 500; color: var(--navy); }
.badge.gold { background: rgba(198,168,75,0.1); border-color: var(--gold); color: var(--gold-dark); }
.badge.green { background: rgba(5,150,105,0.08); border-color: var(--success); color: var(--success); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
.contact-info-card { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-info-item { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(198,168,75,0.2); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.contact-info-value { color: var(--gold); font-weight: 500; margin-top: 0.25rem; }

/* ===== AMENITY DETAIL CARD ===== */
.amenity-detail-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: all var(--transition-base); }
.amenity-detail-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.amenity-detail-card-image { height: 200px; }
.amenity-detail-card-body { padding: 1.5rem; }
.amenity-detail-card-body h4 { font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.amenity-detail-card-body p { font-size: 0.875rem; color: var(--text-secondary); }

/* ===== FLOOR PLAN TAB ===== */
.floor-plan-container { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.floor-plan-specs { background: var(--off-white); border-radius: var(--radius-lg); padding: 2rem; }
.spec-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--medium-gray); font-size: 0.9rem; }
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--text-secondary); }
.spec-value { font-weight: 600; color: var(--navy); }


/* ── Stock image loaded state ───────────────────────────────── */
.img-placeholder.stock-loaded {
  animation: none !important;
  background-color: transparent !important;
}
.img-placeholder.stock-loaded::after {
  display: none !important;
}
