:root {
  --gold: #caa44a;
  --black: #0b0b0b;
  --dark: #121212;
  --glass: rgba(255, 255, 255, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #000;
  height: 200vh;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(
    135deg,
    #000000,
    #0d0d0d,
    #000000
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(202, 164, 74, 0.25);
}

.header-container {
  max-width: 1400px;
  margin: auto;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.logo span {
  color: #fff;
  font-weight: 400;
}

/* Navigation */
.nav-list {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  display: block;
  padding: 12px 20px;
  color: #e5e5e5;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  background: var(--glass);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: all 0.4s ease;
}

.nav-list a:hover {
  color: var(--gold);
  background: linear-gradient(
    135deg,
    rgba(202, 164, 74, 0.25),
    rgba(202, 164, 74, 0.05)
  );
  box-shadow: 0 0 15px rgba(202, 164, 74, 0.35);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Social Icons */
.social-icons a {
  color: #aaa;
  font-size: 14px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* Button */
.btn-contact {
  padding: 10px 22px;
  font-size: 13px;
  text-decoration: none;
  color: #000;
  background: linear-gradient(135deg, var(--gold), #e6c36b);
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(202, 164, 74, 0.4);
  transition: all 0.3s ease;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(202, 164, 74, 0.7);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 4px 0;
  transition: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: linear-gradient(180deg, #000, #111);
    transition: right 0.4s ease;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 16px;
  }

  .nav-list a {
    width: 220px;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Premium hover effect */
.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(202, 164, 74, 0.6));
}

/* Responsive logo */
@media (max-width: 768px) {
  .logo img {
    height: 38px;
  }
}
.logo img {
  animation: logoReveal 1.2s ease forwards;
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-content p {
  font-size: 16px;
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #d6d6d6;
}

/* Tags */
.hero-tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.hero-tags span {
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: 0.6px;
  border: 1px solid rgba(202, 164, 74, 0.6);
  color: var(--gold);
  background: rgba(202, 164, 74, 0.08);
  border-radius: 30px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--gold), #e6c36b);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 0 25px rgba(202, 164, 74, 0.5);
  transition: all 0.35s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(202, 164, 74, 0.8);
}

.btn-secondary {
  padding: 14px 34px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.35s ease;
}

.btn-secondary:hover {
  background: var(--gold);
  color: #000;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-indicator span {
  display: block;
  width: 28px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollPulse 1.8s infinite;
}

@keyframes scrollPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
  }
}
/* =========================
   ABOUT US SECTION
========================= */

.about-section {
  background: #f8f8f6; /* light editorial tone like reference */
  padding: 90px 20px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.about-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
}

.about-heading h2 {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}

.about-heading .line {
  width: 80px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}

/* Content */
.about-content p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 26px;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .about-heading {
    gap: 14px;
  }

  .about-heading .line {
    width: 50px;
  }

  .about-content p {
    font-size: 15px;
  }
}

/* =========================
   VISION / MISSION / STRATEGY
========================= */

.vms-section {
  background: #f8f8f6;
  padding: 20px 20px 0;
}

.vms-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.vms-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 30px 60px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vms-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.12);
}

/* Icon */
.vms-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: #fff;
  border: 2px solid;
}

/* Titles */
.vms-card h3 {
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: #111;
}

/* Text */
.vms-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

/* Color Variants */
.vision .vms-icon {
  border-color: #caa44a;
  color: #caa44a;
}

.mission .vms-icon {
  border-color: #111;
  color: #111;
}

.strategy .vms-icon {
  border-color: #9c9c9c;
  color: #9c9c9c;
}

/* Footer Line */
.vms-footer-line {
  width: 100%;
  height: 6px;
  margin-top: 70px;
  background: linear-gradient(
    90deg,
    #000,
    #caa44a,
    #000
  );
}

/* Responsive */
@media (max-width: 992px) {
  .vms-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* =========================
   CORE VALUES SECTION
========================= */

.core-values-section {
  background: #f8f8f6;
  padding: 30px 20px 0;
}

.core-values-container {
  max-width: 1400px;
  margin: auto;
}

/* Heading */
.core-values-heading {
  text-align: center;
  margin-bottom: 60px;
}

.core-values-heading .subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.title-line h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
  text-transform: uppercase;
}

.title-line span {
  width: 80px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}

/* Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* Card */
.value-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 3 / 4;
}

