* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero {
  position: relative;
  height: 100vh;
  color: white;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(22, 46, 34, 0.3),
      rgba(22, 46, 34, 1));
}

/* NAVBAR */
.navbar {
  position: absolute;
  top: 25px;
  left: 60px;
  right: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  background: #ffffff;
}

.logo {
  font-size: 22px;
  letter-spacing: 2px;
  text-decoration: none;
}

.navbar nav a {
  font-family: "Inter", sans-serif;
  margin: 0 14px;
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
}

.btn-primary {
  font-family: "Inter", sans-serif;
  background: url(images/gold-texture.jpg);
  background-size: cover;
  padding: 10px 22px;
  border-radius: 8px;
  color: #0f3d2e;
  text-decoration: none;
}

/* LEFT TAG */
.left-tag {
  position: absolute;
  top: 40%;
  left: 60px;
  font-size: 12px;
  letter-spacing: 4px;
  opacity: 0.8;
}

/* MAIN TEXT */
.main-text {
  position: absolute;
  top: 32%;
  left: 180px;
}

.main-text h1 {
  font-size: 120px;
  line-height: 0.9;
  font-weight: 400;
}

.line2 {
  position: relative;
  left: 420px;
  /* pushes "Timeless" to right like design */
}

/* RIGHT CONTENT */
.right-content {
  position: absolute;
  top: 45%;
  right: 80px;
  width: 380px;
}

.right-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BUTTONS */
.btn-fill {
  background: url("images/gold-texture.jpg") no-repeat center;
  background-size: cover;
  color: #0f3d2e;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 10px;
}

.btn-outline {
  border: 1px solid #c9a14a;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  background-color: #c9a14a4f;
}

/* BOTTOM LEFT */
.bottom-left {
  position: absolute;
  bottom: 40px;
  left: 60px;
  font-size: 14px;
}

/* BOTTOM RIGHT */
.bottom-right {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  gap: 60px;
}

.bottom-right h3 {
  font-size: 40px;
}

.bottom-right p {
  font-size: 20px;
  opacity: 0.8;
  color: #c9a14a;
  font-family: "Inter", sans-serif;
}

.main-center-text {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 45%;
}

