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

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
}

/* ================= HEADER ================= */
.top-bar {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 8px 40px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: #000000;
}

.navbar {
  position: absolute;
  top: 40px;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  position: relative;
}

.nav-links a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #c9a24d;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.4s;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Carousel */
.carousel {
  height: 100%;
  width: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
}

.slide {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}
.hero-dark-layer {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* 🔥 full screen black */
  z-index: 2;
}

/* Overlay content */
.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  animation: fadeUp 1.5s ease forwards;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 20px;
  color: white;
}

.hero-content span {
  color: #c9a24d;
}

.info-box {
  background: rgba(0, 0, 0, 0.65);
  padding: 15px 20px;
  margin-bottom: 25px;
  width: fit-content;
  color: white;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #c9a24d;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 30px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 162, 77, 0.5);
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }
  .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 0 20px;
  }
}

/* section 2  */

.quick-enquiry {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 25px 40px;
  background: rgba(201, 162, 77, 0.85); /* luxury gold */
  backdrop-filter: blur(6px);

  position: relative;
  z-index: 10;
}

/* LEFT IMAGE */
.qe-left {
  width: 220px;
  background: #243034;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qe-left img {
  max-width: 100%;
}

/* CENTER INFO */
.qe-center {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.qe-icon img {
  width: 40px;
}

.qe-text span {
  font-size: 14px;
  opacity: 0.85;
}

.qe-text strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
}

/* RIGHT BUTTON (same feel as hero button) */
.qe-btn {
  background: #000;
  color: #c9a24d;
  padding: 14px 38px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.qe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* _____________________ */
.elite-wrapper {
  display: flex;
  max-width: 1200px;
  margin: auto;
  font-family: "Poppins", sans-serif;
}

.elite-menu {
  width: 260px;
  background: #0d0d0d;
  padding: 25px;
}

.elite-item {
  padding: 14px;
  color: #aaa;
  cursor: pointer;
  border-bottom: 1px solid #222;
  transition: 0.3s;
}
.elite-item:hover,
.elite-item.active {
  color: #d4af37;
  transform: translateX(6px);
}

.elite-btn {
  display: block;
  margin-top: 25px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  padding: 14px;
  text-align: center;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
}

.elite-content {
  flex: 1;
  padding: 35px;
}

.elite-section {
  display: none;
  animation: fadeUp 0.6s ease;
}
.elite-section.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.elite-title {
  font-size: 32px;
  margin-bottom: 10px;
}
.elite-sub {
  color: #b08d2b;
  margin-bottom: 25px;
}

.elite-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.elite-card {
  background: #f7f7f7;
  padding: 22px;
  border-radius: 10px;
  transition: 0.3s;
}
.elite-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.elite-card.wide {
  grid-column: 1/3;
}

.elite-text {
  margin-top: 18px;
  color: #333;
  line-height: 1.7;
}

.elite-grid {
  /* display: grid; */
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.elite-grid img {
  width: 100%;
  border-radius: 12px;
  transition: 0.4s;
}
.elite-grid img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .elite-menu {
    display: none;
  }
  .elite-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .elite-grid {
    grid-template-columns: 1fr;
  }
}
/* MOBILE HEADER */
.elite-mobile-header {
  display: none;
  padding: 12px 16px;
  background: #0d0d0d;
}

.elite-hamburger {
  color: #d4af37;
  font-size: 28px;
  cursor: pointer;
}

/* CLOSE ICON */
.elite-close {
  display: none;
  color: #d4af37;
  font-size: 22px;
  text-align: right;
  cursor: pointer;
  margin-bottom: 20px;
}

/* MOBILE MENU */
@media (max-width: 900px) {
  .elite-mobile-header {
    display: block;
  }

  .elite-menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 260px;
    z-index: 9999;
    transition: 0.4s ease;
  }

  .elite-menu.active {
    left: 0;
  }

  .elite-close {
    display: block;
  }
}

/* Icon css  */
.kh-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.kh-item {
  transition: 0.4s ease;
}

.kh-item:hover {
  transform: translateY(-8px);
}

.kh-icon {
  width: 60px;
  height: 60px;
  color: #caa46a;
  margin-bottom: 14px;
}

.kh-item p {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #111;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .kh-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .kh-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bullet-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-points li {
  position: relative;
  padding-left: 40px;
  margin: 18px 0;
  font-size: 18px;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
}

.bullet-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: url("../assests/IMG/bullet.png") no-repeat center;
  background-size: contain;
}

.elite-footer {
  background: #2a2a2a;
  color: #fff;
  font-family: Poppins, sans-serif;
}

.elite-footer-top {
  display: flex;
  justify-content: space-between;
  padding: 40px 60px;
  flex-wrap: wrap;
}

.elite-footer-box {
  display: flex;
  gap: 15px;
  max-width: 280px;
}

.elite-footer-box .icon {
  font-size: 28px;
  color: #caa46a;
}

.elite-footer-box h4 {
  margin: 0;
  font-size: 16px;
}

.elite-footer-box p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #ddd;
}

.divider {
  width: 1px;
  background: #555;
}

.elite-footer hr {
  border: 0;
  border-top: 1px solid #555;
  margin: 0 60px;
}

.elite-footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 60px;
}

.elite-footer-links h3 {
  color: #fff;
  margin-bottom: 15px;
}

.elite-footer-links a {
  display: block;
  color: #ccc;
  margin-bottom: 10px;
  font-size: 14px;
  text-decoration: none;
}

.elite-footer-links a:hover {
  color: #caa46a;
}

.elite-footer-bottom {
  background: #b08d2b;
  color: #000;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .elite-footer-top {
    flex-direction: column;
    gap: 30px;
  }
  .divider {
    display: none;
  }
  .elite-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .elite-footer-links {
    grid-template-columns: 1fr;
  }
  .elite-footer-bottom {
    text-align: center;
    gap: 10px;
  }
}

/* form css  */

.elite-form-wrapper {
  padding: 50px 30px;
  max-width: 80%;
  margin: auto;
  font-family: Poppins, sans-serif;
  text-align: center;
}
.elite-form-wrapper h1 {
  margin-bottom: 20px;
}

.elite-field {
  margin-bottom: 18px;
  position: relative;
}

.elite-field input,
.elite-field textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.elite-field textarea {
  resize: none;
  height: 90px;
}

.elite-field input:focus,
.elite-field textarea:focus {
  border-color: #caa46a;
}

.error {
  color: #d10000;
  font-size: 13px;
  margin-top: 5px;
  display: block;
}

.shake {
  animation: shake 0.3s;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(-4px);
  }
  100% {
    transform: translateX(0);
  }
}

.elite-btn-submit {
  width: 100%;
  padding: 14px;
  border: none;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
}

/* TOAST */
.elite-toast {
  position: fixed;
  top: 20px;
  right: -400px;
  background: #0b0b0b;
  color: #fff;
  padding: 14px 22px;
  border-left: 4px solid #caa46a;
  transition: 0.6s ease;
  z-index: 9999;
}

.elite-toast.show {
  right: 20px;
}
