/*
Theme Name: Architex
Theme URI: https://architex.com
Author: Architex
Description: A premium Singapore real estate website theme for new launch condos and properties.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: architex
*/

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --nav-bg: #e8ddd0;
  --dark-bg: #111111;
  --dark-bg-2: #1a1a1a;
  --dark-bg-3: #222222;
  --card-bg: #1c1c1c;
  --gold: #c4a76e;
  --gold-light: #d4b87a;
  --gold-dark: #a8895a;
  --white: #ffffff;
  --off-white: #f5f0eb;
  --black: #000000;
  --text-muted: #aaaaaa;
  --border-color: #333333;
  --border-gold: rgba(196, 167, 110, 0.3);
  --contact-bg: #3a3a3a;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', Arial, sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--dark-bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

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

ul, ol { list-style: none; }

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

.section-padding { padding: 60px 0; }

/* ===========================
   HEADER / NAVIGATION
=========================== */
#site-header {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--black);
  text-transform: uppercase;
  text-decoration: none;
}
.site-logo:hover { color: var(--black); opacity: 0.8; }

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

.main-nav a {
  font-size: 14px;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active { border-bottom-color: var(--black); color: var(--black); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--nav-bg);
  flex-direction: column;
  padding: 16px 32px 24px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
}

/* ===========================
   BREADCRUMB
=========================== */
.breadcrumb {
  padding: 16px 32px;
  background: var(--white);
  font-size: 12px;
  color: #666;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.breadcrumb a { color: #333; text-decoration: underline; }
.breadcrumb span { color: #333; }

/* ===========================
   HERO SECTIONS
=========================== */
.hero-dark {
  background: var(--dark-bg);
  padding: 60px 32px 40px;
}

.hero-dark .hero-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: normal;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-dark .hero-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.hero-dark .hero-subtitle a {
  color: var(--text-muted);
  text-decoration: none;
}
.hero-dark .hero-subtitle a:hover { color: var(--gold); }

/* Contact page hero */
.hero-light {
  background: var(--white);
  padding: 60px 32px 40px;
}
.hero-light .hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -1px;
}

/* ===========================
   PROPERTIES LISTING PAGE
=========================== */
.properties-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  background: var(--dark-bg);
}

.properties-sidebar {
  padding: 24px 16px 24px 32px;
  border-right: 1px solid var(--border-color);
  min-height: 600px;
}

.sidebar-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
  text-transform: uppercase;
}

.sidebar-nav a {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.sidebar-nav a:hover,
.sidebar-nav a.active { color: var(--gold); }
.sidebar-nav a.all-link { font-weight: 600; color: var(--white); }

.properties-main {
  padding: 32px;
}

.products-header {
  margin-bottom: 24px;
}

.products-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.products-count {
  font-size: 13px;
  color: var(--text-muted);
}

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

.property-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  position: relative;
}
.property-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }

.property-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.property-card:hover .property-card-image img { transform: scale(1.05); }

.property-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-size: 11px;
  padding: 4px 10px;
  letter-spacing: 0.5px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.property-card-body {
  padding: 16px;
}

.property-card-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
}
.property-card:hover .property-card-name { color: var(--gold); }

.property-card-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===========================
   NEWS / RESEARCH LISTING
=========================== */
.news-hero {
  background: var(--white);
  text-align: center;
  padding: 48px 32px 36px;
}
.news-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.news-hero p { font-size: 14px; color: #666; max-width: 600px; margin: 0 auto; }

.news-grid-section {
  background: var(--dark-bg-2);
  padding: 40px 32px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  display: block;
  text-decoration: none;
  transition: var(--transition);
}
.news-card:hover { opacity: 0.85; }

.news-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 16px;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.04); }

.news-card-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card-excerpt {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   SINGLE NEWS/RESEARCH ARTICLE
=========================== */
.article-layout {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 32px 64px;
}

.article-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 24px;
}

.article-content {
  color: #333;
  line-height: 1.8;
  font-size: 15px;
}
.article-content h2 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin: 36px 0 16px;
}
.article-content p { margin-bottom: 16px; }
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 13px;
}
.article-content table th,
.article-content table td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: left;
}
.article-content table th { background: #f5f5f5; font-weight: 600; }
.article-content table tr:nth-child(even) { background: #fafafa; }

.article-wrapper { background: var(--white); }

/* ===========================
   PROPERTY DETAIL PAGE
=========================== */
.property-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--dark-bg);
}