.main-center-text h1 {
  font-family: "Playfair", serif;
  text-transform: capitalize;
  font-size: 130px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.center-1 {
  display: flex;
  height: 100px;
  justify-content: space-between;
}

.center-1 div {
  flex: 500px 0 0;
}

.center-1 div:nth-child(1) {
  flex: 300px 0 0;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.center-1 div:nth-child(2) {
  position: relative;
  bottom: 30px;
}

.center-2 {
  display: flex;
  justify-content: space-between;
}

.center-2 div:nth-child(1) {
  flex: 450px 0 0;
}

.center-2 div:nth-child(2) {
  position: relative;
  top: 30px;
  font-family: "Inter", sans-serif;
  line-height: 2em;
}

.center-3 {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.center-3 a {
  font-family: "Inter", sans-serif;
}

/* REVEAL CONTAINER */
.reveal {
  overflow: hidden;
  display: inline-block;
}

/* TEXT INITIAL STATE */
.reveal-text {
  transform: translateY(100%);
  opacity: 0;
}

/* ANIMATION */
.reveal-text.animate {
  animation: revealUp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* KEYFRAMES */
@keyframes revealUp {
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* DELAYS */
.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 1s;
}

/* BOTTOM LEFT LAYOUT */
.bottom-left {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Inter", sans-serif;
}

/* AVATAR GROUP */
.avatars {
  display: flex;
}

/* INDIVIDUAL IMAGE */
.avatars img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -15px;
  background: #0f3d2e;
}

/* FIRST IMAGE NO OVERLAP */
.avatars img:first-child {
  margin-left: 0;
}

/* TEXT */
.bottom-left span {
  font-size: 18px;
  font-weight: 400;
}

/* SECTION */
.about-section {
  background: #0f3d2e;
  color: #fff;
  padding: 120px 60px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TOP */
.about-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag {
  color: #c9a14a;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

.about-left h2 {
  font-size: 60px;
  font-weight: 400;
  margin-top: 10px;
  line-height: 1.2;
}

/* BUTTON */
.about-btn {
  background: url("images/gold-texture.jpg");
  background-size: cover;
  color: #0f3d2e;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
}

/* FEATURES */
.features {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  gap: 40px;
}

.icon {
  font-size: 28px;
  color: #c9a14a;
}

.feature h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.feature p {
  font-size: 14px;
  color: #bbb;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

/* IMAGE CONTAINER */
.about-images {
  display: flex;
  gap: 30px;
  margin-top: 80px;
  align-items: flex-end;
  /* 🔥 KEY LINE */
}

.about-image-1,
.about-image-2,
.about-image-3 {
  flex: 350px 0 0;
  border: 2px solid orange;
}

/* COMMON IMAGE */
.about-images img {
  width: 100%;
  max-width: 350px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s;
}

/* DIFFERENT HEIGHTS (TOP STAGGER) */
.about-images img[src="images/h1_img-1.jpg"] {
  height: 460px;
}

.about-images img[src="images/h1_img-2.jpg"] {
  height: 400px;
}

.about-images img[src="images/h1_img-3.jpg"] {
  height: 340px;
}

/* HOVER */
.about-images img:hover {
  transform: scale(1.03);
}

.about-icon {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.about-icon h3 {
  font-weight: 200;
}

.about-images p {
  font-size: 14px;
  margin: 1em 0 3em 0;
  width: 340px;
  color: #d1d1d1;
}

.about-top h2 {
  font-family: "Playfair", serif;
}

.about-icon img {
  width: 50px;
}

.about-images {
  font-family: "Inter", sans-serif;
}

.about-image {
  transform: translateY(80px);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image.show {
  transform: translateY(0);
  opacity: 1;
}

.about-image:nth-child(1) {
  transition-delay: 0.2s;
}

.about-image:nth-child(2) {
  transition-delay: 0.7s;
}

.about-image:nth-child(3) {
  transition-delay: 1.2s;
}

/* SECTION */
.project-highlight {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* BG IMAGE */
.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("images/h1_bg-2.jpg") center/cover no-repeat;
  z-index: 0;
}

/* DARK OVERLAY */
.dark-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 1));
  z-index: 1;
}

.project-content {
  width: 100%;
  position: absolute;
  padding: 0 8em;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* STATS CARDS */
.stats-cards {
  position: absolute;
  top: 320px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  z-index: 2;
}

/* CARD */
.card {
  width: 260px;
  padding: 2em;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* LABEL */
.card .label {
  font-size: 13px;
  color: #c9a14a;
  font-family: "Inter", sans-serif;
}

/* NUMBER */
.card h2 {
  font-size: 60px;
  font-weight: 400;
  margin-top: 60px;
  text-align: center;
}

/* TAG */
.project-content .tag {
  font-size: 14px;
  color: #c9a14a;
  font-family: "Inter", sans-serif;
}

/* HEADING */
.project-content h2 {
  font-size: 70px;
  font-weight: 400;
  margin: 20px 0;
  line-height: 1.2;
}

/* BUTTON */
.project-btn {
  position: relative;
  z-index: 99;
  display: inline-block;
  background: url(images/gold-texture.jpg);
  background-size: cover;
  color: #0f3d2e;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  transition: 0.3s;
}

.project-btn:hover {
  transform: translateY(-3px);
}

.card h2 {
  font-family: "Inter", sans-serif;
}

.card span {
  display: block;
}

.card span:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.5);
  left: 10%;
  top: 5em;
}

/* =========================
   SECTION BASE
========================= */
.projects-accordion {
  background-color: #0f3d2e;
  padding: 100px 80px;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.accordion-container {
  max-width: 900px;
  margin: auto;
}

/* =========================
   ITEM
========================= */
.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 25px 0;
  transition: 0.3s;
}

/* =========================
   HEADER
========================= */
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-header h3 {
  flex: 1;
  margin-left: 20px;
  font-size: 28px;
  font-weight: 400;
  transition: 0.3s;
}

/* INDEX */
.index {
  color: #c9a14a;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ARROW */
.arrow {
  font-size: 18px;
  transition: 0.3s;
}

/* ACTIVE STATE */
.accordion-item.active .accordion-header h3 {
  color: #c9a14a;
}

.accordion-item.active .arrow {
  transform: rotate(45deg);
  opacity: 1;
}

/* =========================
   CONTENT
========================= */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

/* OPEN STATE */
.accordion-item.active .accordion-content {
  max-height: 600px;
  margin-top: 25px;
}

/* INNER FLEX */
.accordion-inner {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* =========================
   LEFT CARD
========================= */
.content-left {
  width: 50%;
  background: #0f3d2e;
  backdrop-filter: blur(12px);
  padding: 22px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* DESCRIPTION */
.desc {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* FEATURES */
.accord-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 20px;
}

.accord-features span {
  font-size: 13px;
  color: #c9a14a;
}

/* BOTTOM */
.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.bottom span {
  color: #fff;
}

.bottom a {
  color: #c9a14a;
  text-decoration: none;
  transition: 0.3s;
}

.bottom a:hover {
  transform: translateX(5px);
}

/* =========================
   IMAGE
========================= */
/* IMAGE CONTAINER */
.content-right {
  width: 50%;
  display: flex;
  align-items: center;
}

/* LANDSCAPE IMAGE */
.content-right img {
  width: 100%;
  height: 320px;
  /* 🔥 control height */
  object-fit: cover;
  border-radius: 14px;
}

/* IMAGE HOVER */
.accordion-item.active .content-right img:hover {
  transform: scale(1.03);
}

/* =========================
   HOVER EFFECT
========================= */
.accordion-header:hover h3 {
  color: #c9a14a;
}

.bottom ::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 90%;
  background-color: #ffffff;
  opacity: 0.2;
  left: 5%;
  bottom: 5em;
}

/* SECTION */
.video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* VIDEO */
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* CONTENT CENTER */
.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.video-content .tag {
  font-size: 14px;
  color: #c9a14a;
  font-family: "Inter", sans-serif;
}

.video-content h2 {
  font-size: 80px;
  font-weight: 400;
  margin-top: 10px;
  font-family: "Playfair", serif;
}

/* =========================
   MARQUEE
========================= */
.marquee {
  position: absolute;
  bottom: 40px;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

/* TRACK */
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

/* GROUP */
.marquee-group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
}

/* CAPSULE */
.marquee-group span {
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}

/* ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* SECTION */
.offer-section {
  height: 100vh;
  position: relative;
  padding: 120px 60px 200px;
  background: #0f3d2e;
  color: #fff;
  overflow: hidden;
}

/* HEADER */
.offer-header {
  text-align: center;
}

.offer-header .tag {
  font-size: 12px;
  letter-spacing: 4px;
  color: #c9a14a;
  position: relative;
}

.offer-header h2 {
  font-size: 50px;
  font-weight: 400;
  margin-top: 20px;
  line-height: 1.3;
}

/* BACKGROUND IMAGE */
.offer-bg {
  position: absolute;
  top: 280px;
  left: 0;
  width: 100%;
  height: 300px;
  background: url("office-parallax.jpg") center/cover no-repeat;
  background-attachment: fixed;
  /* 🔥 PARALLAX */
  z-index: 0;
}

/* DARK OVERLAY */
.offer-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}

/* CARDS CONTAINER */
.offer-cards {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 200px;
  z-index: 2;
}

/* CARD */
.offer-card {
  width: 300px;
  background: rgba(0, 0, 0, 0.85);
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  /* INITIAL STATE (LOWER) */
  transform: translateY(150px);
  opacity: 0;
}

/* ICON */
.offer-card .icon {
  font-size: 24px;
  margin-bottom: 10px;
  color: #c9a14a;
}

/* TITLE */
.offer-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.offer-header {
  margin: -4em;
}

.offer-header h2 {
  position: relative;
  z-index: 99;
}

/* TEXT */
.offer-card p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ANIMATION ACTIVE */
.offer-section.show .offer-card {
  transform: translateY(0);
  opacity: 1;
}

/* STAGGER EFFECT */
.offer-section.show .offer-card:nth-child(1) {
  transition-delay: 0.2s;
}

.offer-section.show .offer-card:nth-child(2) {
  transition-delay: 0.4s;
}

.offer-section.show .offer-card:nth-child(3) {
  transition-delay: 0.6s;
}

/* CARDS CONTAINER */
.offer-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 280px;
  position: relative;
  z-index: 2;
}

.offer-card {
  position: relative;
  width: 320px;
  background: #121212;
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);

  opacity: 0;
  transition:
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease;
  bottom: 30px;
}

/* CENTER CARD SLIGHTLY HIGHER */

/* ICON BOX */
.icon-box {
  width: 50px;
  height: 50px;
  background: #1a1a1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* ICON */
.icon-box i {
  font-size: 18px;
  color: #c9a14a;
}

/* TITLE */
.offer-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}

/* TEXT */
.offer-card p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BUTTON */
.offer-card a {
  background: url(images/gold-texture.jpg);
  background-size: cover;
  color: #000000;
  font-family: "Inter", sans-serif;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 0.2em;

  text-decoration: none;
  transition: 0.3s;
}

.center-card {
  position: relative;
  bottom: 60px;
}

.testimonial-section {
  background: #0f3d2e;
  color: #fff;
  padding: 15em 10em;
  font-family: "Inter", sans-serif;
}

.testimonial-container {
  display: flex;
  gap: 60px;
}

/* LEFT */
.testimonial-left {
  width: 35%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 40px;
}

.tag {
  color: #c9a14a;
  font-size: 14px;
}

.rating {
  font-size: 90px;
  margin: 20px 0;
}

.stars {
  color: #c9a14a;
  font-size: 22px;
  margin-bottom: 10px;
}

/* RIGHT */
.testimonial-right {
  width: 65%;
  position: relative;
}

/* INITIAL STATE */
.slide {
  display: none;

  transform: scale(0.1);
  opacity: 0;
  transition:
    transform 2.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s ease;
}

/* ACTIVE SLIDE (VISIBLE IN SLIDER) */
.slide.active {
  display: block;
}

/* REVEAL STATE (ON SCROLL) */
.testimonial-section.show .slide.active {
  transform: scale(1);
  opacity: 1;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* QUOTE */
.quote {
  font-size: 80px;
  color: #c9a14a;
}

/* TEXT */
.text {
  font-size: 28px;
  line-height: 1.4;
  margin: 20px 0 40px;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.user h4 {
  margin: 0;
}

.user span {
  color: #aaa;
  font-size: 14px;
}

/* CONTROLS */
.controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 15px;
}

.controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.controls button:hover {
  background: #c9a14a;
  color: #0f3d2e;
}

/* SECTION */
.faq-section {
  background: #0f3d2e;
  color: #fff;
  padding: 100px 80px;
  font-family: "Inter", sans-serif;
}

/* LAYOUT */
.faq-container {
  display: flex;
  gap: 60px;
}

/* LEFT */
.faq-left {
  width: 25%;
}

.faq-tag {
  font-size: 12px;
  letter-spacing: 4px;
  color: #c9a14a;
  line-height: 2;
  position: relative;
}

.faq-tag::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #c9a14a;
  margin-top: 10px;
}

/* RIGHT */
.faq-right {
  width: 75%;
}

.faq-heading {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 50px;
  font-family: "Playfair", serif;
}

/* GRID */
.faq-grid {
  display: flex;
  gap: 40px;
}

.faq-col {
  width: 50%;
}

/* ITEM */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 20px;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
}

.faq-question .icon {
  color: #c9a14a;
  font-size: 20px;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
  transition: max-height 0.4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ICON COLOR */
.faq-item span {
  color: #c9a14a;
  padding: 1em;
}

/* INITIAL STATE */
.faq-item {
  transform: translateY(80px);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* REVEALED STATE */
.faq-item.show {
  transform: translateY(0);
  opacity: 1;
}

/* STAGGER EFFECT (premium feel) */
.faq-item:nth-child(1) {
  transition-delay: 0.1s;
}

.faq-item:nth-child(2) {
  transition-delay: 0.2s;
}

.faq-item:nth-child(3) {
  transition-delay: 0.3s;
}

.faq-item:nth-child(4) {
  transition-delay: 0.4s;
}

.faq-item:nth-child(5) {
  transition-delay: 0.5s;
}

.faq-item:nth-child(6) {
  transition-delay: 0.6s;
}

.faq-item {
  transform: translateY(80px);
  opacity: 0;
  filter: blur(8px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.show {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

/* SECTION */
.contact-section {
  background: url(emerald-green-texture.jpeg);
  background-size: cover;
  color: #fff;
  padding: 100px 80px;
  font-family: "Inter", sans-serif;
}

.contact-container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT */
.contact-left {
  width: 50%;
}

.contact-left h2 {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 50px;
  font-family: "Playfair", serif;
}

/* INFO GRID */
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
}

.contact-info span {
  font-size: 13px;
  color: #aaa;
}

.contact-info h4 {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 400;
}

/* LINK */
.link {
  text-decoration: underline;
  cursor: pointer;
  color: #c9a14a;
}

/* DIVIDER */
.divider {
  height: 1px;
  background: rgba(217, 186, 160, 0.3);
  margin: 50px 0;
}

/* BOOK CALL */
.book-call h3 {
  color: #c9a14a;
  margin-bottom: 10px;
  font-weight: 400;
}

.book-call p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 20px;
}

/* AGENT */
.agent {
  display: flex;
  align-items: center;
  gap: 15px;
}

.agent img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.agent span {
  font-size: 13px;
  color: #aaa;
}

/* RIGHT */
.contact-right {
  width: 50%;
  display: flex;
  justify-content: center;
}

/* FORM BOX */
.form-box {
  width: 100%;
  max-width: 480px;
  background: #111;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(217, 186, 160, 0.2);
}

/* FORM TITLE */
.form-box h3 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: "Playfair", serif;
}

/* INPUTS */
.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  background: #0f3d2e;
  border: 1px solid rgba(217, 186, 160, 0.2);
  border-radius: 30px;
  padding: 16px 20px;
  margin-bottom: 15px;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

/* FOCUS EFFECT */
.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  border-color: #c9a14a;
}

/* TEXTAREA */
.form-box textarea {
  height: 120px;
  border-radius: 20px;
  resize: none;
}

/* BUTTON */
.form-box button {
  width: 100%;
  padding: 16px;
  border-radius: 30px;
  border: none;
  background: #c9a14a;
  color: #0f3d2e;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

/* BUTTON HOVER */
.form-box button:hover {
  transform: translateY(-2px);
  background: #e6c9b0;
}

/* GLOBAL CURSOR GLOW */
.cursor-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle,
      rgba(217, 186, 160, 0.12),
      transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 1;
  transition: transform 0.08s linear;
}

/* OPTIONAL: Make it more premium */
.cursor-glow::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
      rgba(217, 186, 160, 0.25),
      transparent 40%);
}

/* WHEN VISIBLE */

/* LEFT SIDE */
.contact-left {
  transform: translateX(-80px);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* RIGHT SIDE */
.contact-right {
  transform: translateX(80px);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVATE */
.contact-section.show .contact-left {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.3s;
}

.contact-section.show .contact-right {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.5s;
}

.form-box {
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section.show .form-box {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition-delay: 0.7s;
}

/* SECTION BACKGROUND */
.footer-section {
  background: url("images/project_13.jpg") center/cover no-repeat;
  padding-top: 120px;
  position: relative;
  color: #fff;
  padding-bottom: 3em;
  font-family: "Inter", sans-serif;
}

/* DARK OVERLAY */
.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

/* =========================
   MARQUEE
========================= */
.marquee-1 {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.marquee-track-1 {
  display: inline-flex;
  gap: 100px;
  animation: marquee 20s linear infinite;
}

.marquee-1 span {
  font-size: 90px;
  font-weight: 300;
  opacity: 0.9;
}

/* SEAMLESS LOOP */
@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
   FOOTER BOX
========================= */
.footer-container {
  position: relative;
  z-index: 2;

  margin: 80px auto 0 auto;
  width: 90%;
  padding: 60px;
  background: rgba(20, 15, 10, 0.2);
  backdrop-filter: blur(15px);

  border-radius: 20px;
  display: flex;
  justify-content: space-between;
}

/* LEFT */
.footer-left {
  width: 25%;
}

.logo {
  font-size: 32px;
  color: #c9a14a;
}

.follow {
  margin-bottom: 10px;
  color: #aaa;
}

.socials {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(217, 186, 160, 0.3);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #c9a14a;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.socials a:hover {
  background: #c9a14a;
  color: #0f3d2e;
  transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-left p {
  font-size: 13px;
  color: #888;
}

/* =========================
   LINKS
========================= */
.footer-links {
  width: 70%;
  display: flex;
  justify-content: space-between;
}

.col h4 {
  font-size: 14px;
  margin-bottom: 20px;
  color: #c9a14a;
  position: relative;
}

.col h4::before {
  content: "▪";
  margin-right: 8px;
}

.col a {
  display: block;
  margin-bottom: 10px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.col a:hover {
  color: #c9a14a;
}

.navbar {
  position: absolute;
  top: 0;
  width: 95%;
  z-index: 10;
  padding: 20px 60px;
  background: #ffffff;
}

.nav-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-size: 22px;
  color: #c9a14a;
  font-weight: 500;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #c9a14a;
}

/* BUTTON */
.nav-btn {
  background: #c9a14a;
  color: #0f3d2e;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #e6c9b0;
}

.about-hero,
.projects-hero {
  height: 100vh;
  background: url("about-us\ -hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(22, 46, 34, 0.3),
      rgba(22, 46, 34, 1));
  z-index: 1;
}

.about-content {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* SMALL TEXT */
.about-tag {
  font-family: "Inter", sans-serif;
  letter-spacing: 6px;
  font-size: 14px;
  color: #fff;
}

/* BIG TEXT */
.about-content h1 {
  font-size: 173px;
  font-weight: 300;
  color: #fff;
  font-family: "Playfair Display", serif;
}

.project-content h1 {
  font-size: 100px;

  font-weight: 300;
  color: #fff;
  font-family: "Playfair Display", serif;
}

.about-history {
  background: #0f3d2e;
  padding: 120px 0;
}

.container {
  width: 85%;
  margin: auto;
}

/* GRID */
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT SIDE */
.history-left {
  position: sticky;
  top: 450px;
}

.history-tag {
  color: #c9a14a;
  font-size: 12px;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 20px;
}

.history-left h2 {
  font-size: 56px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}

/* RIGHT SIDE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}

/* CARD */
.card-timeline {
  display: flex;
  gap: 20px;
  background: #111;
  padding: 20px;
  border-radius: 16px;
  width: 520px;
  transition: 0.4s;
}

/* IMAGE */
.card-timeline img {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  object-fit: cover;
}

/* TEXT */
.card-content h2 {
  font-size: 36px;
  color: #c9a14a;
}

.card-content h4 {
  color: #fff;
  margin: 5px 0;
}

.card-content p {
  font-size: 13px;
  color: #aaa;
}

/* IMAGE CONTAINER */
.img-box {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  /* IMPORTANT */
  flex-shrink: 0;
}

/* IMAGE */
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

/* HOVER EFFECT */
.card:hover .img-box img {
  transform: scale(1.4);
}

/* SECTION */
.about-intro {
  background: #0f3d2e;
  padding: 120px 0;
  color: #fff;
}

/* CONTAINER */
.container {
  width: 85%;
  margin: auto;
}

/* GRID */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ================= LEFT ================= */

/* TAG */
.intro-tag {
  font-family: "Inter", sans-serif;
  color: #c9a14a;
  font-size: 13px;
  letter-spacing: 2px;
}

.tab-btn {
  font-family: "Inter", sans-serif;
}

.tab-content p {
  font-family: "Inter", sans-serif;
}

.intro-btn {
  font-family: "Inter", sans-serif;
}

/* HEADING */
.intro-left h2 {
  font-size: 52px;
  font-weight: 300;
  margin: 20px 0;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}

/* ================= TABS ================= */

.intro-tabs {
  display: flex;
  gap: 15px;
  margin: 25px 0;
}

.tab-btn {
  background: transparent;
  border: none;
  color: #aaa;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.tab-btn:hover {
  color: #fff;
}

/* ACTIVE TAB */
.tab-btn.active {
  background: url(images/gold-texture.jpg);
  background-size: cover;
  color: #0f3d2e;
}

.tab-btn.active::after {
  width: 100%;
}

/* ================= TAB CONTENT ================= */

.tab-content {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.tab-content.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ================= DIVIDER ================= */

.divider {
  height: 1px;
  background: #808080;
  margin: 30px 0;
  width: 90%;
}

/* ================= FEATURES ================= */

.intro-features {
  display: flex;
  gap: 60px;
}

.intro-features p {
  margin-bottom: 10px;
  color: #ccc;
  font-size: 14px;
}

/* ================= BUTTON ================= */

.intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.intro-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(images/gold-texture.jpg);
  background-size: cover;
  color: #0f3d2e;
  height: 40px;
  width: 40px;
  font-size: 30px;
  border-radius: 50%;
  transition: 0.3s;
}

.intro-btn:hover span {
  transform: rotate(45deg);
}

.about-right-new {
  position: relative;
  width: 500px;
  height: 420px;
}

/* BACK IMAGE */
.img-back {
  position: relative;
  width: 400px;
  height: 320px;
  overflow: hidden;
}

.img-back img {
  border: 20px solid #0f3d2e;
  position: absolute;
  top: -20%;
  /* extra space for movement */
  left: 0;
  width: 100%;
  height: 140%;
  /* 🔥 bigger than container */
  object-fit: cover;
  will-change: transform;
}

/* FRONT IMAGE */
.img-front {
  position: relative;
  width: 400px;
  height: 320px;
  overflow: hidden;
  top: -200px;
  left: 300px;
  border: 20px solid #0f3d2e;
}

.img-front img {
  position: absolute;
  top: -20%;
  /* extra space for movement */
  left: 0;
  width: 100%;
  height: 140%;
  /* 🔥 bigger than container */
  object-fit: cover;
  will-change: transform;
}

/* SIGNATURE */
.signature {
  position: absolute;
  bottom: -30px;
  right: 20px;
  text-align: right;
}

.signature p {
  font-family: cursive;
  font-size: 18px;
  margin: 0;
}

.signature span {
  font-size: 12px;
  color: gray;
}

.residence-section {
  background: #0f3d2e;
  color: #fff;
  padding: 100px 80px;
  font-family: "Inter", sans-serif;
}

.residence-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.section-tag {
  color: #c9a14a;
  font-size: 14px;
}

.residence-left h2 {
  font-size: 50px;
  font-family: "Playfair Display", serif;
  margin: 10px 0 40px;
}

/* TABS */
.residence-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.residence-tab {
  border: 1px solid #c9a14a;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s;
}

.residence-tab span {
  color: #c9a14a;
  margin-right: 10px;
}

.residence-tab i {
  color: #c9a14a;
}

/* ACTIVE TAB */
.residence-tab.active {
  border: none;
  background: url(images/gold-texture.jpg);
  background-size: cover;
  color: #0f3d2e;
}

.residence-tab.active span,
.residence-tab.active i {
  color: #0f3d2e;
}

/* RIGHT IMAGE */
.residence-right {
  position: relative;
}

.residence-right img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

/* OVERLAY */
.residence-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;

  display: flex;
  justify-content: space-between;

  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 10px;
}

/* TEXT */
.overlay-left h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.overlay-left p {
  font-size: 14px;
  color: #ccc;
  max-width: 250px;
}

/* FEATURES */
.overlay-right p {
  font-size: 14px;
  margin-bottom: 6px;
  color: #c9a14a;
}

.difference-section {
  position: relative;
  padding: 120px 80px;
  color: #fff;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

/* BACKGROUND IMAGE */
.difference-bg {
  position: absolute;
  inset: 0;
  background: url("difference.jpg") center/cover no-repeat;
  z-index: 0;
}

/* DARK OVERLAY */
.difference-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

/* GRID */
.difference-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.diff-tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #c9a14a;
}

.difference-left h2 {
  font-size: 60px;
  font-family: "Playfair Display", serif;
  margin: 20px 0;
}

.difference-left p {
  color: #bbb;
  max-width: 400px;
  line-height: 1.7;
}

/* RIGHT GRID */
.difference-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* CARD */
.diff-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 16px;
  transition: 0.4s;
}

/* ICON */
.icon {
  width: 50px;
  height: 50px;
  background: url(images/gold-texture.jpg);
  background-size: cover;
  color: #0f3d2e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
  font-size: 18px;
}

/* TITLE */
.diff-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* LINE */
.line {
  width: 100%;
  height: 1px;
  background: rgba(217, 186, 160, 0.3);
  margin: 15px 0;
}

/* TEXT */
.diff-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* HOVER EFFECT */
.diff-card:hover {
  transform: translateY(-8px);
  background: rgba(217, 186, 160, 0.08);
}

.diff-card:nth-child(1) {
  transform: translateY(40px);
}

.diff-card:nth-child(2) {
  transform: translateY(-40px);
}

.diff-card:nth-child(3) {
  transform: translateY(40px);
}

.diff-card:nth-child(4) {
  transform: translateY(-40px);
}

.team-section {
  background: #0f3d2e;
  color: #ffffff;
  padding: 100px 80px;
  font-family: "Inter", sans-serif;
}

/* CONTAINER */
.team-container {
  max-width: 1200px;
  margin: auto;
}

/* TOP LAYOUT */
.team-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

/* LEFT */
.team-left {
  width: 50%;
}

.team-tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #c9a14a;
}

.team-left h2 {
  font-size: 50px;
  font-family: "Playfair Display", serif;
  margin: 15px 0;
  line-height: 1.2;
}

.team-left p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 450px;
}

/* BUTTON */
.team-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: url(images/gold-texture.jpg);
  background-size: cover;
  color: #0f3d2e;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.team-btn:hover {
  transform: translateY(-3px);
}

/* HERO IMAGE */
.team-hero {
  width: 45%;
}

.team-hero img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.team-card {
  text-align: center;
}

/* IMAGE */
.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
  transition: 0.4s;
}

/* HOVER */
.team-card img:hover {
  transform: scale(1.05);
}

/* NAME */
.team-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

/* ROLE */
.team-card span {
  font-size: 13px;
  color: #c9a14a;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0f3d2e;
  color: #fff;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: #ffffff;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  color: #c9a14a;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #c9a14a;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #0f3d2e;
  border: 1px solid rgba(217, 186, 160, 0.2);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 200px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #aaa;
}

.dropdown-menu a:hover {
  background: #c9a14a;
  color: #0f3d2e;
}

/* ================= PROJECTS ================= */
.projects-section {
  padding: 80px;
}

/* FILTERS */
.filters {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  align-items: center;
}

.filters select {
  padding: 12px 18px;
  border-radius: 30px;
  border: none;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.filters select:hover {
  background: #222;
}

#searchBtn {
  background: url(images/gold-texture.jpg);
  background-size: cover;
  color: #0f3d2e;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  color: #0f3d2e;
  font-weight: 500;
  transition: 0.3s;
}

#searchBtn:hover {
  transform: translateY(-2px);
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s;
}

/* DARK OVERLAY */
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0f3d2e, transparent 60%);
}

