/* ===== VALUE REALITTY - MAIN STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9E7C2A;
  --navy: #0D1B2A;
  --navy-mid: #1A2F45;
  --navy-light: #243B55;
  --white: #FFFFFF;
  --off-white: #F8F5F0;
  --gray-100: #F2EDE8;
  --gray-200: #E0D8D0;
  --gray-400: #9A9080;
  --gray-600: #5C554D;
  --text-dark: #1A1410;
  --text-mid: #4A4038;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--gold); color: var(--white); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  padding: 0 40px;
}
.nav-logo img { height: 50px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  letter-spacing: 0.5px;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-links .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy);
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.78) 0%, rgba(13,27,42,0.45) 60%, rgba(13,27,42,0.2) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 80px;
}
.hero-text { max-width: 620px; }
.hero-news {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 12px;
  color: var(--gold-light);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-news-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-text h1 {
  font-size: clamp(36px, 6vw, 64px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-text h1 span { color: var(--gold); }
.hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 28px; height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 48px; }
.hero-arrows {
  position: absolute;
  bottom: 32px;
  right: 80px;
  display: flex;
  gap: 12px;
}
.hero-arrow {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
}
.hero-arrow:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
  color: var(--white);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ===== TICKER ===== */
.ticker {
  background: var(--gold);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  padding: 0 40px;
}
.ticker-sep { color: rgba(255,255,255,0.5); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
.about-section { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-imgs {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--white);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 8px 24px rgba(201,168,76,0.45);
  z-index: 10;
}
.about-badge-num { font-size: 28px; font-weight: 700; line-height: 1; }
.about-badge-text { font-size: 9px; text-align: center; letter-spacing: 1px; opacity: 0.9; line-height: 1.3; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.stat-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border-left: 3px solid var(--gold);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-unit { font-size: 16px; }
.stat-desc { font-size: 13px; color: var(--gray-600); margin-top: 4px; letter-spacing: 0.5px; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--white); }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ===== PROJECTS ===== */
.projects-section { background: var(--off-white); }
.projects-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 48px 0 36px;
}
.filter-btn {
  padding: 10px 24px;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-img img { transform: scale(1.07); }
.project-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-ongoing { background: rgba(201,168,76,0.9); color: var(--white); }
.badge-completed { background: rgba(34,139,70,0.9); color: var(--white); }
.project-info { padding: 24px; }
.project-approval {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.project-info h3 { font-size: 20px; margin-bottom: 6px; }
.project-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 14px;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}
.project-size { font-size: 13px; color: var(--gray-600); }
.project-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-top: 14px;
  transition: var(--transition);
}
.project-link:hover { color: var(--gold); gap: 10px; }

/* ===== LOCATIONS ===== */
.locations-section { background: var(--navy); }
.locations-section .section-title { color: var(--white); }
.locations-section .section-label { color: var(--gold-light); }
.locations-section .section-sub { color: rgba(255,255,255,0.6); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.location-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.location-chip:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }
.location-chip-icon { font-size: 22px; margin-bottom: 8px; }
.location-chip span { font-size: 12px; color: rgba(255,255,255,0.75); letter-spacing: 0.5px; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 56px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--off-white); }
.testimonials-slider {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-right: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 16px;
  color: var(--white);
}
.testimonial-name { font-size: 15px; font-weight: 600; color: var(--navy); }
.testimonial-role { font-size: 12px; color: var(--gray-400); }
.tslider-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.tslider-btn {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--gold);
  font-size: 18px;
  transition: var(--transition);
  background: transparent;
}
.tslider-btn:hover { background: var(--gold); color: var(--white); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--gray-600); margin-bottom: 36px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.contact-item p { font-size: 14px; color: var(--gray-600); margin: 0; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text-mid); display: block; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: rgba(34,139,70,0.1);
  border: 1px solid rgba(34,139,70,0.3);
  color: #228b46;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img { height: 45px; margin-bottom: 20px; filter: brightness(10); }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--navy);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://valuerealitty.com/images/banner25.jpg') center/cover;
  opacity: 0.12;
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-size: clamp(32px, 5vw, 52px); }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold); }