.property-gallery { position: relative; }

.gallery-main {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #000;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.gallery-main img.active { display: block; }

/* Video in gallery */
.gallery-main .gallery-video {
  position: relative;
  width: 100%;
  height: 100%;
}
.gallery-main .gallery-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-nav-btn:hover { background: rgba(0,0,0,0.8); }
.gallery-nav-btn.prev { left: 12px; }
.gallery-nav-btn.next { right: 12px; }

.gallery-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px 16px;
  background: var(--dark-bg-3);
  overflow-x: auto;
  scrollbar-width: thin;
}
.gallery-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 45px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: var(--transition);
}
.gallery-thumb.active,
.gallery-thumb:hover { opacity: 1; border-color: var(--gold); }

.property-desc {
  padding: 24px 32px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
  background: var(--dark-bg);
}
.property-desc p { margin-bottom: 12px; }
.property-desc p.chinese { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Property Info Panel */
.property-info-panel {
  background: var(--dark-bg);
  padding: 32px;
  border-left: 1px solid var(--border-color);
}

.property-name {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.property-subtitle-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Accordion sections */
.accordion-section {
  border-top: 1px solid var(--border-color);
}
.accordion-section:last-child { border-bottom: 1px solid var(--border-color); }

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}
.accordion-header:hover { color: var(--gold); }

.accordion-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: inherit;
}

.accordion-icon {
  font-size: 20px;
  color: var(--text-muted);
  transition: var(--transition);
  line-height: 1;
}
.accordion-section.open .accordion-icon { transform: rotate(45deg); color: var(--gold); }

.accordion-content {
  display: none;
  padding-bottom: 20px;
}
.accordion-section.open .accordion-content { display: block; }

/* Project Details Table */
.project-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.project-table td {
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  vertical-align: top;
}
.project-table td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  width: 40%;
  background: rgba(255,255,255,0.03);
}
.project-table a { color: var(--gold); }

/* Pricing Tables */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-top: 8px;
}
.pricing-table th,
.pricing-table td {
  padding: 8px 10px;
  border: 1px solid var(--border-color);
  text-align: left;
}
.pricing-table th {
  background: rgba(255,255,255,0.05);
  font-size: 11px;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.pricing-table .price-col { color: var(--gold); font-weight: 600; }
.pricing-table .type-col { font-weight: 600; }
.pricing-table a { color: var(--gold); }

.pricing-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* Developer section */
.developer-entry { margin-bottom: 24px; }
.developer-images { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.developer-images img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.developer-name { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.developer-desc { font-size: 12px; color: var(--text-muted); line-height: 1.7; }

/* Features section */
.features-grid { display: grid; gap: 16px; }
.feature-item img { width: 100%; }
.feature-caption { font-size: 12px; font-weight: 600; color: var(--gold); margin-top: 6px; }
.feature-sub { font-size: 11px; color: var(--text-muted); }

/* ===========================
   YOU MAY ALSO LIKE
=========================== */
.related-section {
  background: var(--dark-bg);
  padding: 48px 32px;
}

.related-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.related-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.related-card {
  width: 180px;
  text-decoration: none;
  display: block;
}
.related-card:hover { opacity: 0.85; }

.related-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 10px;
}
.related-card-image img { width: 100%; height: 100%; object-fit: cover; }
.related-card-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

/* ===========================
   CONTACT SECTION (Footer Form)
=========================== */
.contact-section {
  background: var(--contact-bg);
  padding: 56px 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-info-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  margin-top: 20px;
}
.contact-info-label:first-of-type { margin-top: 0; }

.contact-info-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.contact-social { display: flex; gap: 16px; margin-top: 20px; }
.contact-social a {
  color: var(--text-muted);
  font-size: 18px;
  transition: var(--transition);
}
.contact-social a:hover { color: var(--gold); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.form-label .required { color: var(--gold); }

.form-input,
.form-textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 12px 14px;
  font-size: 13px;
  font-family: var(--font-sans);
  transition: var(--transition);
  border-radius: 0;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.3); }

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

.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}
.checkbox-label { font-size: 13px; color: var(--text-muted); }

