:root {
  --primary: #141044;
  --gold: #c9a24d;
  --light: #f5f7fa;
  --dark: #080530;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #111;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

/* NAVBAR */
.lux-navbar {
  /* background: rgba(5, 12, 20, 0.65); */
  background: rgba(8, 5, 48, 1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 0;
  transition: 0.4s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* LOGO WRAPPER */
.lux-logo {
  display: flex;
  align-items: center;
}

/* LOGO IMAGE */
.lux-logo img {
  max-height: 58px; /* Desktop */
  width: auto;
  object-fit: contain;
  transition: 0.3s ease;
}

/* LAPTOP */
@media (max-width: 1200px) {
  .lux-logo img {
    max-height: 52px;
  }
}

/* TABLET */
@media (max-width: 992px) {
  .lux-logo img {
    max-height: 48px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .lux-logo img {
    max-height: 42px;
  }
}

/* LINKS */
.lux-link {
  color: #fff !important;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: 0.3s;
  font-size: 15px;
}

/* HOVER LINE */
.lux-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #c9a24d, #f5d98b);
  transition: 0.3s;
}

.lux-link:hover::after,
.lux-link.active::after {
  width: 100%;
}

/* CTA BUTTON */
.lux-nav-btn {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(201, 162, 77, 0.4);
  font-size: 15px;
}

.lux-nav-btn:hover {
  background: #b38c2f;
  color: #080530 !important;
}

/* TOGGLER */
.lux-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lux-toggler .navbar-toggler-icon {
  filter: invert(1);
}

/* MOBILE MENU */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(8, 5, 48, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    margin-top: 15px;
  }

  .lux-link {
    padding: 12px 0;
  }

  .lux-nav-btn {
    display: inline-block;
    margin-top: 10px;
  }
}

/* Dropdown Styling */
.lux-dropdown {
  background: #080530;
  border: 1px solid rgba(200, 164, 106, 0.3);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 220px;
}

.lux-dropdown .dropdown-item {
  color: #fff;
  padding: 10px 20px;
  transition: 0.3s ease;
  font-size: 14px;
}

.lux-dropdown .dropdown-item:hover {
  background: #c8a46a;
  color: #080530;
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* HERO SECTION */
.lux-hero {
  position: relative;
  background:
    linear-gradient(rgba(8, 5, 48, 0.55), rgba(8, 5, 48, 0.75)),
    url("../img/home-banner.jpg") center/cover no-repeat;
  overflow: hidden;
  color: #fff;
  padding: 85px 20px;
}

/* Dark Luxury Overlay */
.lux-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 5, 48, 0.85) 30%,
    rgba(8, 5, 48, 0.6) 60%,
    rgba(8, 5, 48, 0.3) 100%
  );
  z-index: 1;
}

.lux-hero .container {
  position: relative;
  z-index: 2;
}

/* Tag */
.lux-hero-tag {
  display: inline-block;
  background: rgba(200, 164, 106, 0.15);
  color: #c8a46a;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(200, 164, 106, 0.4);
}

/* Title */
.lux-hero-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
}

.lux-hero-title span {
  color: #c8a46a;
}

/* Description */
.lux-hero-desc {
  font-size: 17px;
  color: #d1d5db;
  max-width: 520px;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* Buttons */
.lux-hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.lux-btn-primary {
  background: #c8a46a;
  color: #000;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.lux-btn-primary:hover {
  background: #fff;
  color: #000;
}

.lux-btn-outline {
  border: 1px solid #c8a46a;
  color: #c8a46a;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.lux-btn-outline:hover {
  background: #c8a46a;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .lux-hero-title {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .lux-hero-title {
    font-size: 32px;
  }

  .lux-hero-desc {
    font-size: 15px;
  }
}

/* ABOUT */
.about-img {
  background: url("../img/about-image.png") center/cover no-repeat;
  min-height: 420px;
  border-radius: 20px;
}

.about .btn-gold {
  background: #c9a24d;
  color: #000;
  border-radius: 0px;
  padding: 12px 28px;
  font-weight: 600;
}

/* GLASS CARD */
.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* PROJECTS */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.projects a {
  text-decoration: none;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.project-card:hover img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 5, 48, 0.75), transparent);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  color: #fff;
}

