/* ===== ROOT COLORS ===== */
:root {
  --primary-dark: #0f0f0f;
  --overlay-dark: rgba(0,0,0,0.65);
  --text-light: #ffffff;
  --text-muted: #cccccc;

  /* Dark Orange Luxury Palette */
  --orange-main: #cb4d28;
  --orange-deep: #ab300a;
  --orange-light: #e54f2c;
  --btn-border: #ffffff;
  --btn-bg-hover: #ffffff;
  --btn-text-hover: #000000;
}

/* ===== GLOBAL ===== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--primary-dark);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.project-logo img {
  height: 45px;
}

.main-logo img {
  height: 40px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 10px;
  color: #ffffff;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--orange-main);
}

/* Center nav on large screens */
@media (min-width: 992px) {
  .center-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===== BANNER ===== */
.banner-content * {
  will-change: transform, opacity;
}

.banner {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}

.banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
}

/* CONTENT */
.banner-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  padding: 0 20px;
}

/* ===== TEXT STYLES ===== */
.main-title {
  font-family: 'Lemon Milk', sans-serif;
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: clamp(2px, 0.6vw, 6px);
  color: var(--text-light);
  white-space: nowrap; /* keeps animation clean */
}

.rise-title {
  font-family: 'Lemon Milk', sans-serif;
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 800;
  letter-spacing: clamp(4px, 1vw, 10px);
  line-height: 1.05;
  white-space: nowrap;
}

