/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ---------------------------------
Header Styling 
-------------------------------- */
.header {
  background-color: #0d0d0d;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 10px 0;
}

.project-name {
  font-size: 30px;
  font-weight: 600;
  background: linear-gradient(90deg, #c8a96a, #f5e6c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-center .nav-link {
  margin: 0 14px;
  font-weight: 500;
  background: linear-gradient(90deg, #d6d6d6, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.nav-center .nav-link:hover {
  background: linear-gradient(90deg, #c8a96a, #f5e6c8, #c8a96a);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s linear infinite;
}

.nav-center .nav-link.active {
  background: linear-gradient(90deg, #c8a96a, #f5e6c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid #c8a96a;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.logo-container {
  display: flex;
  align-items: center;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Mobile Menu */
@media (max-width: 991px) {
  .navbar-collapse {
    text-align: center;
    margin-top: 15px;
    background: #111;
    padding: 15px;
    border-radius: 8px;
  }

  .nav-center .nav-link {
    display: inline-block;
    margin: 10px 0;
  }

  .logo-container {
    display: none;
  }
}

/* ---------------------------------
HERO SECTION 
-------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  background: url('../images/banner.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 52px;
  font-weight: 700;
  background: linear-gradient(90deg, #c8a96a, #f5e6c8, #c8a96a);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.brochure-btn {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #c8a96a, #f5e6c8, #c8a96a);
  background-size: 200% auto;
  color: #000;
  transition: 0.4s ease;
  text-decoration: none;
}

.brochure-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 169, 106, 0.4);
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-section {
    height: 90vh;
  }
}

/* ---------------------------------
ABOUT SECTION 
-------------------------------- */
.about-section {
  position: relative;
  padding: 100px 20px;
  background: url('../images/about-bg.jpg') no-repeat center center/cover;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #c8a96a;
  margin-bottom: 10px;
}

.about-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #c8a96a, #f5e6c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-highlight {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1px;
  border-top: 1px solid rgba(200, 169, 106, 0.3);
  padding-top: 20px;
}

@media (max-width: 768px) {
  .about-section {
    padding: 70px 15px;
  }

  .about-title {
    font-size: 26px;
  }

  .about-text {
    font-size: 14px;
  }
}

/* ---------------------------------
♦SECTION BASE 
-------------------------------- */
.vision-section {
  background: #0d0d0d;
  padding: 100px 20px;
  color: #fff;
}

.section-label {
  color: #c8a96a;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 20px;
}

.vision-block {
  margin-bottom: 30px;
}

.vision-title {
  font-size: 24px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #c8a96a, #f5e6c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vision-text {
  font-size: 16px;
  color: #dcdcdc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.highlight-line {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-weight: 500;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: #c8a96a;
  margin: 50px auto;
}

.highlights-title {
  font-size: 32px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #c8a96a, #f5e6c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlights-sub {
  color: #ccc;
  font-size: 15px;
}

.highlight-card {
  padding: 20px;
  border: 1px solid rgba(200, 169, 106, 0.2);
  border-radius: 12px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.02);
  transition: 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  border-color: #c8a96a;
  box-shadow: 0 10px 25px rgba(200, 169, 106, 0.2);
}

@media (max-width: 768px) {
  .vision-section {
    padding: 70px 15px;
  }

  .highlights-title {
    font-size: 24px;
  }

  .vision-title {
    font-size: 20px;
  }

  .highlight-card {
    font-size: 14px;
  }
}
/* ---------------------------------
  AMENITIES SECTION 
  -------------------------------- */
.amenities-section {
  position: relative;
  padding: 100px 20px;
  background: url('../images/amenities-bg.jpg') no-repeat center center/cover;
}

.amenities-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.amenities-section .container {
  position: relative;
  z-index: 2;
}

.section-label {
  color: #c8a96a;
  letter-spacing: 2px;
  font-size: 14px;
}

.amenities-title {
  font-size: 34px;
  margin-top: 10px;
  background: linear-gradient(90deg, #c8a96a, #f5e6c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.amenities-sub {
  color: #ccc;
  font-size: 15px;
}

.amenity-card {
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  color: #eaeaea;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 169, 106, 0.2);
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
  height: 100%;
}

.amenity-icon {
  font-size: 30px;
  margin-bottom: 12px;
  display: inline-block;
  background: linear-gradient(90deg, #c8a96a, #f5e6c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s ease;
}

.amenity-card p {
  margin: 0;
  font-size: 14px;
}

.amenity-card:hover {
  transform: translateY(-6px);
  border-color: #c8a96a;
  box-shadow: 0 10px 30px rgba(200, 169, 106, 0.25);
}

.amenity-card:hover .amenity-icon {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .amenities-section {
    padding: 70px 15px;
  }

  .amenities-title {
    font-size: 26px;
  }

  .amenity-card {
    padding: 18px 10px;
  }

  .amenity-icon {
    font-size: 24px;
  }

  .amenity-card p {
    font-size: 13px;
  }
}

/* ---------------------------------
 CONNECTIVITY SECTION 
  -------------------------------- */
.connectivity-section {
  position: relative;
  padding: 100px 20px;
  background: url('../images/location-bg.jpg') no-repeat center center/cover;
}

.connectivity-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.connectivity-section .container {
  position: relative;
  z-index: 2;
}

.connectivity-title {
  font-size: 34px;
  margin-top: 10px;
  background: linear-gradient(90deg, #c8a96a, #f5e6c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.connectivity-sub {
  color: #ccc;
  font-size: 15px;
}

.connectivity-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 169, 106, 0.2);
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  backdrop-filter: blur(6px);
}

.card-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.connectivity-list {
  list-style: none;
  padding: 0;
}

.connectivity-list li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
}

.connectivity-list i {
  font-size: 16px;
  background: linear-gradient(90deg, #c8a96a, #f5e6c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.simple-list {
  list-style: none;
  padding: 0;
}

.simple-list li {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 2px solid rgba(200, 169, 106, 0.3);
}

@media (max-width: 768px) {
  .connectivity-section {
    padding: 70px 15px;
  }

  .connectivity-title {
    font-size: 26px;
  }

  .card-title {
    font-size: 16px;
  }

  .connectivity-list li,
  .simple-list li {
    font-size: 13px;
  }
}

/* ---------------------------------
 SECTION BASE
  -------------------------------- */
.why-process-section {
  background: #0d0d0d;
  padding: 100px 20px;
  color: #fff;
}

.section-title {
  font-size: 32px;
  margin-top: 10px;
  background: linear-gradient(90deg, #c8a96a, #f5e6c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  color: #ccc;
  font-size: 15px;
}

.why-card {
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 169, 106, 0.2);
  font-size: 14px;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: #c8a96a;
  box-shadow: 0 10px 25px rgba(200, 169, 106, 0.2);
}

.process-row {
  margin-top: 30px;
}

.process-card {
  position: relative;
  padding: 30px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 169, 106, 0.2);
  text-align: center;
  height: 100%;
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: #c8a96a;
  box-shadow: 0 12px 30px rgba(200, 169, 106, 0.25);
}

.step-number {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #c8a96a, #f5e6c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 768px) {
  .why-process-section {
    padding: 70px 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .why-card {
    font-size: 13px;
  }

  .process-card h4 {
    font-size: 16px;
  }

  .process-card p {
    font-size: 13px;
  }

  .step-number {
    font-size: 30px;
  }
}
/* ---------------------------------
      GALLERY SECTION 
      -------------------------------- */
.gallery-section {
    background: #0d0d0d;
    padding: 100px 20px;
}

.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
    border-radius: 12px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5));
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 70px 15px;
    }
}

/* FOOTER */
.footer {
    background: #0a0a0a;
    padding: 20px 10px;
    border-top: 1px solid rgba(200,169,106,0.2);
}

.footer-text {
    margin: 0;
    font-size: 14px;
    color: #aaa;
}

.footer-text:hover {
    color: #c8a96a;
    transition: 0.3s;
}