/* CTA */
.cta {
  background:
    linear-gradient(rgba(8, 5, 48, 0.7), rgba(8, 5, 48, 0.7)),
    url("https://images.unsplash.com/1598928506311-c55ded91a20c") center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

/* SECTION */
.lux-why-section {
  background: #f7f7f7;
  padding: 80px 0;
}

.lux-why-section-tag {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  line-height: 1;
}

.lux-why-section .counter {
  font-family: "Poppins", sans-serif;
}

/* TITLE */
.lux-why-section .lux-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--dark);
}

/* SUBTITLE */
.lux-why-section .lux-subtitle {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  line-height: 1.7;
}

/* CARD */
.lux-why-section .lux-trust-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  height: 100%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Hover Glow */
.lux-why-section .lux-trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(245, 180, 0, 0.15),
    transparent
  );
  opacity: 0;
  transition: 0.5s;
}

.lux-why-section .lux-trust-card:hover::before {
  opacity: 1;
}

.lux-trust-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ICON */
.lux-why-section .lux-icon {
  width: 65px;
  height: 65px;
  background: #080530;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
}

/* ICON COLOR */
.lux-why-section .lux-icon i {
  font-size: 28px;
  color: #f5b400;
}

/* ICON ANIMATION */
/* .animate-icon {
  animation: float 3s ease-in-out infinite;
} */

/* CARD ENTRY ANIMATION */
.lux-why-section .animate-card {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

/* NUMBER */
.lux-why-section .lux-trust-card h3 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin: 8px 0;
}

/* TEXT */
.lux-why-section .lux-trust-card p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

/* KEYFRAMES */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* STAGGER EFFECT */
.lux-why-section .animate-card:nth-child(1) {
  animation-delay: 0.2s;
}
.lux-why-section .animate-card:nth-child(2) {
  animation-delay: 0.4s;
}
.lux-why-section .animate-card:nth-child(3) {
  animation-delay: 0.6s;
}
.lux-why-section .animate-card:nth-child(4) {
  animation-delay: 0.8s;
}

/* MOBILE */
@media (max-width: 576px) {
  .lux-why-section.lux-why-section {
    padding: 50px 15px;
  }
  .lux-why-section .lux-trust-card {
    padding: 30px 15px;
  }
}

/* SECTION */
.lux-signature-section {
  /* background: radial-gradient(circle at top, #1a1a1a, #0b0b0b); */
  background:
    linear-gradient(rgba(8, 5, 48, 0.55), rgba(8, 5, 48, 0.75)),
    url("../img/home-banner.jpg") center/cover no-repeat;
  display: flex;
  padding: 60px 40px;
  color: #fff;
}

/* HEADER */
.lux-signature-header h2 {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: 1px;
}
.lux-signature-header span {
  color: #d4af37;
}
.lux-line {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 15px auto 50px;
}

/* FEATURES */
.lux-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-left: 40px;
}

.lux-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeLeft 1s ease forwards;
}

.lux-feature:nth-child(1) {
  animation-delay: 0.2s;
}
.lux-feature:nth-child(2) {
  animation-delay: 0.4s;
}
.lux-feature:nth-child(3) {
  animation-delay: 0.6s;
}
.lux-feature:nth-child(4) {
  animation-delay: 0.8s;
}
.lux-feature:nth-child(5) {
  animation-delay: 1s;
}

.lux-feature i {
  width: 42px;
  height: 42px;
  border: 1px solid #d4af37;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 18px;
  flex-shrink: 0;
}

.lux-feature h5 {
  margin: 0;
  font-size: 18px;
}
.lux-feature p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #ccc;
}

/* PROJECTS */
.lux-projects {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CARD */
.lux-project-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lux-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.lux-project-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.lux-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 5, 48, 0.75),
    rgba(8, 5, 48, 0.15)
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px;
}