.value-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.value-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.value-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.05)
  );
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.value-overlay h3 {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #fff;
  font-weight: 500;
}

/* Footer Line */
.core-values-footer-line {
  width: 100%;
  height: 6px;
  margin-top: 70px;
  background: linear-gradient(
    90deg,
    #000,
    #caa44a,
    #000
  );
}

/* Responsive */
@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .title-line span {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   WHY CHOOSE US SECTION
========================= */

.why-choose-section {
  background: #f8f8f6;
  padding: 100px 20px 0;
}

.why-choose-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Heading */
.why-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
}

.why-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
  text-transform: uppercase;
}

.why-heading .line {
  width: 80px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}

/* Text */
.why-content p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
  max-width: 620px;
}

/* List */
.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  font-size: 14.5px;
  color: #444;
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
}

.why-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #caa44a;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

/* Stats */
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.stat-card {
  background: #ffffff;
  padding: 36px 28px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.stat-card h3 {
  font-size: 34px;
  font-weight: 700;
  color: #caa44a;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  color: #666;
}

/* Footer Line */
.why-footer-line {
  width: 100%;
  height: 6px;
  margin-top: 80px;
  background: linear-gradient(
    90deg,
    #000,
    #caa44a,
    #000
  );
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-stats {
    grid-template-columns: 1fr;
  }

  .why-heading .line {
    width: 50px;
  }
}

/* =========================
   FEATURED PROJECTS SLIDER
========================= */

.featured-projects-section {
  background: #f8f8f6;
  padding: 100px 20px 0;
}

.featured-projects-container {
  max-width: 1400px;
  margin: auto;
}

/* Heading */
.featured-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}

.featured-heading h2 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-heading .line {
  width: 80px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}

/* Slider */
.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 24px;
  animation: scrollProjects 35s linear infinite;
}

.slider-wrapper:hover .slider-track {
  animation-play-state: paused;
}

/* Slide */
.project-slide {
  min-width: 320px;
  height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-slide:hover img {
  transform: scale(1.08);
}

/* Overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.05)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.project-overlay h3 {
  font-size: 15px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 6px;
}

.project-overlay span {
  font-size: 13px;
  color: #caa44a;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #caa44a;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* Animation */
@keyframes scrollProjects {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Footer Line */
.featured-footer-line {
  width: 100%;
  height: 6px;
  margin-top: 80px;
  background: linear-gradient(
    90deg,
    #000,
    #caa44a,
    #000
  );
}

/* Responsive */
@media (max-width: 768px) {
  .project-slide {
    min-width: 260px;
    height: 360px;
  }

  .featured-heading .line {
    width: 50px;
  }
}
/* =========================
   COMMUNITIES – AJMAN
========================= */

.communities-section {
  background: #f8f8f6;
  padding: 100px 20px 0;
}

.communities-container {
  max-width: 1400px;
  margin: auto;
}

/* Heading */
.communities-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}

.communities-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.communities-heading .line {
  width: 80px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}

/* Grid */
.communities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.community-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
}

.community-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.community-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.15)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.community-overlay h3 {
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 6px;
}

.community-overlay p {
  font-size: 13.5px;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Footer Line */
.communities-footer-line {
  width: 100%;
  height: 6px;
  margin-top: 80px;
  background: linear-gradient(
    90deg,
    #000,
    #caa44a,
    #000
  );
}

/* Responsive */
@media (max-width: 1024px) {
  .communities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .communities-grid {
    grid-template-columns: 1fr;
  }

  .communities-heading .line {
    width: 50px;
  }
}

/* =========================
   FAQ – BUYERS & INVESTORS
========================= */

.faq-section {
  background: #f8f8f6;
  padding: 100px 20px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.faq-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}

.faq-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.faq-heading .line {
  width: 80px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}

/* FAQ Items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
}

/* Question */
.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  font-size: 22px;
  color: #caa44a;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
}

.faq-answer p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #555;
  padding-bottom: 22px;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 576px) {
  .faq-heading .line {
    width: 50px;
  }

  .faq-question {
    font-size: 14.5px;
  }
}
/* =========================
   CONTACT US SECTION
========================= */

.contact-section {
  background: #f8f8f6;
  padding: 100px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.contact-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 70px;
}

.contact-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.contact-heading .line {
  width: 80px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: stretch; /* IMPORTANT */
}
/* Equal Height Columns */
.contact-info,
.contact-form {
  height: 100%;
}