/* GOLD TEXT */
.gradient-text {
  background: linear-gradient(180deg, #e6c46a 0%, #c89b3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.sub-title {
  font-size: clamp(14px, 2vw, 18px);
  margin-top: 12px;
  letter-spacing: clamp(1px, 0.4vw, 2px);
  color: var(--text-muted);
}

/* ===== CTA ===== */
.cta-btn {
  display: inline-block;
  margin-top: 26px;
  padding: 12px 30px;
  border: 1px solid #e6c46a;
  color: #ffffff;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: linear-gradient(180deg, #e6c46a 0%, #c89b3c 100%);
  color: #000000;
  transform: translateY(-2px);
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .rise-title {
    line-height: 1.1;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {

  .banner {
    height: 90vh;
  }

  .banner-content {
    padding: 0 15px;
  }

  .main-title {
    letter-spacing: 2px;
    white-space: normal; /* allow wrap */
  }

  .rise-title {
    white-space: normal;
    line-height: 1.15;
  }

  .sub-title {
    margin-top: 10px;
  }

  .cta-btn {
    padding: 10px 24px;
    font-size: 12px;
  }
}


/* ===== PROJECT SECTION ===== */
.project-section {
  background: #0f0f0f;
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 60px);
  color: #fff;
}

/* CONTENT BOX */
.project-box {
  background: #151515;
  border-radius: 20px;
  padding: clamp(30px, 5vw, 60px);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* TAGLINE */
.tagline {
  color: #c89b3c;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 15px;
}

/* TITLE */
.title {
  font-family: 'Lemon Milk', sans-serif; /* FIXED */
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.3;
  margin-bottom: 20px;
}

.title span {
  color: #c89b3c;
}

/* DESCRIPTION */
.desc {
  opacity: 0.75;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.8;
}

/* BACKGROUND TEXT */
.highlight-text {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: clamp(50px, 10vw, 80px);
  font-family: 'Lemon Milk', sans-serif; /* FIXED */
  color: #c89b3c;
  opacity: 0.06;
  pointer-events: none;
}

/* IMAGE */
.image-box img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .project-section {
    padding: 60px 20px;
  }

  .project-box {
    padding: 30px 25px;
  }

  .highlight-text {
    font-size: 60px;
    bottom: 10px;
    right: 15px;
  }
}

/* ===== SECTION ===== */
.offer-section {
  background: linear-gradient(135deg, #a97f27 0%, #8a661f 100%);
  padding: clamp(60px, 8vw, 120px) 0;
  color: #fff;
}

/* TITLE */
.offer-title {
  font-family: 'Lemon Milk', sans-serif; /* FIXED */
  font-size: clamp(26px, 4vw, 46px);
  letter-spacing: 3px;
}

.offer-sub {
  color: #ebebeb;
  font-size: 15px;
}

/* CARD */
.offer-card {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: clamp(25px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.3s;
  backdrop-filter: blur(6px);
}

/* HOVER */
.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,155,60,0.5);
}

/* LIST */
.offer-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.offer-card ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  opacity: 0.9;
  font-size: 15px;
}

/* DESCRIPTION */
.offer-desc {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
}

/* BACKGROUND TEXT */
.offer-bg-text {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: clamp(50px, 8vw, 70px);
  opacity: 0.05;
  font-family: 'Lemon Milk', sans-serif;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .offer-card {
    padding: 25px;
  }

  .offer-card ul li {
    font-size: 14px;
  }

  .offer-sub {
    font-size: 14px;
  }
}


/* ===== AMENITIES ===== */
.amenities-section {
  padding: clamp(60px, 8vw, 120px) 0;
  background: #0f0f0f;
  color: #fff;
}

/* TITLE */
.amenities-title {
  font-family: 'Lemon Milk', sans-serif; /* FIX */
  font-size: clamp(26px, 4vw, 46px);
  letter-spacing: 3px;
}

.amenities-sub {
  color: #aaa;
  font-size: 15px;
}

/* CARD */
.amenity-card {
  background: #151515;
  border-radius: 16px;
  padding: 35px 20px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(200,155,60,0.15);
  height: 100%;
}

/* ICON */
.amenity-card i {
  font-size: 36px;
  color: #c89b3c;
  margin-bottom: 15px;
  display: inline-block;
  transition: 0.3s;
}

/* TEXT */
.amenity-card h4 {
  font-size: 16px;
  margin: 0;
}

/* HOVER */
.amenity-card:hover {
  transform: translateY(-6px);
  border-color: #c89b3c;
  background: #1a1a1a;
}

.amenity-card:hover i {
  transform: scale(1.1);
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .amenity-card {
    padding: 25px 15px;
  }

  .amenity-card i {
    font-size: 30px;
  }

  .amenity-card h4 {
    font-size: 14px;
  }
}
/* ===== SECTION ===== */
.connectivity-section {
  padding: clamp(70px, 10vw, 140px) 0;
  background: linear-gradient(135deg, #a97f27 0%, #8a661f 100%);
  color: #fff;
}

/* TITLE */
.conn-title {
  font-family: 'Lemon Milk', sans-serif; /* FIX */
  font-size: clamp(26px, 4vw, 48px);
  letter-spacing: 3px;
}

.conn-sub {
  color: #eee;
  font-size: 15px;
}

/* ACCORDION */
.custom-accordion .accordion-item {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

/* HEADER */
.custom-accordion .accordion-button {
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 18px 20px;
  box-shadow: none;
}

/* ACTIVE */
.custom-accordion .accordion-button:not(.collapsed) {
  color: #c89b3c;
  background: rgba(200,155,60,0.08);
}

/* ARROW */
.accordion-button::after {
  filter: invert(1);
}

/* BODY */
.custom-accordion .accordion-body {
  background: rgba(0,0,0,0.7);
  padding: 20px 25px;
}

/* LIST */
.custom-accordion ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-accordion ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0.9;
  font-size: 14.5px;
  color: #eee;
}

/* HOVER */
.accordion-item:hover {
  border-color: rgba(200,155,60,0.4);
}

/* MOBILE */
@media(max-width:768px){
  .conn-title {
    font-size: 26px;
  }

  .custom-accordion .accordion-button {
    font-size: 15px;
    padding: 15px;
  }

  .custom-accordion .accordion-body {
    padding: 15px 18px;
  }
}


.lead-section {
  padding: 140px 0;
  background: #0b0b0b;
  text-align: center;
  color: #fff;
  position: relative;
}

/* subtle background effect */
.lead-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(194,106,0,0.06), transparent 50%);
  z-index: 0;
}

.lead-wrapper {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: auto;
}

/* TITLE */
.lead-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 42px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