/* LOCATION TAG */
.tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  color: #c9a14a;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  z-index: 2;
}

/* TITLE */
.project-card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  font-size: 18px;
  font-weight: 500;
}

/* HOVER EFFECT */
.project-card:hover img {
  transform: scale(1.08);
}

.project-card:hover {
  transform: translateY(-5px);
}

.property-details {
  background: #0f3d2e;
  color: #fff;
  padding: 80px;
  font-family: "Inter", sans-serif;
}

.property-title {
  font-size: 40px;
  margin-bottom: 20px;
}

/* IMAGE */
.property-image img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 30px;
}

/* INFO BAR */
.property-info {
  display: flex;
  justify-content: space-between;
  background: #111;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-item i {
  background: #c9a14a;
  color: #0f3d2e;
  padding: 10px;
  border-radius: 50%;
}

.info-item span {
  font-size: 12px;
  color: #aaa;
}

.info-item p {
  font-size: 14px;
}

/* CONTENT */
.property-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* LEFT */
.property-left h2,
.property-left h3 {
  margin-top: 20px;
  color: #c9a14a;
}

.property-left p {
  color: #ccc;
  line-height: 1.7;
  margin-top: 10px;
}

.feature-list {
  margin-top: 15px;
}

.feature-list li {
  margin-bottom: 8px;
  color: #c9a14a;
}