.lux-project-overlay h3 {
  margin: 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.lux-project-overlay p {
  margin: 5px 0 0;
  color: #ddd;
}

/* BUTTON */
.lux-btn {
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.4s;
  backdrop-filter: blur(6px);
}

.lux-btn:hover {
  background: #d4af37;
  color: #000;
}

/* ANIMATIONS */
@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .lux-signature-section {
    padding: 70px 20px;
  }
  .lux-features {
    padding-left: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .lux-project-card {
    height: 240px;
  }
  .lux-project-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.lux-testimonial-slider {
  background: #ffffff;
  padding: 90px 0;
}
.lux-testimonial-slider .lux-signature-header h2 {
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0;
}
.lux-testimonial-text {
  max-width: 750px;
  margin: auto;
}

.lux-quote {
  font-size: 60px;
  color: #caa55b;
  line-height: 1;
  margin-bottom: 10px;
}

.lux-message {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.lux-client {
  align-items: center;
  gap: 15px;
}

/* .lux-line {
  width: 40px;
  height: 2px;
  background: #caa55b;
  display: inline-block;
} */

.lux-client h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.lux-client p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* IMAGE */
.lux-testimonial-img {
  height: 100%;
}

.lux-testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DOTS */
.lux-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9c2b8;
  opacity: 0.5;
}

.lux-dots .active {
  background: #111;
  opacity: 1;
}

/* MOBILE */
@media (max-width: 992px) {
  .lux-testimonial-text {
    padding: 50px 30px;
  }
}

@media (max-width: 576px) {
  .lux-testimonial-slider {
    padding: 60px 0;
  }

  .lux-quote {
    font-size: 60px;
  }

  .lux-message {
    font-size: 18px;
  }

  .lux-testimonial-img img {
    height: 280px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--light);
  background-color: var(--dark);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  /* border-top: 1px solid color-mix(in srgb, var(--gold), transparent 90%); */
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--gold);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  font-size: 16px;
  color: var(--light);
  margin-right: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: var(--gold);
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a,
.footer .footer-contact a {
  color: var(--light);
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

.footer .footer-links ul a:hover {
  color: color-mix(in srgb, var(--light), transparent 15%);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--primary), transparent 65%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.lux-about-section {
  background: #080530;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}

/* CONTENT */
.lux-about-section .lux-about-content {
  padding-right: 60px;
}

/* SUBTITLE */
.lux-about-section .lux-subtitle {
  font-size: 13px;
  letter-spacing: 3px;
  color: #c8a46a;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

/* TITLE */
.lux-about-section .lux-title {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
}

/* DESC */
.lux-about-section .lux-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #dcdcdc;
  margin-bottom: 15px;
  max-width: 520px;
}

/* GOLD DOT */
.lux-about-section .lux-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8a46a;
  box-shadow: 0 0 6px rgba(200, 164, 106, 0.6);
}

/* CTA */
.lux-about-section .lux-btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid #c8a46a;
  color: #c8a46a;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.4s;
}

.lux-about-section .lux-btn:hover {
  background: #c8a46a;
  color: #0e0e0e;
}

/* IMAGE */
.lux-about-section .lux-about-image {
  position: relative;
}

.lux-about-section .lux-img-frame {
  border: 1px solid rgba(200, 164, 106, 0.3);
  padding: 12px;
}

.lux-about-section .lux-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: brightness(0.95);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .lux-about-section .lux-about-content {
    /* padding-right: 0; */
    padding: 20px;
    margin-bottom: 50px;
  }

  .lux-about-section .lux-img-frame img {
    height: 420px;
  }
}

@media (max-width: 576px) {
  .lux-about-section .lux-about-section {
    padding: 70px 0;
  }

  .lux-about-section .lux-title {
    font-size: 30px;
  }

  .lux-about-section .lux-img-frame img {
    height: 300px;
  }

  .lux-about-section .lux-desc {
    font-size: 15px;
  }
}

.lux-hero {
  position: relative;
  min-height: 100vh;
  background: url("../img/home-banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* OVERLAY */
.lux-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 5, 48, 0.75),
    rgba(8, 5, 48, 0.35),
    rgba(8, 5, 48, 0.15)
  );
}

/* CONTENT */
.lux-hero-content {
  position: relative;
  z-index: 2;
}

/* TAG */
.lux-hero-tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #c8a46a;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
}

/* TITLE */
.lux-hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.lux-hero-title span {
  color: #c8a46a;
}