/* SUBTEXT */
.lead-sub {
  color: #bbb;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* FORM */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* INPUT */
.form-group input {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus {
  border-color: var(--orange-main);
}

/* BUTTON */
.lead-btn {
  margin-top: 20px;
  padding: 14px;
  background: #a97f27;
  border: none;
  color: #fff;
  letter-spacing: 2px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

.lead-btn:hover {
  background: #fff;
  color: #000;
}

/* MOBILE */
@media(max-width:768px){
  .lead-title {
    font-size: 26px;
  }
}

/* ===== FOOTER ===== */
.footer-section {
  background: #0a0a0a;
  padding: clamp(70px, 10vw, 100px) 20px 50px;
  text-align: center;
  position: relative;
}

/* TOP LINE */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, #333, transparent);
  transform: translateX(-50%);
}

.footer-content {
  max-width: 750px;
  margin: auto;
}

/* LOGO */
.footer-brand img {
  max-height: 60px;
  margin-bottom: 15px;
}

/* TAGLINE */
.footer-tagline {
  color: #c89b3c;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 30px;
}

/* CTA BOX */
.footer-cta {
  padding: 30px;
  border-radius: 14px;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,155,60,0.15);
  backdrop-filter: blur(6px);
}

/* CTA TITLE */
.footer-cta h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* TEXT */
.footer-cta p {
  color: #bbb;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

/* CONTACT TEXT */
.contact-text {
  margin-top: 15px;
  letter-spacing: 1px;
  color: #aaa;
  font-size: 13px;
}

/* COMPANY */
.company-name {
  color: #c89b3c;
  letter-spacing: 2px;
  margin-top: 10px;
  font-size: 16px;
}

/* DIVIDER */
.footer-line {
  width: 60px;
  height: 2px;
  background: #c89b3c;
  margin: 0 auto 25px;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {

  .footer-cta {
    padding: 20px;
  }

  .footer-cta h4 {
    font-size: 18px;
  }

  .footer-cta p {
    font-size: 14px;
  }

  .company-name {
    font-size: 14px;
  }
}

/* ================= GALLERY ================= */

.gallery-section {
  padding: 80px 0;
  background: #1e1e1e; /* matches your dark luxury theme */
}

.gallery-title {
  font-family: 'Lemon Milk', sans-serif;
  font-size: 32px;
  color: #fff;
  letter-spacing: 2px;
}

.gallery-sub {
  color: #bbb;
  font-size: 14px;
  letter-spacing: 1px;
}

/* CARD */
.gallery-card {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
}

/* IMAGE */
.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER EFFECT (premium smooth zoom) */
.gallery-card:hover img {
  transform: scale(1.12);
}

/* SOFT SHADOW ON HOVER */
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  opacity: 0;
  transition: 0.4s;
}

.gallery-card:hover::after {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-card img {
    height: 200px;
  }

  .gallery-title {
    font-size: 24px;
  }
}


/* ===== COMING SOON SECTION ===== */
.comingsoon-section {
  background: #0f0f0f;
  padding: clamp(80px, 10vw, 140px) 20px;
  color: #fff;
  text-align: center;
}

/* TAGLINE */
.cs-tag {
  color: #c89b3c;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* TITLE */
.cs-title {
  font-family: 'Lemon Milk', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.3;
  margin-bottom: 20px;
}

.cs-title span {
  color: #c89b3c;
}

/* DESCRIPTION */
.cs-desc {
  max-width: 750px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 40px;
}

/* FEATURES GRID */
.cs-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cs-item {
  text-align: left;
  font-size: 15px;
  opacity: 0.9;
}

/* FOOT TEXT */
.cs-foot {
  font-size: 15px;
  opacity: 0.6;
  margin-top: 10px;
}

/* ===== HOVER SUBTLE EFFECT ===== */
.cs-item:hover {
  color: #c89b3c;
  transform: translateX(5px);
  transition: 0.3s;
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {

  .cs-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cs-item {
    text-align: center;
  }

  .cs-desc {
    font-size: 14px;
  }

  .cs-foot {
    font-size: 13px;
  }
}