/* ===========================
   PILLARS GROUP - SHARED STYLES v2
   Premium Luxury Real Estate
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&display=swap');

:root {
  --black: #060608;
  --charcoal: #111118;
  --dark: #16213e;
  --dark2: #0f3460;
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --gold-dark: #9a7328;
  --teal: #1ba8b0;
  --teal-light: #2ecad3;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --light-gray: #eeece6;
  --text-dark: #111118;
  --text-muted: #5a5a6a;
  --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #e8c96d 50%, #a07c30 100%);
  --gradient-dark: linear-gradient(160deg, #060608 0%, #111118 100%);
  --gradient-teal: linear-gradient(135deg, #1ba8b0, #0d6efd);
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.35);
  --shadow-card: 0 24px 64px rgba(0,0,0,0.12);
  --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html,
body {
  overflow-x: hidden;
  width: 100%;
}
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===========================
   SCROLL ANIMATION CLASSES
   =========================== */
.fade-up { opacity: 0; transform: translateY(50px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.fade-in { opacity: 0; transition: opacity 0.9s ease; }
.slide-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.slide-right { opacity: 0; transform: translateX(60px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.zoom-in { opacity: 0; transform: scale(0.9); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible, .fade-in.visible, .slide-left.visible, .slide-right.visible, .zoom-in.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===========================
   HERO ANIMATE (pre-load)
   =========================== */
.hero-animate {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

/* ===========================
   CUSTOM CURSOR
   =========================== */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: normal;
}
.cursor-follower {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(201,168,76,0.6);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor.hover { width: 18px; height: 18px; background: var(--teal); }
.cursor-follower.hover { width: 60px; height: 60px; border-color: var(--teal); opacity: 0.6; }

/* ===========================
   PRELOADER
   =========================== */
#preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99997;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { width: 110px; animation: preloaderPulse 1.8s ease-in-out infinite; margin-bottom: 40px; filter: brightness(1.2); }
.preloader-bar { width: 220px; height: 1px; background: rgba(255,255,255,0.08); overflow: hidden; }
.preloader-fill { height: 100%; background: var(--gradient-gold); width: 0%; animation: preloaderFill 1.9s ease forwards; }
.preloader-text { color: rgba(255,255,255,0.3); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; margin-top: 20px; }
@keyframes preloaderPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.7;transform:scale(1.04)} }
@keyframes preloaderFill { 0%{width:0%} 100%{width:100%} }

/* ===========================
   SCROLL PROGRESS
   =========================== */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--gradient-gold);
  z-index: 9999; width: 0%;
  transition: width 0.1s linear;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(6,6,8,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.nav-container {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 54px; width: auto; transition: var(--transition); }
.nav-logo img:hover { filter: brightness(1.3); }
.nav-menu { display: flex; align-items: center; list-style: none; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,0.9);
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.3px;
  padding: 9px 16px; border-radius: 4px;
  transition: var(--transition); position: relative;
}
.nav-menu > li > a::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.35s ease; transform-origin: right;
}
.nav-menu > li > a:hover::after, .nav-menu > li > a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--gold-light); }
.nav-menu .dropdown {
  position: absolute; top: calc(100% + 12px); left: 0;
  min-width: 210px;
  background: rgba(6,6,8,0.98); backdrop-filter: blur(24px);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: var(--transition);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.nav-menu li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .dropdown li a {
  display: block; color: rgba(255,255,255,0.75);
  font-size: 13px; padding: 11px 22px;
  transition: var(--transition);
  border-left: 2px solid transparent;
}
.nav-menu .dropdown li a:hover { color: var(--gold-light); background: rgba(201,168,76,0.07); border-left-color: var(--gold); padding-left: 28px; }
.nav-cta {
  background: transparent !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 9px 22px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  font-size: 11.5px !important;
  transition: var(--transition) !important;
  position: relative; overflow: hidden;
}
.nav-cta::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--gradient-gold); transition: left 0.35s ease; z-index: -1; }
.nav-cta:hover::before { left: 0; }
.nav-cta:hover { color: var(--black) !important; box-shadow: var(--shadow-gold); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

@media (max-width: 968px) {
  .nav-hamburger { display: flex; }
  .nav-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: rgba(6,6,8,0.99); backdrop-filter: blur(24px); flex-direction: column; align-items: flex-start; padding: 80px 28px 30px; gap: 0; transition: right 0.4s ease; }
  .nav-menu.open { right: 0; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.04); width: 100%; }
  .nav-menu .dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,0.03); border: none; box-shadow: none; display: none; padding: 0 0 0 16px; }
  .nav-menu li.open-sub .dropdown { display: block; }
  .nav-cta { margin-top: 20px; }
}