/* ===== PROJECT DETAIL PAGE ===== */
.project-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.detail-gallery { position: relative; }
.detail-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
}
.detail-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.detail-thumb {
  width: 80px; height: 60px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  opacity: 0.7;
}
.detail-thumb.active, .detail-thumb:hover { border-color: var(--gold); opacity: 1; }
.detail-info { position: sticky; top: 100px; }
.detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.detail-meta-item {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px;
}
.detail-meta-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-400); }
.detail-meta-value { font-size: 15px; font-weight: 600; color: var(--navy); margin-top: 4px; }
.detail-desc { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 28px; }
.detail-docs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.doc-btn:hover { background: var(--gold); color: var(--white); }

/* ===== ADMIN ===== */
.admin-login {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.admin-login::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://valuerealitty.com/images/banner25.jpg') center/cover;
  opacity: 0.06;
}
.login-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  width: 420px;
  box-shadow: var(--shadow-lg);
}
.login-logo { text-align: center; margin-bottom: 36px; }
.login-logo img { height: 55px; }
.login-card h2 { font-size: 26px; text-align: center; margin-bottom: 6px; }
.login-card > p { text-align: center; font-size: 14px; color: var(--gray-400); margin-bottom: 36px; }
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--gray-100);
}
.admin-sidebar {
  width: 260px;
  background: var(--navy);
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 100;
}
.sidebar-logo {
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-logo img { height: 40px; filter: brightness(10); }
.sidebar-nav { padding: 20px 12px; }
.sidebar-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 8px 12px 4px;
  margin-top: 8px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
  transition: var(--transition);
  cursor: pointer;
}
.sidebar-link:hover, .sidebar-link.active {
  background: rgba(255,255,255,0.07);
  color: var(--gold);
}
.sidebar-link .icon { font-size: 18px; }
.admin-main {
  margin-left: 260px;
  flex: 1;
  padding: 36px;
}
.admin-topbar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.admin-topbar h1 { font-size: 22px; }
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-stat-card h3 { font-size: 28px; color: var(--navy); margin-bottom: 4px; }
.admin-stat-card p { font-size: 13px; color: var(--gray-400); }
.admin-stat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.admin-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.admin-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.admin-table-header h2 { font-size: 18px; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  border-bottom: 1.5px solid var(--gray-200);
  font-weight: 600;
}
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text-mid);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table img { width: 54px; height: 40px; object-fit: cover; border-radius: var(--radius); }
.table-actions { display: flex; gap: 8px; }
.table-btn {
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-edit { background: rgba(201,168,76,0.1); color: var(--gold); }
.btn-edit:hover { background: var(--gold); color: var(--white); }
.btn-delete { background: rgba(220,53,69,0.1); color: #dc3545; }
.btn-delete:hover { background: #dc3545; color: var(--white); }
.status-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.status-ongoing { background: rgba(201,168,76,0.1); color: var(--gold-dark); }
.status-completed { background: rgba(34,139,70,0.1); color: #228b46; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 700px;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h2 { font-size: 22px; }
.modal-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: var(--gray-100);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
}
.modal-close:hover { background: #dc3545; color: var(--white); }
.modal-body { padding: 28px 32px; }
.modal-footer { padding: 20px 32px; border-top: 1px solid var(--gray-200); display: flex; justify-content: flex-end; gap: 12px; }
.img-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.img-preview {
  position: relative;
  width: 80px; height: 60px;
}
.img-preview img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.img-preview-remove {
  position: absolute;
  top: -6px; right: -6px;
  width: 18px; height: 18px;
  background: #dc3545;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 10px; cursor: pointer;
  border: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  color: white; font-size: 32px; cursor: pointer;
  background: none; border: none; opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; }

/* ===== LOADING ===== */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 0;
  color: var(--gray-400);
}
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.no-projects {
  text-align: center;
  padding: 60px 0;
  color: var(--gray-400);
  font-size: 16px;
}

/* ===== SCROLL TO TOP ===== */
#scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  border: none;
}
#scroll-top.show { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--gold-dark); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-stats { display: none; }
  .projects-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-imgs { height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero-controls, .hero-arrows { left: 24px; }
  .hero-arrows { left: auto; right: 24px; }
  .projects-grid, .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; padding: 20px; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .project-detail-grid { grid-template-columns: 1fr; }
  .detail-info { position: static; }
  .contact-form { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .section-pad { padding: 60px 0; }
  .hero-stat-num { font-size: 24px; }
  .testimonial-card { min-width: calc(100% - 0px); }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== PROJECT DETAIL - IMAGE SLIDER ===== */
.detail-slider-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  margin-bottom: 12px;
}
.detail-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.detail-slider-slide {
  min-width: 100%;
  height: 420px;
  flex-shrink: 0;
}
.detail-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  display: block;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  background: rgba(13,27,42,0.65);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 2;
  backdrop-filter: blur(4px);
}
.slider-btn:hover { background: var(--gold); }
.slider-btn-prev { left: 12px; }
.slider-btn-next { right: 12px; }
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* ===== AMENITIES LIST ===== */
.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-mid);
  border-left: 2px solid var(--gold);
}
.amenity-item span { color: var(--gold); font-size: 15px; font-weight: 700; flex-shrink: 0; }