/* RIGHT */
.features-box {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.features-box h3 {
  margin-bottom: 15px;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

/* CONTACT CARD */
.contact-card {
  background:
    linear-gradient(to top, #0f3d2e, transparent),
    url("p2.jpg") center/cover;
  padding: 25px;
  border-radius: 15px;
}

.contact-card h4 {
  margin-bottom: 15px;
}

.contact-card h3 {
  color: #c9a14a;
}

.contact-card span {
  color: #ccc;
}

.property-page {
  background: #0f3d2e;
  color: #fff;
  padding: 80px;
  font-family: "Inter", sans-serif;
}

.property-title {
  font-size: 38px;
  margin-bottom: 20px;
}

/* HERO IMAGE */
.property-hero img {
  width: 450px;
  border-radius: 15px;
  margin-bottom: 30px;
}

/* META STRIP */
.property-meta {
  display: flex;
  justify-content: space-between;
  background: #111;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.meta-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-box i {
  background: #c9a14a;
  color: #0f3d2e;
  padding: 10px;
  border-radius: 50%;
}

.meta-box span {
  font-size: 12px;
  color: #aaa;
}

.meta-box p {
  font-size: 14px;
}

/* BODY */
.property-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* LEFT */
.property-left h2,
.property-left h3 {
  color: #c9a14a;
  margin-top: 20px;
}

.property-left p {
  color: #bbb;
  line-height: 1.7;
  margin-top: 10px;
}

.features-list {
  margin-top: 15px;
}

.features-list li {
  color: #c9a14a;
  margin-bottom: 8px;
}

/* RIGHT */
.key-features {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.key-features h3 {
  margin-bottom: 15px;
}

.feature-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

/* AGENT CARD */
.agent-card {
  position: relative;
  background: url("p2.jpg") center/cover;
  border-radius: 15px;
  padding: 25px;
  overflow: hidden;
}

.agent-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0f3d2e, transparent);
}

.agent-content {
  position: relative;
  z-index: 2;
}

.agent-content h3 {
  color: #c9a14a;
}

.agent-content span {
  color: #ccc;
}

/* =========================
   PROJECT GRID (#0F3D2E BG)
========================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 80px 60px;
  background: #0f3d2e;
}

/* =========================
   CARD BASE
========================= */
.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* =========================
   IMAGE
========================= */
.card-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

/* IMAGE ZOOM */
.project-card:hover .card-image img {
  transform: scale(1.08);
}

/* =========================
   DARK HOVER OVERLAY
========================= */
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: 0.4s ease;
}

.project-card:hover::after {
  opacity: 1;
}

/* =========================
   BOTTOM WHITE BOX
========================= */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #0f3d2e;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* =========================
   TITLE
========================= */
.card-overlay h3 {
  font-family: "Playfair", serif;
  font-size: 20px;
  font-weight: 400;
  color: #c9a14a;
}

/* =========================
   ARROW BUTTON
========================= */
.arrow-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  flex-shrink: 0;
  left: 250px;
}