/* ===========================
   ENQUIRY MODAL
   =========================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: linear-gradient(160deg, #111118, #16213e);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px; padding: 52px 44px;
  width: 90%; max-width: 520px; position: relative;
  transform: translateY(30px) scale(0.95);
  transition: var(--transition);
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.25); border-radius: 50%;
  background: transparent; color: var(--white); font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); line-height: 1;
}
.modal-close:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: rotate(90deg); }
.modal-title { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--white); margin-bottom: 6px; }
.modal-subtitle { color: var(--gold); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18); border-radius: 8px;
  padding: 14px 18px; color: var(--white);
  font-family: 'Poppins', sans-serif; font-size: 14px;
  transition: var(--transition); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: rgba(201,168,76,0.04); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-group select option { background: #111118; color: var(--white); }
.form-group textarea { height: 100px; resize: none; }
.btn-submit {
  width: 100%; background: var(--gradient-gold); border: none;
  color: var(--black); font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px; border-radius: 8px; cursor: pointer;
  transition: var(--transition); margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }

/* ===========================
   TYPOGRAPHY & LABELS
   =========================== */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-size: 11.5px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 14px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4.2vw, 52px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-title.dark { color: var(--charcoal); }
.section-title .gold { color: var(--gold); font-style: italic; }
.section-desc { font-size: 16px; line-height: 1.85; color: var(--text-muted); max-width: 600px; }
.section-desc.light { color: rgba(255,255,255,0.65); }
.gold-divider { width: 56px; height: 2px; background: var(--gradient-gold); margin: 18px 0 28px; }
.text-center { text-align: center; }
.text-center .gold-divider { margin-left: auto; margin-right: auto; }
.text-center .section-label { justify-content: center; }

/* ===========================
   CONTAINER
   =========================== */
.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ===========================
   BUTTONS
   =========================== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gradient-gold); color: var(--black);
  font-weight: 700; font-size: 12.5px; letter-spacing: 2px;
  text-transform: uppercase; padding: 16px 38px; border-radius: 4px;
  border: none; cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 50px rgba(201,168,76,0.45); color: var(--black); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 12.5px; letter-spacing: 2px;
  text-transform: uppercase; padding: 15px 37px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.35); cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--gold);
  font-weight: 600; font-size: 12.5px; letter-spacing: 2px;
  text-transform: uppercase; padding: 14px 34px; border-radius: 4px;
  border: 1.5px solid var(--gold); cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); box-shadow: var(--shadow-gold); }

/* ===========================
   FLOATING BUTTONS
   =========================== */
.whatsapp-float {
  position: fixed; bottom: 88px; right: 28px;
  width: 54px; height: 54px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px; z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5); transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12) rotate(-5deg); box-shadow: 0 10px 40px rgba(37,211,102,0.65); }
.back-to-top {
  position: fixed; bottom: 24px; right: 28px;
  width: 44px; height: 44px; background: var(--gradient-gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 16px; z-index: 999;
  cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition);
  border: none; box-shadow: var(--shadow-gold);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px) scale(1.1); }

/* ===========================
   PAGE HERO BANNER (with real image)
   =========================== */
.page-hero {
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(6,6,8,0.55) 0%,
    rgba(6,6,8,0.7) 50%,
    rgba(6,6,8,0.85) 100%);
  z-index: 1;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 12s ease;
}
body.loaded .page-hero-bg { transform: scale(1.0); }
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 20px;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 20px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.page-hero h1 { font-size: clamp(38px, 6vw, 68px); color: var(--white); font-weight: 700; margin-bottom: 16px; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.page-hero h1 span { color: var(--gold); font-style: italic; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.page-hero-divider { width: 60px; height: 2px; background: var(--gradient-gold); margin: 18px auto 24px; }

/* ===========================
   MID-PAGE IMAGE BANNER
   =========================== */
.image-banner {
  position: relative; min-height: 420px;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.image-banner::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(6,6,8,0.72); z-index: 1;
}
.image-banner-content {
  position: relative; z-index: 2;
  text-align: center; padding: 80px 40px;
}
.image-banner h2 { font-size: clamp(32px, 4.5vw, 54px); color: var(--white); margin-bottom: 16px; }
.image-banner h2 span { color: var(--gold); font-style: italic; }
.image-banner p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 550px; margin: 0 auto 36px; line-height: 1.7; }
.image-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   STATS BAR
   =========================== */
.stats-grid {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 11.5px; color: rgba(255,255,255,0.45); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2,1fr); } .stat-item { border-right: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); } }