.submit-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
  font-family: var(--font-sans);
}
.submit-btn:hover { background: var(--gold); }

.form-success {
  background: rgba(196, 167, 110, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 18px;
  font-size: 13px;
  display: none;
}
.form-error-msg {
  color: #e74c3c;
  font-size: 12px;
}

/* ===========================
   CONTACT PAGE (standalone)
=========================== */
.contact-page-layout {
  background: var(--white);
  padding: 40px 32px 60px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
}

.contact-page-form-title,
.contact-page-info-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}

.contact-page-form .form-input,
.contact-page-form .form-textarea {
  background: var(--white);
  border: 1px solid #ccc;
  color: var(--black);
}
.contact-page-form .form-input:focus,
.contact-page-form .form-textarea:focus {
  border-color: var(--black);
  background: var(--white);
}
.contact-page-form .form-input::placeholder,
.contact-page-form .form-textarea::placeholder { color: #aaa; }
.contact-page-form .form-label { color: #333; }
.contact-page-form .submit-btn { background: var(--black); color: var(--white); }
.contact-page-form .submit-btn:hover { background: #333; }

.info-label-dark {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
  margin-top: 20px;
}
.info-text-dark { font-size: 13px; color: #555; line-height: 1.7; }
.info-text-dark a { color: var(--black); text-decoration: underline; }

.info-social-dark { display: flex; gap: 16px; margin-top: 16px; }
.info-social-dark a { color: #555; font-size: 20px; transition: var(--transition); }
.info-social-dark a:hover { color: var(--black); }

/* ===========================
   SITE FOOTER
=========================== */
#site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 40px 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.footer-brand { max-width: 280px; }
.footer-logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
}
.footer-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-subscribe { display: flex; flex-direction: column; gap: 8px; }
.footer-subscribe-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 10px 14px;
  font-size: 13px;
  width: 220px;
}
.footer-subscribe-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-subscribe-btn {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}
.footer-subscribe-btn:hover { background: var(--gold); }

.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a { color: rgba(255,255,255,0.6); font-size: 18px; transition: var(--transition); }
.footer-social a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   WHATSAPP FLOATING BUTTON
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: rgba(0,0,0,0.8);
  color: white;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===========================
   FEATURED NEW LAUNCH
=========================== */
.featured-layout {
  background: var(--dark-bg);
  padding: 40px 32px 60px;
}

.featured-hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 20px;
}

/* ===========================
   UTILITY CLASSES
=========================== */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.no-properties {
  color: var(--text-muted);
  font-size: 14px;
  padding: 40px 0;
  text-align: center;
  grid-column: 1 / -1;
}

/* Form success/error messages */
.notice {
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  border-radius: 2px;
}
.notice-success { background: rgba(46,204,113,0.15); border: 1px solid #2ecc71; color: #2ecc71; }
.notice-error { background: rgba(231,76,60,0.15); border: 1px solid #e74c3c; color: #e74c3c; }

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 1024px) {
  .property-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .property-detail-layout { grid-template-columns: 1fr; }
  .property-info-panel { border-left: none; border-top: 1px solid var(--border-color); }
  .properties-layout { grid-template-columns: 180px 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  .header-inner { padding: 14px 20px; }

  .hero-dark { padding: 40px 20px 30px; }
  .hero-light { padding: 40px 20px 30px; }

  .properties-layout { grid-template-columns: 1fr; }
  .properties-sidebar {
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    min-height: unset;
  }
  .sidebar-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .properties-main { padding: 20px; }

  .property-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .news-grid { grid-template-columns: 1fr; gap: 24px; }
  .news-grid-section { padding: 32px 20px; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-subscribe-input { width: 100%; }

  .related-grid { gap: 14px; }
  .related-card { width: 140px; }

  .article-layout { padding: 32px 20px 48px; }

  .contact-section { padding: 40px 20px; }
  .contact-page-layout { padding: 32px 20px 48px; }

  .featured-layout { padding: 30px 20px 40px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .property-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sidebar-nav { grid-template-columns: 1fr; }
  .developer-images { grid-template-columns: 1fr; }
}

/* ===========================
   ADMIN NOTICE REMOVAL
=========================== */
.admin-bar .whatsapp-float { bottom: 46px; }