/* HOVER EFFECT */
.project-card:hover .arrow-btn {
  background: #c9a14a;
  color: #0f3d2e;
  transform: translateX(6px);
}

/* =========================
   SMOOTH ENTRY ANIMATION
========================= */
.project-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.project-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   SECTION
========================= */
.team-section-new {
  padding: 100px 60px;
  background: #f5f5f5;
}

/* HEADER */
.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header .tag {
  font-size: 14px;
  color: #8fd14f;
  margin-bottom: 10px;
}

.team-header h2 {
  font-size: 42px;
  font-weight: 500;
  color: #222;
}

/* =========================
   GRID
========================= */
.team-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =========================
   CARD
========================= */
.team-card-new {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.team-card-new img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

/* =========================
   OVERLAY
========================= */
.overlay {
  z-index: 99;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;

  background: linear-gradient(to bottom,
      rgba(22, 46, 34, 0.3),
      rgba(22, 46, 34, 1));

  transition: 0.4s ease;
}

/* NAME */
.overlay h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 5px;
}

/* ROLE */
.overlay p {
  color: #ccc;
  font-size: 13px;
}

/* =========================
   SOCIAL ICONS
========================= */
.socials {
  margin-top: 15px;
  display: flex;
  gap: 10px;

  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease;
}