/* DESC */
.lux-hero-desc {
  max-width: 600px;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.8;
  color: #e6e6e6;
  margin-bottom: 35px;
}

/* ACTIONS */
.lux-hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* BUTTONS */
.lux-btn-primary {
  padding: 14px 36px;
  background: #c8a46a;
  color: #0e0e0e;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.4s;
}

.lux-btn-primary:hover {
  background: #e0c27a;
  color: #000;
}

.lux-btn-outline {
  padding: 14px 36px;
  border: 1px solid #c8a46a;
  color: #c8a46a;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.4s;
}

.lux-btn-outline:hover {
  background: #c8a46a;
  color: #0e0e0e;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .lux-hero-title {
    font-size: 34px;
  }

  .lux-hero-desc {
    font-size: 15px;
  }

  .lux-hero-actions {
    flex-direction: column;
    gap: 15px;
  }
}

.lux-cta {
  position: relative;
  padding: 120px 0;
  background: url("../img/home-banner.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* Overlay */
.lux-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 5, 48, 0.85),
    rgba(8, 5, 48, 0.6),
    rgba(8, 5, 48, 0.85)
  );
}

/* Content */
.lux-cta .container {
  position: relative;
  z-index: 2;
}

/* Tag */
.lux-cta-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #c8a46a;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Title */
.lux-cta-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 3.5vw, 56px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.lux-cta-title span {
  color: #c8a46a;
}

/* Description */
.lux-cta-desc {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.8;
  color: #e6e6e6;
}

/* Actions */
.lux-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.lux-cta-btn-primary {
  padding: 15px 40px;
  background: #c8a46a;
  color: #0e0e0e;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.4s;
}

.lux-cta-btn-primary:hover {
  background: #e0c27a;
  color: #000;
}

.lux-cta-btn-outline {
  padding: 15px 40px;
  border: 1px solid #c8a46a;
  color: #c8a46a;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.4s;
}

.lux-cta-btn-outline:hover {
  background: #c8a46a;
  color: #0e0e0e;
}

/* Responsive */
@media (max-width: 576px) {
  .lux-cta {
    padding: 80px 15px;
  }

  .lux-cta-title {
    font-size: 30px;
  }

  .lux-cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

/* HERO */
.about-page-hero {
  position: relative;
  background: url("../img/home-banner.jpg") center/cover no-repeat;
  min-height: 60vh;
  padding-top: 115px;
}
.about-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 5, 48, 0.85), rgba(8, 5, 48, 0.4));
}
.about-page-hero .container {
  position: relative;
  z-index: 2;
}
.about-page-tag {
  color: #c8a46a;
  letter-spacing: 3px;
  font-size: 12px;
}
.about-page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 64px);
  margin: 15px 0;
  color: var(--light);
}
.about-page-title span {
  color: #c8a46a;
}
.about-page-desc {
  max-width: 600px;
  color: #ddd;
}

/* INTRO */
.about-page-intro {
  padding: 100px 0;
  background: var(--light);
}
.about-page-img {
  border-radius: 12px;
}
.section-about-page-tag {
  color: #c8a46a;
  letter-spacing: 2px;
  font-size: 12px;
}

.section-about-page-title {
  color: var(--dark);
  font-weight: 600;
}

.section-about-page-text {
  color: var(--dark);
  line-height: 1.8;
}

.lux-values {
  background: var(--dark);
  padding: 120px 0;
  color: #fff;
}

/* Header */
.lux-tag {
  color: #c8a46a;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
}

.lux-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3.5vw, 52px);
  margin: 15px 0;
}

.lux-sub {
  color: #ccc;
  max-width: 650px;
  line-height: 1.8;
}

/* Value Item */
.lux-value-item {
  display: flex;
  gap: 25px;
  padding: 35px;
  background: linear-gradient(180deg, #141044, #080530);
  border: 1px solid rgba(200, 164, 106, 0.15);
  border-radius: 14px;
  position: relative;
  transition: 0.4s ease;
  overflow: hidden;
}

/* Hover effect */
.lux-value-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(200, 164, 106, 0.08),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}
.lux-value-item:hover::before {
  opacity: 1;
}