/* Info Box Styling to Match Form Height */
.contact-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
  display: flex;
}

.contact-info-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Balances vertical spacing */
}

/* Ensure form stretches fully */
.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* Info */
.contact-info h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #111;
}

.contact-info p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  font-size: 14.5px;
  margin-bottom: 14px;
  color: #444;
}

/* Form */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #caa44a;
  box-shadow: 0 0 0 3px rgba(202, 164, 74, 0.15);
}

.contact-form textarea {
  resize: none;
}

/* Button */
.contact-btn {
  margin-top: 10px;
  padding: 14px;
  width: 100%;
  background: linear-gradient(135deg, #caa44a, #e6c36b);
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(202, 164, 74, 0.5);
  transition: all 0.35s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(202, 164, 74, 0.75);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .contact-heading .line {
    width: 50px;
  }

  .contact-form {
    padding: 30px 24px;
  }
}
/* =========================
   OUR PARTNERS LOGO SLIDER
========================= */

.partners-section {
  background: #f8f8f6;
  padding: 90px 20px;
}

.partners-container {
  max-width: 1400px;
  margin: auto;
}

/* Heading */
.partners-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
}

.partners-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.partners-heading .line {
  width: 80px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}

/* Slider */
.partners-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.partners-slider {
  overflow: hidden;
  width: 100%;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: partnerScroll 30s linear infinite;
}

.partners-slider-wrapper:hover .partners-track {
  animation-play-state: paused;
}

/* Logo Card */
.partner-logo {
  min-width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.35s ease;
}

.partner-logo img {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Buttons */
.partners-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #caa44a;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease;
}

.partners-btn:hover {
  background: rgba(0, 0, 0, 0.85);
}

.partners-btn.prev {
  left: 10px;
}

.partners-btn.next {
  right: 10px;
}

/* Infinite Scroll Animation */
@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .partner-logo {
    min-width: 120px;
  }

  .partners-heading .line {
    width: 50px;
  }
}

/* =========================
   PREMIUM FOOTER
========================= */

.footer {
  background: #0b0b0b;
  color: #ccc;
  padding: 90px 20px 0;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/* Columns */
.footer-col h3 {
  font-size: 22px;
  color: #caa44a;
  margin-bottom: 18px;
}

.footer-col h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #aaa;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #caa44a;
}

/* Contact */
.footer-contact li {
  color: #aaa;
}

/* Social */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #caa44a;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #caa44a;
  color: #000;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 22px 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: #888;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* Footer Logo */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  max-width: 50px;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Subtle luxury hover */
.footer-logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 12px rgba(202, 164, 74, 0.6));
}

/* Responsive */
@media (max-width: 576px) {
  .footer-logo {
    max-width: 150px;
  }
}

/* =========================
   PAGE PRELOADER
========================= */

#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000; /* higher than header */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

/* Content */
.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.preloader-content img {
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: logoFade 1.5s ease infinite alternate;
}

/* Gold Loader Line */
.loader-line {
  width: 120px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #caa44a,
    transparent
  );
  position: relative;
  overflow: hidden;
}

.loader-line::before {
  content: "";
  position: absolute;
  left: -40%;
  width: 40%;
  height: 100%;
  background: #caa44a;
  animation: loadingLine 1.4s infinite;
}

/* Animations */
@keyframes loadingLine {
  from {
    left: -40%;
  }
  to {
    left: 100%;
  }
}

@keyframes logoFade {
  from {
    opacity: 0.6;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 576px) {
  .preloader-content img {
    max-width: 170px;
  }

  .loader-line {
    width: 90px;
  }
}

/* =========================
   OUR COMPETITIVE ADVANTAGES
========================= */

.advantages-section {
  background: #f8f8f6;
  padding: 40px 20px;
}

.advantages-container {
  max-width: 1300px;
  margin: auto;
}

/* Heading */
.advantages-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 70px;
}

.advantages-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.advantages-heading .line {
  width: 80px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}

/* Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.advantage-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.12);
}

.advantage-card h3 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #111;
  position: relative;
  padding-left: 18px;
}

.advantage-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background: #caa44a;
  border-radius: 50%;
}

.advantage-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .advantages-heading .line {
    width: 50px;
  }
}
/* =========================
   SECTORS WE SERVE (INFINITE)
========================= */