/* ===========================
   GLASS CARDS / WHY US
   =========================== */
.glass-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px; padding: 36px 28px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.glass-card::before {
  content: ''; position: absolute; top: -1px; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.glass-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-6px); background: rgba(255,255,255,0.06); }
.glass-card:hover::before { transform: scaleX(1); }
.glass-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--gold);
  margin-bottom: 22px;
  transition: var(--transition);
}
.glass-card:hover .glass-icon { background: var(--gradient-gold); color: var(--black); border-color: transparent; }
.glass-card h3 { font-size: 19px; color: var(--white); margin-bottom: 12px; }
.glass-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ===========================
   PROJECT CARDS
   =========================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.project-card {
  background: var(--white); border-radius: 14px;
  overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,0.16); }
.pc-img-wrap { overflow: hidden; position: relative; height: 240px; }
.pc-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.project-card:hover .pc-img { transform: scale(1.07); }
.pc-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
}
.pc-badge.ongoing { background: rgba(27,168,176,0.92); color: white; }
.pc-badge.completed { background: rgba(201,168,76,0.92); color: var(--black); }
.pc-badge.upcoming { background: rgba(13,110,253,0.9); color: white; }
.pc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,8,0.7) 0%, transparent 50%);
}
.pc-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.pc-location { display: flex; align-items: center; gap: 6px; color: var(--gold); font-size: 11.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.pc-name { font-size: 21px; color: var(--charcoal); margin-bottom: 10px; }
.pc-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.pc-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.pc-chip { background: rgba(201,168,76,0.08); color: var(--gold-dark); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(201,168,76,0.2); }
.pc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--light-gray); }
.pc-footer a { font-size: 12.5px; font-weight: 700; color: var(--teal); letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 7px; transition: var(--transition); }
.pc-footer a:hover { color: var(--gold); gap: 11px; }

/* ===========================
   FULL PROJECT CARD (ongoing etc)
   =========================== */