.lux-value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Index number */
.lux-value-index {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #c8a46a;
  min-width: 60px;
  opacity: 0.85;
}

/* Content */
.lux-value-content h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.lux-value-content p {
  color: #ccc;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .lux-value-item {
    flex-direction: column;
    text-align: left;
  }

  .lux-value-index {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .lux-values {
    padding: 80px 15px;
  }

  .lux-title {
    font-size: 30px;
  }
}

/* CTA */
.about-page-cta {
  position: relative;
  padding: 120px 0;
  background: url("../img/home-banner.jpg") center/cover no-repeat;
}
.about-page-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 48, 0.8);
}
.about-page-cta .container {
  position: relative;
  z-index: 2;
}
.about-cta-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin: 20px 0;
  color: var(--light);
}
.about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.about-cta-btn-primary {
  padding: 14px 40px;
  background: #c8a46a;
  color: #000;
  text-decoration: none;
}
.about-cta-btn-outline {
  padding: 14px 40px;
  border: 1px solid #c8a46a;
  color: #c8a46a;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .section-title,
  .about-page-cta-title {
    font-size: 30px;
  }
  .about-page-intro,
  .about-page-values {
    padding: 60px 0;
  }
}
/* HERO */
.services-hero,
.projects-hero {
  position: relative;
  min-height: 60vh;
  background: url(../img/home-banner.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 115px;
}
.services-hero::before,
.projects-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 5, 48, 0.85), rgba(8, 5, 48, 0.5));
}
.services-hero .container,
.projects-hero .container {
  position: relative;
  z-index: 2;
}
.hero-tag,
.projects-hero-tag {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 12px;
}
.hero-title,
.projects-hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 64px);
  margin: 15px 0;
  color: var(--light);
}
.hero-title span,
.projects-hero-title span {
  color: var(--gold);
}
.hero-desc,
.projects-hero-desc {
  max-width: 600px;
  color: #ddd;
}

/* SERVICES SECTION */
.services-section {
  padding: 100px 0;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 15px;
}
.section-sub {
  color: var(--dark);
  max-width: 700px;
  margin: auto;
}

.lux-img-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 420px;
  cursor: pointer;
}

.lux-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lux-img-card:hover img {
  transform: scale(1.1);
}

.lux-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8, 5, 48, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: 0.4s ease;
}

.lux-card-overlay h4 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--light);
}

.lux-card-overlay p {
  color: var(--light);
  font-size: 14px;
  margin-top: 10px;
}

.lux-img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 164, 106, 0.4);
  border-radius: 18px;
  opacity: 0;
  transition: 0.4s;
}

.lux-img-card:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .lux-img-card {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .lux-img-card {
    height: 300px;
  }
}

/* CTA */
.services-cta {
  position: relative;
  padding: 120px 0;
  background: url("../img/home-banner.jpg") center/cover no-repeat;
  text-align: center;
}
.services-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 48, 0.8);
}
.services-cta .container {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--light);
}
.cta-btn {
  padding: 14px 40px;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .section-title {
    font-size: 30px;
  }
  .cta-title {
    font-size: 30px;
  }
  .services-section {
    padding: 60px 0;
  }
}
.lux-experience {
  background: var(--light);
  color: var(--dark);
}
.lux-process {
  background: #0b0f16;
  color: #fff;
}
.lux-statement {
  background: linear-gradient(135deg, #141044, #080530);
  color: #fff;
}
.lux-section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 42px);
}
.lux-muted {
  color: #cbd5e1;
  line-height: 1.8;
}
.lux-check-list {
  list-style: none;
  padding: 0;
}
.lux-check-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.lux-check-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c8a46a;
}
.lux-image-box {
  height: 350px;
  border-radius: 20px;
  /* background: linear-gradient(135deg, #1e293b, #111827); */
  background: url("../img/darshan-ravi-img.jpg") center/cover no-repeat;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); */
}
.lux-step {
  padding: 30px;
  border: 1px solid rgba(200, 164, 106, 0.2);
  border-radius: 15px;
  background: #111827;
  transition: 0.4s;
}
.lux-step span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #c8a46a;
  margin-bottom: 10px;
}
.lux-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.lux-big-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 56px);
}
@media (max-width: 768px) {
  .lux-image-box {
    height: 250px;
  }
}