.socials a {
  width: 35px;
  height: 35px;
  background: #fff;
  color: #0f3d2e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: 0.3s;
}

/* HOVER ICON */
.socials a:hover {
  background: #8fd14f;
  color: #0f3d2e;
}

/* =========================
   HOVER EFFECT
========================= */
.team-card-new:hover img {
  transform: scale(1.05);
}

.team-card-new:hover .socials {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE BOX */
.img-box {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  border-radius: 16px;
}

/* IMAGES */
.img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* DEFAULT */
.img1 {
  transform: translateX(0%);
  z-index: 2;
}

.img2 {
  transform: translateX(100%);
  z-index: 1;
}

/* HOVER */
.team-card-new:hover .img1 {
  transform: translateX(-100%);
}

.team-card-new:hover .img2 {
  transform: translateX(0%);
}

.team-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 60px;
  justify-items: center;
}

/* DEFAULT SIZE */
.team-card-new {
  width: 400px;
}

/* POSITIONING PATTERN */
.team-card-new:nth-child(1) {
  grid-column: 2;
}

.team-card-new:nth-child(2) {
  grid-column: 1;
}

.team-card-new:nth-child(3) {
  grid-column: 3;
}

.team-card-new:nth-child(4) {
  grid-column: 2;
}

.team-card-new:nth-child(5) {
  grid-column: 1;
}