.project-full-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-card); margin-bottom: 40px;
  display: grid; grid-template-columns: 420px 1fr;
  transition: var(--transition); border: 1px solid rgba(201,168,76,0.08);
}
.project-full-card:hover { box-shadow: 0 40px 100px rgba(0,0,0,0.18); transform: translateY(-4px); }
.pfc-img-wrap { overflow: hidden; position: relative; }
.pfc-img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.project-full-card:hover .pfc-img { transform: scale(1.06); }
.pfc-img-badge {
  position: absolute; top: 20px; left: 20px;
  background: rgba(27,168,176,0.95); color: white;
  font-size: 10.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 20px;
}
.pfc-body { padding: 44px; display: flex; flex-direction: column; justify-content: space-between; }
.pfc-location { display: flex; align-items: center; gap: 6px; color: var(--gold); font-size: 11.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.pfc-name { font-size: 32px; color: var(--charcoal); margin-bottom: 14px; }
.pfc-desc { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 24px; }
.pfc-details { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 26px; }
.pfc-detail { background: var(--off-white); border-radius: 10px; padding: 14px 16px; border-left: 3px solid var(--gold); }
.pfc-detail label { font-size: 10px; color: var(--text-muted); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 4px; }
.pfc-detail span { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.pfc-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.amenity-chip { background: rgba(27,168,176,0.07); color: var(--teal); font-size: 11.5px; font-weight: 600; padding: 5px 15px; border-radius: 20px; border: 1px solid rgba(27,168,176,0.2); display: flex; align-items: center; gap: 5px; }
.pfc-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 900px) { .project-full-card { grid-template-columns: 1fr; } .pfc-img { min-height: 260px; } .pfc-details { grid-template-columns: repeat(2,1fr); } }

/* ===========================
   FAQ ACCORDION
   =========================== */
.faq-item {
  background: var(--white); border-radius: 12px; margin-bottom: 14px;
  border: 1px solid rgba(201,168,76,0.1);
  overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: rgba(201,168,76,0.3); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.faq-question {
  padding: 22px 28px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; cursor: pointer; transition: var(--transition);
}
.faq-question:hover { background: rgba(201,168,76,0.02); }
.faq-question h3 { font-size: 15.5px; font-weight: 600; color: var(--charcoal); font-family: 'Poppins', sans-serif; line-height: 1.5; }
.faq-item.open .faq-question h3 { color: var(--gold-dark); }
.faq-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1.5px solid rgba(201,168,76,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold); transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--gradient-gold); color: var(--black); border-color: transparent; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 28px 24px; font-size: 14.5px; color: var(--text-muted); line-height: 1.85; }

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--black);
  color: var(--white); padding: 90px 0 0;
  position: relative; overflow: hidden;
}
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer-grid {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 50px;
}
.footer-brand img { height: 58px; margin-bottom: 22px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.85; margin-bottom: 28px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 14px; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-3px); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--white); margin-bottom: 24px; position: relative; padding-bottom: 14px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--gold); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { color: rgba(255,255,255,0.5); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links li a::before { content: '›'; color: var(--gold); font-size: 16px; }
.footer-links li a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.footer-contact-item .icon { width: 38px; height: 38px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 14px; flex-shrink: 0; }
.footer-contact-item .info { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-contact-item .info a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact-item .info a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 24px 40px; max-width: 1320px; margin: 50px auto 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--gold); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-wrapper { overflow: hidden; margin-top: 60px; }
.testimonials-track { display: flex; gap: 24px; animation: autoScroll 32s linear infinite; width: max-content; }
.testimonials-track:hover { animation-play-state: paused; }
@keyframes autoScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.testimonial-card { background: var(--white); border-radius: 16px; padding: 36px 30px; width: 340px; flex-shrink: 0; box-shadow: 0 8px 30px rgba(0,0,0,0.06); border: 1px solid rgba(201,168,76,0.08); transition: var(--transition); }
.testimonial-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.12); border-color: rgba(201,168,76,0.25); }
.t-quote { font-size: 44px; color: var(--gold); font-family: 'Playfair Display', serif; line-height: 0.8; margin-bottom: 18px; opacity: 0.7; }
.t-text { font-size: 14.5px; line-height: 1.85; color: var(--text-muted); margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gradient-gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--black); font-size: 18px; }
.t-name { font-weight: 600; font-size: 15px; color: var(--charcoal); }
.t-role { font-size: 12px; color: var(--text-muted); }
.t-stars { color: var(--gold); font-size: 12px; margin-top: 4px; }

/* ===========================
   TIMELINE
   =========================== */
.timeline-mini {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 60px; position: relative;
}
.timeline-mini::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold)); }
.timeline-step { text-align: center; padding: 0 20px; position: relative; }
.timeline-dot { width: 56px; height: 56px; background: var(--gradient-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--black); margin: 0 auto 24px; position: relative; z-index: 1; box-shadow: var(--shadow-gold); }
.timeline-step h3 { font-size: 17px; color: var(--charcoal); margin-bottom: 10px; }
.timeline-step p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* Completed project timeline */
.completed-timeline { position: relative; padding-left: 50px; }
.completed-timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--gold), var(--teal)); }
.ct-item { position: relative; margin-bottom: 40px; }
.ct-dot { position: absolute; left: -42px; top: 8px; width: 16px; height: 16px; background: var(--gradient-gold); border-radius: 50%; box-shadow: 0 0 0 4px rgba(201,168,76,0.15); }
.ct-year { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.ct-name { font-size: 17px; color: var(--charcoal); margin-bottom: 4px; }
.ct-loc { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }

/* ===========================
   UTILITIES
   =========================== */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 70px 0; }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-charcoal { background: var(--charcoal); }
.bg-black { background: var(--black); }

@media (max-width: 1024px) { .timeline-mini { grid-template-columns: repeat(2,1fr); gap:30px; } .timeline-mini::before { display:none; } }
@media (max-width: 768px) { .projects-grid { grid-template-columns: 1fr; } .section-padding { padding:70px 0; } }