.projects .project-card {
  background: var(--dark);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  /* border: 1px solid rgba(200, 164, 106, 0.2); */
  height: 100%;
}

.projects .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.projects .project-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.projects .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.projects .project-card:hover .project-img img {
  transform: scale(1.1);
}

.projects .badge-ongoing {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c8a46a;
  color: #000;
  padding: 6px 15px;
  font-size: 12px;
  border-radius: 25px;
  font-weight: 600;
}

.projects .project-content {
  padding: 25px;
}

.projects .project-content h5 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
}

.projects .project-content p {
  color: #cbd5e1;
  font-size: 14px;
}

.projects .project-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 13px;
  color: #c8a46a;
}

.projects .progress {
  height: 6px;
  background: #1f2937;
  margin-top: 10px;
}

.projects .progress-bar {
  background: #c8a46a;
}

@media (max-width: 768px) {
  .projects .hero-section h1 {
    font-size: 32px;
  }
  .projects .project-img {
    height: 200px;
  }
}

.why-we-are {
  background: var(--light);
}

.why-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  /* font-weight: 600; */
}

.why-text {
  color: var(--dark);
}

.why-box {
  background: var(--primary);
  padding: 25px;
  border-radius: 16px;
  transition: all 0.4s ease;
  border: 1px solid rgba(200, 164, 106, 0.15);
  height: 100%;
}

.why-box h5 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
}

.why-box p {
  font-size: 14px;
  color: var(--light);
}

.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border-color: var(--gold);
}

.why-image img {
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6); */
}

@media (max-width: 992px) {
  .why-title {
    font-size: 28px;
  }
}

.completed-projects {
  background: var(--light);
}

.completed-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid rgba(200, 164, 106, 0.2);
  height: 100%;
}

.completed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.completed-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.completed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.6s ease;
}

.completed-card:hover .completed-img img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.completed-ribbon {
  position: absolute;
  top: 15px;
  right: -40px;
  background: var(--gold);
  color: var(--dark);
  padding: 6px 50px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(45deg);
}

.completed-content {
  padding: 25px;
}

.completed-content h5 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 600;
}

.completed-content p {
  color: var(--dark);
  font-size: 14px;
}

.completed-location {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 14px;
}

@media (max-width: 768px) {
  .completed-img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .completed-img {
    height: 180px;
  }
}

.lux-contact {
  padding: 100px 0;
  background: var(--light);
  color: var(--dark);
}

/* TEXT */

.lux-contact-tag {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 13px;
}

.lux-contact .social-links {
  margin-bottom: 30px;
}

.lux-contact .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #0a0a0a;
  font-size: 16px;
  color: var(--dark);
  margin-right: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.lux-contact .social-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.lux-contact-title {
  font-size: 42px;
  font-family: "Playfair Display", serif;
  margin: 20px 0;
}

.lux-contact-title span {
  color: var(--gold);
}

.lux-contact-text {
  color: var(--dark);
  margin-bottom: 10px;
}

.lux-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.lux-contact-icon {
  width: 45px;
  height: 45px;
  background: var(--dark);
  color: #d4a84f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}

.lux-contact-text h6 {
  margin-bottom: 5px;
  font-weight: 600;
}

.lux-contact-item a {
  text-decoration: none;
  color: #0a0a0a;
}

.lux-contact-text p {
  margin: 0;
  color: #0a0a0a;
  line-height: 1.6;
}

/* FORM BOX */

.lux-form-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* INPUT */

.lux-input {
  background: transparent;
  border: 1px solid #0a0a0a;
  color: var(--dark);
  padding: 12px;
}

.lux-input::placeholder {
  color: var(--dark);
}

.lux-input:focus {
  border-color: var(--gold);
  box-shadow: none;
  background: transparent;
  color: var(--dark);
}

/* BUTTON */

.lux-send-btn {
  background: var(--gold);
  border: none;
  padding: 12px 35px;
  color: var(--dark);
  border-radius: 40px;
  font-weight: 500;
  transition: 0.3s;
}

.lux-send-btn:hover {
  background: var(--dark);
  color: var(--light);
}

/* MOBILE */

@media (max-width: 768px) {
  .lux-contact {
    padding: 70px 0;
  }

  .lux-contact-title {
    font-size: 30px;
  }

  .lux-form-box {
    padding: 30px;
  }
}
/* Section */
.gallery-section {
  padding: 100px 0;
}

/* Title */

.gallery-title {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-title h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.gallery-title p {
  color: #777;
}

/* Gallery Card */

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay */

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 28px;
}

.project-highlights {
  background: var(--dark);
  color: #fff;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #d4af37;
}

.section-subtitle {
  color: #bbb;
}

.highlight-card {
  background: var(--primary);
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: #d4af37;
}

.highlight-icon {
  width: 70px;
  height: 70px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
  font-size: 28px;
  color: #d4af37;
}

.highlight-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 14px;
  color: #aaa;
}