/* ===== DETAIL ENQUIRY FORM ===== */
.detail-enquiry-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
  box-shadow: var(--shadow);
}
.detail-enquiry-form h4 {
  font-size: 17px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}
.detail-enquiry-form h4::before {
  content: '';
  display: inline-block;
  width: 3px; height: 18px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.form-inline-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-inline-row .form-group { margin-bottom: 0; }

/* ===== DETAIL CTA STRIP ===== */
.detail-cta-strip {
  background: var(--gold);
  padding: 16px 0;
  position: sticky;
  top: 75px;
  z-index: 90;
}
.detail-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.detail-cta-strip h3 { color: var(--white); font-size: 17px; font-weight: 600; margin-bottom: 2px; }
.detail-cta-strip p { color: rgba(255,255,255,0.85); font-size: 13px; }
.detail-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-btn-white {
  background: var(--white);
  color: var(--gold-dark);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.cta-btn-white:hover { background: var(--navy); color: var(--white); }
.cta-btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.cta-btn-navy:hover { background: rgba(13,27,42,0.75); }

/* ===== ACHIEVEMENT CARDS (Completed Projects) ===== */
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.achievement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.achievement-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.achievement-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.achievement-label { font-size: 13px; color: var(--gray-600); margin-top: 8px; }

/* ===== PROJECTS COUNT BAR ===== */
.projects-count-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
}
.projects-count-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.projects-count-text { font-size: 14px; color: var(--gray-600); }
.projects-count-text strong { color: var(--navy); }

/* ===== WHY CHOOSE GRID (Ongoing Projects) ===== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.why-icon { font-size: 34px; margin-bottom: 14px; }
.why-card h4 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.7; }

/* ===== ADMIN PANEL - RESPONSIVE FIXES ===== */
@media (max-width: 1024px) {
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .detail-slider-slide { height: 260px; }
  .detail-cta-inner { flex-direction: column; align-items: flex-start; }
  .form-inline-row { grid-template-columns: 1fr; }
  .amenities-list { grid-template-columns: 1fr; }
  .achievement-grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose-grid { grid-template-columns: 1fr; }
  .projects-count-inner { flex-direction: column; align-items: flex-start; }
  .detail-cta-strip { position: static; }
}
@media (max-width: 480px) {
  .achievement-grid { grid-template-columns: 1fr 1fr; }
  .achievement-num { font-size: 30px; }
  .detail-enquiry-form { padding: 20px 16px; }
}