.sectors-section {
  background: #f8f8f6;
  padding: 30px 20px;
}

.sectors-container {
  max-width: 1400px;
  margin: auto;
}

/* Heading */
.sectors-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}

.sectors-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.sectors-heading .line {
  width: 80px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}

/* Slider shell */
.sectors-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Track (moves forever) */
.sectors-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: sectorsMarquee 22s linear infinite;
}

/* Pause on hover (smooth UX) */
.sectors-slider:hover .sectors-track {
  animation-play-state: paused;
}

/* Cards */
.sector-card {
  min-width: 240px;
  background: #fff;
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

/* Icon */
.sector-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(202, 164, 74, 0.9);
  background: rgba(202, 164, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #caa44a;
  font-size: 18px;
  flex: 0 0 auto;
}

.sector-card h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #111;
  margin: 0;
}

/* Infinite animation */
@keyframes sectorsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .sector-card {
    min-width: 200px;
    padding: 22px 18px;
  }

  .sectors-heading .line {
    width: 50px;
  }

  .sectors-track {
    animation-duration: 18s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sectors-track {
    animation: none;
  }
}
/* =========================
   ABOUT PAGE HERO
========================= */

.page-hero {
  position: relative;
  height: 60vh;
  background: url("/assets/images/About\ Us\ BG.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-hero-content h1 {
  font-size: clamp(36px, 5vw, 54px);
  margin-bottom: 12px;
}

.page-hero-content p {
  font-size: 16px;
  color: #ddd;
}


/* =========================
   OUR COMPREHENSIVE APPROACH
========================= */

.approach-section {
  background: #f8f8f6; /* light editorial tone */
  width: 100%;
  padding: 100px 20px;
}

.approach-container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.approach-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 55px;
}

.approach-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.approach-heading .line {
  width: 90px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}

/* Content */
.approach-content p {
  font-size: 15.5px;
  line-height: 1.95;
  color: #555;
  margin-bottom: 30px;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .approach-heading .line {
    width: 55px;
  }

  .approach-content p {
    font-size: 15px;
  }
}

/* =========================
   ABOUT PAGE CONTACT FORM
========================= */

.about-contact-section {
  background: #f8f8f6;
  padding: 40px 20px;
}

/* Outer framed box */
.about-contact-box {
  max-width: 1200px;
  margin: auto;
  border: 1px solid rgba(0, 0, 0, 0.6);
  padding: 70px 60px;
  background: #f8f8f6;
}

/* Heading */
.about-contact-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 60px;
}

.about-contact-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.about-contact-heading .line {
  width: 90px;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
}

/* Form */
.about-contact-form {
  max-width: 900px;
  margin: auto;
}

/* Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
}

/* Inputs */
.form-grid input {
  padding: 18px 20px;
  font-size: 14.5px;
  border-radius: 10px;
  border: 1px solid #d5d5d5;
  background: #ffffff;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-grid input::placeholder {
  color: #777;
}

.form-grid input:focus {
  border-color: #caa44a;
  box-shadow: 0 0 0 3px rgba(202, 164, 74, 0.15);
}

/* Submit */
.form-submit {
  text-align: center;
  margin-top: 40px;
}

.form-submit button {
  padding: 14px 36px;
  font-size: 14px;
  background: transparent;
  border: 1.5px solid #caa44a;
  color: #caa44a;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.form-submit button:hover {
  background: #caa44a;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .about-contact-box {
    padding: 50px 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .about-contact-heading .line {
    width: 55px;
  }
}
/* =========================
   ABOUT PAGE – OUR SERVICES
========================= */

.about-services-section {
  background: #f8f8f6;
  padding: 50px 20px;
}

/* Outer frame */
.about-services-box {
  max-width: 1200px;
  margin: auto;
  border: 1px solid rgba(0, 0, 0, 0.6);
  padding: 70px 60px;
  background: #f8f8f6;
}

/* Heading */
.about-services-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 60px;
}

.about-services-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.about-services-heading .line {
  width: 90px;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
}

/* Grid */
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 40px;
}

/* Service Item */
.service-item h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
  position: relative;
  padding-left: 16px;
}

.service-item h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: #caa44a;
  border-radius: 50%;
}

.service-item p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-services-box {
    padding: 50px 30px;
  }

  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .about-services-heading .line {
    width: 55px;
  }
}