.team-card-new:nth-child(6) {
  grid-column: 3;
}

/* ================= TEAM DETAILS ================= */

.team-details {
  background: #0f3d2e;
  color: #fff;
  padding: 100px 80px;
  font-family: "Inter", sans-serif;
}

.team-top {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* IMAGE */
.team-image {
  position: relative;
  width: 420px;
}

.team-image img {
  width: 100%;
  border-radius: 16px;
}

/* EXPERIENCE TAG */
.experience-tag {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  background: #c9a14a;
  color: #0f3d2e;
  padding: 20px 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
  letter-spacing: 3px;
  border-radius: 6px;
}

/* INFO */
.team-info {
  flex: 1;
}

.team-info h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 15px;
}

.team-info h2 span {
  color: #c9a14a;
  font-size: 16px;
}

.team-info p {
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* CONTACT INFO */
.contact-info {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-info strong {
  color: #c9a14a;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a14a;
  transition: 0.3s;
}

.social-icons i:hover {
  background: #c9a14a;
  color: #0f3d2e;
}

/* BIO */
.bio {
  margin-bottom: 60px;
}

.bio h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #c9a14a;
}

.bio p {
  color: #bbb;
  line-height: 1.7;
}

/* BOTTOM GRID */
.team-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* SKILLS */
.skills h3 {
  color: #c9a14a;
  margin-bottom: 10px;
}

.skills p {
  color: #bbb;
  margin-bottom: 20px;
}

/* SKILL BAR */
.skill {
  margin-bottom: 20px;
}

.skill-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.skill-bar {
  width: 100%;
  height: 6px;
  background: #222;
  border-radius: 10px;
}

.fill {
  height: 100%;
  background: #c9a14a;
  border-radius: 10px;
}

.fill.dark {
  background: #555;
}

/* FORM */
.contact-form h3 {
  color: #c9a14a;
  margin-bottom: 10px;
}

.contact-form p {
  color: #bbb;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  outline: none;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 14px;
  background: #0f3d2e;
  color: #fff;
  border: 1px solid #c9a14a;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #c9a14a;
  color: #0f3d2e;
}

/* ================= NAVBAR ================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100;
  background: #ffffff;
}

.logo {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-menu a,
.dropdown-toggle {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER EFFECT */
.nav-menu a:hover,
.dropdown-toggle:hover {
  color: #c9a14a;
}

/* ================= DROPDOWN ================= */

.dropdown {
  position: relative;
}

/* ICON */
.dropdown-toggle i {
  font-size: 10px;
  transition: 0.3s;
}

/* ROTATE ICON ON HOVER */
.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

/* MENU BOX */
.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: #0f3d2e;
  border: 1px solid rgba(217, 186, 160, 0.3);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 220px;

  /* ANIMATION */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

/* LINKS */
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #fff;
  transition: 0.3s;
}