.configuration-section {
  background: var(--light);
  color: var(--dark);
}

.config-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
}

.config-subtitle {
  color: var(--dark);
}

.config-table {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
}

.config-table thead {
  background: #d4af37;
  color: #000;
}

.config-table th {
  padding: 18px;
  font-weight: 600;
}

.config-table td {
  padding: 18px;
  border-bottom: 1px solid #333;
}

.config-table tbody tr:hover {
  background: #222;
}

.btn-gold {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 6px 16px;
  font-weight: 500;
}

.btn-gold:hover {
  background: #c49b2d;
}
.floor-plan-section {
  background: var(--light);
  color: var(--dark);
}
.floor-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
}

.filter-btn {
  background: var(--dark);
  color: var(--light);
  border: none;
  padding: 10px 22px;
  margin: 5px;
  border-radius: 30px;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--dark);
}

.floor-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.floor-card img {
  transition: 0.5s;
}

.floor-card:hover img {
  transform: scale(1.1);
}

.floor-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.gallery-section-1 {
  background: #0f0f0f;
}

.gallery-title-1 {
  font-size: 42px;
  font-weight: 700;
  color: #d4af37;
}

.gallery-item-1 {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.gallery-item-1 img {
  width: 100%;
  transition: 0.5s;
}

.gallery-item-1:hover img {
  transform: scale(1.1);
}

.location-section {
  background: var(--dark);
  color: #fff;
}

.location-title {
  font-size: 42px;
  font-weight: 700;
  color: #d4af37;
}

.location-subtitle {
  color: #bbb;
}

.location-card {
  background: var(--primary);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.location-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.location-icon {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 15px;
}

.location-card h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.location-card p {
  color: #aaa;
  margin: 0;
}

.amenities-location {
  background: #0e0e0e;
  color: #fff;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #d4af37;
}

.amenity-box {
  background: #161616;
  border: 1px solid #2a2a2a;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  transition: 0.4s;
}

.amenity-box i {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 10px;
  display: block;
}

.amenity-box p {
  margin: 0;
  font-size: 16px;
}

.amenity-box:hover {
  background: #1f1f1f;
  border-color: #d4af37;
  transform: translateY(-5px);
}

/* MAP */

.map-box {
  background: #161616;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
}

.map-img {
  border-radius: 6px;
  margin-bottom: 20px;
}

.location-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.location-item {
  background: #0e0e0e;
  padding: 15px;
  border: 1px solid #333;
  border-radius: 6px;
}

.location-item span {
  font-size: 14px;
  color: #aaa;
}

.location-item p {
  margin: 0;
  color: #d4af37;
  font-weight: 600;
}
/* ABOUT */
.project-about-img .project-img {
  height: auto;
  border-radius: 20px;
}

/* Modal Background */
.luxury-modal {
  background: #0f0f0f;
  color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(202, 165, 91, 0.3);
}

/* Title */
.modal-title {
  font-weight: 600;
  letter-spacing: 1px;
}

/* Inputs */
.luxury-input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px;
}

.luxury-input::placeholder {
  color: #aaa;
}

.luxury-input:focus {
  background: transparent;
  border-color: #caa55b;
  box-shadow: none;
  color: #fff;
}

/* Submit Button */
.luxury-submit {
  background: #caa55b;
  border: none;
  padding: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.luxury-submit:hover {
  background: #b89245;
}