/* =========================
   SERVICES PAGE INTRO
========================= */

.services-intro-section {
  background: #f8f8f6;
  padding: 90px 20px;
}

.services-intro-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.services-intro-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 40px;
}

.services-intro-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.services-intro-heading .line {
  width: 90px;
  height: 1px;
  background: rgba(0,0,0,0.5);
}

.services-intro-container p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #555;
}

/* =========================
   PROCESS SECTION
========================= */

.process-section {
  background: #fff;
  padding: 100px 20px;
}

.process-container {
  max-width: 1100px;
  margin: auto;
}

.process-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 60px;
}

.process-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.process-heading .line {
  width: 90px;
  height: 1px;
  background: rgba(0,0,0,0.5);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.process-step span {
  font-size: 32px;
  color: #caa44a;
  font-weight: 600;
}

.process-step h4 {
  margin-top: 12px;
  font-size: 15px;
  color: #111;
}

/* Responsive */
@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PREMIUM OUR SERVICES
========================= */

.premium-services-section {
  background: #f8f8f6;
  padding: 20px 20px;
}

.premium-services-container {
  max-width: 1300px;
  margin: auto;
}

/* Heading */
.premium-services-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 80px;
}

.premium-services-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.premium-services-heading .line {
  width: 90px;
  height: 1px;
  background: rgba(0,0,0,0.4);
}

/* Grid */
.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

/* Card */
.premium-service-card {
  position: relative;
  background: #ffffff;
  padding: 48px 36px;
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  overflow: hidden;
}

/* Gold accent bar (hidden initially) */
.premium-service-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #caa44a, #e6c36b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

/* Hover */
.premium-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.15);
}

.premium-service-card:hover::before {
  transform: scaleX(1);
}

/* Icon */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(202,164,74,0.8);
  background: rgba(202,164,74,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #caa44a;
  font-size: 20px;
  margin-bottom: 22px;
  transition: all 0.45s ease;
}

/* Icon hover enhancement */
.premium-service-card:hover .service-icon {
  background: #caa44a;
  color: #000;
  box-shadow: 0 0 30px rgba(202,164,74,0.6);
}

/* Text */
.premium-service-card h3 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #111;
}

.premium-service-card p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
  .premium-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .premium-services-grid {
    grid-template-columns: 1fr;
  }

  .premium-services-heading .line {
    width: 55px;
  }
}
/* =========================
   COMMUNITIES PAGE
========================= */

.communities-intro {
  background: #f8f8f6;
  padding: 90px 20px;
}

.communities-intro-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.communities-intro p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #555;
}

/* Sections */
.communities-section {
  background: #ffffff;
  padding: 100px 20px;
}

.communities-section.light {
  background: #f8f8f6;
}

.communities-container {
  max-width: 1300px;
  margin: auto;
}

/* Title */
.section-title h3 {
  font-size: 20px;
  margin-bottom: 50px;
  color: #111;
}

/* Grid */
.communities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* =========================
   COMMUNITIES IMAGE GRID
========================= */

.communities-gallery-section {
  background: #ffffff;
  padding: 40px 20px;
}

/* Heading */
.communities-gallery-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 70px;
}

.communities-gallery-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.communities-gallery-heading .line {
  width: 90px;
  height: 1px;
  background: rgba(0,0,0,0.4);
}

/* Grid */
.communities-gallery-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.community-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.12);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.community-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.community-image-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0) 100%
  );
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.community-image-card h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}

.community-image-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Hover */
.community-image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.18);
}

.community-image-card:hover img {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .communities-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .communities-gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* Responsive */
@media (max-width: 1024px) {
  .communities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-value-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .communities-grid {
    grid-template-columns: 1fr;
  }

  .community-value-container {
    grid-template-columns: 1fr;
  }
}

/* =========================
   TEAM PAGE HERO OVERRIDE
========================= */
.team-hero {
  background: url("/assets/images/About\ Us\ BG.png") center/cover no-repeat;
}

/* =========================
   TEAM INTRO
========================= */
.team-intro {
  background: #f8f8f6;
  padding: 90px 20px;
}

.team-intro-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.team-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 40px;
}

.team-heading h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.team-heading .line {
  width: 90px;
  height: 1px;
  background: rgba(0,0,0,0.4);
}

.team-intro-container p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #555;
}

/* =========================
   TEAM GRID
========================= */
.team-section {
  background: #fff;
  padding: 50px 20px;
}