/* HOVER ITEM */
.dropdown-menu a:hover {
  background: #c9a14a;
  color: #0f3d2e;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= BUTTON ================= */

.btn-primary {
  padding: 10px 22px;
  color: #0f3d2e;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #c9a14a;
  color: #0f3d2e;
}

.project-content {
  position: absolute;
  top: 350px;
}

.team-header h2 {
  font-family: "Playfair", serif;
}

.project-content h1 {
  position: relative;
  z-index: 99;
}

.overlay {
  position: relative;
  z-index: 0;
}

.navbar {
  position: absolute;
  z-index: 99;
  background: #ffffff;
}

.project-content-new {
  position: relative;
  left: 100px;
  top: 50px;
}

.project-content-new h2 {
  position: relative;
  z-index: 99;
  font-family: "Playfair", serif;
  font-size: 80px;
}

/* ================= CONTACT PAGE ================= */

.contact-page-section {
  background: #0f3d2e;
  color: #fff;
  padding: 100px 80px;
}

.contact-page-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT */
.contact-page-left h2 {
  font-size: 42px;
  margin: 20px 0;
}

.contact-page-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c9a14a;
}

.contact-page-info {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
}

.contact-page-info h4 {
  color: #c9a14a;
}

.contact-page-img {
  width: 100%;
  border-radius: 16px;
}

/* FORM */
.contact-page-form {
  background: #111;
  padding: 30px;
  border-radius: 12px;
}

.contact-page-form h3 {
  margin-bottom: 5px;
}

.contact-page-sub {
  color: #aaa;
  font-size: 12px;
  margin-bottom: 20px;
}

.contact-page-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  padding: 12px;
  background: #0f3d2e;
  border: 1px solid #333;
  color: #fff;
  border-radius: 6px;
}

.contact-page-form textarea {
  height: 100px;
  margin-bottom: 10px;
}

.contact-page-checkbox {
  font-size: 12px;
  color: #aaa;
  display: block;
  margin-bottom: 15px;
}

.contact-page-form button {
  background: url(images/gold-texture.jpg);
  background-size: cover;
  color: #0f3d2e;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

/* MAP */
.contact-page-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* LOCATIONS */
.contact-page-locations {
  background: #0f3d2e;
  color: #fff;
  padding: 80px;
  text-align: center;
}

.contact-page-locations h2 {
  margin: 20px 0 40px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-page-card {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.contact-page-card:hover {
  background: #c9a14a;
  color: #0f3d2e;
}

.contact-page-card h4 span {
  color: #c9a14a;
}

.contact-page-card:hover h4 span {
  color: #0f3d2e;
}

/* ================= SERVICES SECTION ================= */

.services-lux {
  background: #0f3d2e;
  color: #fff;
  padding: 100px 80px;
}

.services-lux-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.services-lux-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.services-lux-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c9a14a;
}

.services-lux-header h2 {
  font-size: 40px;
  margin: 15px 0;
}

.services-lux-header p {
  color: #aaa;
  line-height: 1.6;
}

/* GRID */
.services-lux-grid {
  display: grid;

  /* 🔥 KEY CHANGE */
  grid-template-columns: repeat(3, 350px);

  justify-content: center;
  /* center cards */
  gap: 30px;
  position: relative;
  top: 100px;
}

/* CARD */
.services-lux-card {
  background: #111;
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
}

.services-lux-card:hover {
  transform: translateY(-5px);
}

/* TOP */
.services-lux-card .top {
  display: flex;
  gap: 15px;
  align-items: center;
}

.services-lux-card .top i {
  font-size: 22px;
  color: #c9a14a;
}

.services-lux-card h3 {
  font-size: 18px;
}

.services-lux-card p {
  font-size: 14px;
  color: #aaa;
  margin: 15px 0;
  border-bottom: 1px solid #222;
  padding-bottom: 15px;
}

.service-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.service-img-box img {
  width: 300px;
  height: 200px;
  transition: 0.4s;
}

.services-lux-card:hover img {
  transform: scale(1.1);
}

/* ARROW */
.arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: url(images/gold-texture.jpg);
  background-size: cover;
  color: #0f3d2e;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.services-lux-card:nth-child(3n + 2) {
  transform: translateY(-50px);
}

.navbar {
  width: 90%;
  margin: 0 auto;
}

.gradient-btn {
  display: inline-block;
  padding: 14px 32px;
  color: #0f3d2e;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  background: url("images/gold-texture.jpg") no-repeat center;
  background-size: cover;
  transition: all 0.3s ease;
}

/* Hover effect */
.gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-section {
  background-color: #0f3d2e;
  background-size: cover;
}

.about-section h3 {
  color: #c9a14a;
}

.overlay-team {
  position: relative;
  bottom: 140px;
  left: 20px;
  z-index: 99;
}

.team-card-new:hover .socials {
  opacity: 1;
}

.team-section-new {
  background-color: #0f3d2e;
}

.team-header h2 {
  color: #c9a14a;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;

  z-index: 999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);

  transition: 0.3s;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ICON */
.whatsapp-float i {
  pointer-events: none;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.4;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}