.team-container {
  max-width: 1300px;
  margin: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

/* Card */
.team-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0,0,0,0.10);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  position: relative;
}

.team-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #caa44a, #e6c36b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 95px rgba(0,0,0,0.16);
}

.team-card:hover::before {
  transform: scaleX(1);
}

/* Media */
.team-media {
  height: 240px;
  overflow: hidden;
}

.team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-media img {
  transform: scale(1.08);
}

/* Body */
.team-body {
  padding: 28px 26px 26px;
}

.team-body h3 {
  font-size: 16px;
  color: #111;
  margin-bottom: 8px;
}

.team-role {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #caa44a;
  margin-bottom: 14px;
}

.team-body p {
  font-size: 14.2px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 18px;
}

/* Actions */
.team-actions {
  display: flex;
  gap: 12px;
}

.team-actions a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(202,164,74,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #caa44a;
  background: rgba(202,164,74,0.06);
  transition: all 0.35s ease;
}

.team-actions a:hover {
  background: #caa44a;
  color: #000;
  box-shadow: 0 0 25px rgba(202,164,74,0.6);
}

/* =========================
   TEAM CTA
========================= */
.team-cta {
  position: relative;
  background: url("as") center/cover no-repeat;
  padding: 110px 20px;
  text-align: center;
  color: #fff;
}

.team-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}

.team-cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.team-cta-content h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.team-cta-content p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #ddd;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-heading .line {
    width: 55px;
  }
}
/* =========================
   CONTACT HERO
========================= */
.contact-hero {
  background: url("/assets/images/About\ Us\ BG.png") center/cover no-repeat;
}

/* =========================
   CONTACT INFO
========================= */
.contact-info-section {
  background: #f8f8f6;
  padding: 50px 20px;
}

.contact-info-container {
  max-width: 1200px;
  margin: auto;
}

.contact-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 60px;
}

.contact-heading h2 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-heading .line {
  width: 90px;
  height: 1px;
  background: rgba(0,0,0,0.4);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.contact-info-card {
  background: #fff;
  padding: 45px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 22px 55px rgba(0,0,0,0.08);
  transition: transform 0.45s ease;
}

.contact-info-card:hover {
  transform: translateY(-8px);
}

.contact-info-card i {
  font-size: 28px;
  color: #caa44a;
  margin-bottom: 16px;
}

.contact-info-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #555;
}

/* =========================
   CONTACT FORM
========================= */
.contact-form-section {
  background: #fff;
  padding: 110px 20px;
}

.contact-form-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-form-content h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-form-content p {
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.contact-form-content ul {
  list-style: none;
  padding: 0;
}

.contact-form-content li {
  font-size: 14.5px;
  margin-bottom: 10px;
}

.contact-form-box {
  background: #f8f8f6;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.08);
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 16px;
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-box textarea {
  min-height: 130px;
  resize: none;
}

.contact-form-box button {
  background: #caa44a;
  color: #000;
  border: none;
  padding: 14px;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.35s ease;
}

.contact-form-box button:hover {
  background: #e6c36b;
}

/* =========================
   MAP
========================= */
.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-heading .line {
    width: 55px;
  }
}
/* FORM STATUS MESSAGE */
.form-message {
  margin-top: 14px;
  font-size: 14px;
}

.form-message.sending {
  color: #999;
}

.form-message.success {
  color: #2e8b57;
}

.form-message.error {
  color: #b00020;
}



/* =========================
   CONTACT FORM – HARD FIX
========================= */

.contact-form-box {
  background: #f8f8f6 !important;
  padding: 45px !important;
  border-radius: 18px !important;
  box-shadow: 0 20px 55px rgba(0,0,0,0.08) !important;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  border-radius: 8px !important;
  border: 1px solid #ddd !important;
  font-size: 14px !important;
  margin-bottom: 16px !important;
}

.contact-form-box textarea {
  min-height: 130px !important;
  resize: none !important;
}

.contact-form-box .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}

.contact-form-box button {
  width: 100% !important;
  background: #caa44a !important;
  color: #000 !important;
  border: none !important;
  padding: 14px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
}

.contact-form-box button:hover {
  background: #e6c36b !important;
}

@media (max-width: 768px) {
  .contact-form-box .form-row {
    grid-template-columns: 1fr !important;
  }
}
