@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-bg-dark: #ffffff;
  --color-bg-card: #f8f9fa;
  --color-gold: #d4af37;
  --color-gold-light: #b08d29;
  /* Darkened gold-light for better contrast on white */
  --color-gold-dark: #aa8c2c;
  --color-text-main: #1a1a1a;
  --color-text-muted: #666666;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  animation: pageFadeIn 0.35s ease-out forwards;
}

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

body.page-fade-out {
  opacity: 0 !important;
  transform: translateY(-4px) !important;
  transition: opacity 0.22s ease-in, transform 0.22s ease-in !important;
}

@media (min-width: 992px) {
  body {
    zoom: 90%;
  }
}

img, video, iframe, canvas, svg {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-gold-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #000;
  border: 1px solid var(--color-gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 20px 0;
  transition: all 0.3s ease;

}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e0e0e0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--color-gold);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #f3e5ab;
  /* Light gold for dark hero overlay */
  animation: fadeUp 1s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  color: #f5f5f5;
  margin-bottom: 30px;
  animation: fadeUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
}

/* Cards (Features & Products) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--color-bg-card);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--color-text-muted);
}

/* Product Cards */
.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.product-img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.6s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-info {
  padding: 25px;
  text-align: center;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.product-info p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.rating {
  color: var(--color-gold);
  margin-bottom: 15px;
  letter-spacing: 2px;
}

/* Split Section (About / Products list) */
.split-section {
  display: flex;
  align-items: center;
  gap: 50px;
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  position: relative;
}

.split-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.split-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-gold);
  border-radius: 8px;
  z-index: -1;
}

/* Features List */
.features-list {
  margin-bottom: 30px;
}

.features-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li i {
  color: var(--color-gold);
}

/* Reviews */
.testimonial-slider-container {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-slider-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: slideContinuous 35s linear infinite;
}

.testimonial-slider-track:hover {
  animation-play-state: paused;
}

@keyframes slideContinuous {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

.review-card {
  width: 380px;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.review-text {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.reviewer {
  font-weight: 700;
  color: var(--color-text-main);
  font-size: 1.1rem;
}

.review-card .rating {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 0;
  letter-spacing: 2px;
}

/* Tags / Icons section */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.tag {
  background: var(--color-bg-card);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--color-gold-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

.tag:hover {
  background: var(--color-gold);
  color: #000;
}

/* FAQ */
.faq-item {
  background: var(--color-bg-card);
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-gold-light);
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--color-text-muted);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Footer */
.footer {
  background: #f8f9fa;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--color-gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-gold-light);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Modern Why Choose Us Section */
.why-choose-section {
  background-color: var(--color-bg-dark);
  overflow: hidden;
}

.why-choose-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.why-choose-image {
  flex: 1;
  position: relative;
  border-radius: 20px;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  padding: 25px;
  border-radius: 15px;
  color: #000;
  text-align: center;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.experience-badge .exp-years {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.experience-badge .exp-text {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose-content {
  flex: 1.2;
}

.why-choose-content .section-title::after {
  left: 0;
  transform: translateX(0);
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item-modern {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-item-modern:hover {
  background: var(--color-bg-card);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.feature-icon-modern {
  font-size: 2rem;
  background: rgba(212, 175, 55, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.feature-text-modern h3 {
  font-size: 1.15rem;
  margin-bottom: 5px;
  color: var(--color-text-main);
}

.feature-text-modern p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .why-choose-wrapper {
    flex-direction: column;
  }

  .features-grid-modern {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    bottom: -15px;
    right: 15px;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .split-section {
    flex-direction: column;
  }

  .split-image::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

/* Discover Section */
.discover-section {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, #faf8f5 100%);
  padding: 100px 0;
  position: relative;
}

.discover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Side */
.love-reasons {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.love-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.love-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: bottom;
  z-index: -1;
}

.love-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
}

.love-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.love-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.love-item:hover .love-icon {
  background: var(--color-gold);
  color: #fff;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.love-text h4 {
  font-size: 1.15rem;
  margin-bottom: 5px;
  color: var(--color-text-main);
  font-family: var(--font-heading);
}

.love-text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

/* Right Side */
.discover-perfect {
  position: relative;
}

.perfect-box {
  background: var(--color-gold);
  border-radius: 24px;
  padding: 50px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.perfect-box::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.perfect-box .section-title {
  color: #ffffff;
}

.perfect-box .section-title::after {
  background-color: #ffffff;
}

.perfect-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.perfect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.perfect-tag {
  padding: 12px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.perfect-tag span {
  position: relative;
  z-index: 2;
}

.tag-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 1;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.perfect-tag:hover {
  color: var(--color-gold-dark);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.perfect-tag:hover .tag-bg {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .discover-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.contact-info-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: var(--color-gold);
}

.contact-info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--color-text-main);
}

.contact-info-card p {
  color: var(--color-text-muted);
  margin: 0;
}

.contact-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-text-main);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fdfdfd;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--color-text-main);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Modal Styles */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
}

.product-modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  position: relative;
  display: flex;
  overflow: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.product-modal.active .product-modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.modal-body {
  display: flex;
  width: 100%;
}

.modal-img-container {
  flex: 1;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 400px;
}

.modal-info {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-info h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--color-gold-dark);
}

.modal-info p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .product-modal-content {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    width: 95%;
  }
  .modal-body {
    flex-direction: column;
  }
  .modal-img-container {
    width: 100%;
  }
  .modal-img-container img {
    max-height: 250px;
  }
  .modal-info {
    padding: 20px 15px;
    text-align: center;
  }
  .modal-info h3 {
    font-size: 1.5rem;
  }
  .modal-info p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

/* Premium Care Cards */
.care-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.care-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.care-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
}

.care-card:hover::before {
  opacity: 1;
}

.care-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #fdfdfd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
}

.care-card:hover .care-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: rgba(212, 175, 55, 0.05);
}

/* Redesigned Premium FAQ */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  background: rgba(212, 175, 55, 0.02);
}

.faq-question h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--color-text-main);
  font-weight: 500;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8f9fa;
  color: var(--color-gold);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.faq-item:hover .faq-toggle {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.2);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  background: #ffffff;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 300px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}
/*==============================
 WHY CHOOSE US
==============================*/

.why-premium{

padding:120px 0;

background:linear-gradient(to bottom,#ffffff,#faf8f2);

position:relative;

overflow:hidden;

}

.why-premium::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:rgba(212,175,55,.08);

border-radius:50%;

left:-150px;

top:-120px;

filter:blur(90px);

}

.why-header{

text-align:center;

margin-bottom:70px;

}

.why-header span{

font-size:14px;

letter-spacing:4px;

font-weight:600;

color:#b8901d;

text-transform:uppercase;

}

.why-header h2{

font-size:48px;

margin:15px 0;

color:#111;

}

.why-header p{

max-width:700px;

margin:auto;

font-size:18px;

color:#666;

line-height:1.8;

}

.why-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.why-image{

position:relative;

max-width:480px;

margin:0 auto;

}

.why-image img{

width:100%;

max-height:480px;

object-fit:cover;

border-radius:26px;

box-shadow:0 20px 45px rgba(0,0,0,.12);

transition:.5s;

}

.why-image:hover img{

transform:scale(1.03);

}

.floating-card{

position:absolute;

bottom:30px;

right:-30px;

background:linear-gradient(135deg,#d4af37,#b8901d);

padding:25px 35px;

border-radius:20px;

text-align:center;

box-shadow:0 25px 50px rgba(212,175,55,.35);

animation:float 3s ease-in-out infinite;

}

.floating-card h3{

font-size:34px;

margin:0;

color:#111;

}

.floating-card span{

font-weight:600;

font-size:14px;

color:#111;

}

.why-content{

display:grid;

grid-template-columns:1fr;

gap:18px;

}

.feature{

display:flex;

align-items:center;

gap:22px;

padding:22px 25px;

background:#fff;

border-radius:20px;

border:1px solid rgba(212,175,55,.15);

box-shadow:0 10px 30px rgba(0,0,0,.05);

transition:.4s;

}

.feature:hover{

transform:translateX(12px);

box-shadow:0 20px 45px rgba(212,175,55,.15);

}

.icon{

width:70px;

height:70px;

display:flex;

justify-content:center;

align-items:center;

border-radius:18px;

background:#fff;

border:2px solid rgba(212,175,55,.15);

font-size:28px;

color:#c89b1d;

flex-shrink:0;

transition:.4s;

}

.feature:hover .icon{

background:linear-gradient(135deg,#d4af37,#b8901d);

color:#fff;

transform:rotate(-8deg) scale(1.08);

box-shadow:0 15px 35px rgba(212,175,55,.35);

}

.feature h3{

font-size:22px;

margin-bottom:8px;

color:#111;

}

.feature p{

color:#666;

font-size:15px;

line-height:1.7;

}

.why-content .btn{

margin-top:20px;

width:240px;

text-align:center;

border-radius:40px;

padding:15px 35px;

font-weight:600;

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0px);

}

}

/*==============================
 Responsive
==============================*/

@media(max-width:992px){

.why-grid{

grid-template-columns:1fr;

}

.why-header h2{

font-size:38px;

}

.floating-card{

right:20px;

bottom:20px;

}

}

@media(max-width:768px){

.why-premium{

padding:80px 0;

}

.why-header h2{

font-size:30px;

}

.feature{

padding:18px;

}

.icon{

width:60px;

height:60px;

font-size:22px;

}

.feature h3{

font-size:18px;

}

.feature p{

font-size:14px;

}

.why-content .btn{

width:100%;

}

}
/*==========================
FEATURED COLLECTION
===========================*/

.featured-section{

padding:120px 0;

background:linear-gradient(to bottom,#fff,#faf8f2);

}

.section-heading{

text-align:center;

margin-bottom:70px;

}

.section-heading span{

font-size:14px;

letter-spacing:4px;

text-transform:uppercase;

color:#c89b1d;

font-weight:600;

}

.section-heading h2{

font-size:48px;

margin:15px 0;

}

.section-heading p{

max-width:700px;

margin:auto;

line-height:1.8;

color:#666;

font-size:17px;

}

.products-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

gap:40px;

}

.product-card{

background:#fff;

border-radius:28px;

overflow:hidden;

box-shadow:0 20px 45px rgba(0,0,0,.08);

transition:.5s;

position:relative;

}

.product-card:hover{

transform:translateY(-12px);

box-shadow:0 35px 70px rgba(212,175,55,.18);

}

.product-image{

position:relative;

overflow:hidden;

background:#f8f8f8;

}

.product-image img{

width:100%;

height:420px;

object-fit:contain;

transition:.7s;

padding:30px;

}

.product-card:hover img{

transform:scale(1.08);

}

.badge{

position:absolute;

top:20px;

left:20px;

background:#d4af37;

color:#111;

padding:8px 18px;

font-size:13px;

border-radius:30px;

font-weight:600;

z-index:2;

}

.product-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.45);

display:flex;

align-items:center;

justify-content:center;

opacity:0;

transition:.4s;

}

.product-card:hover .product-overlay{

opacity:1;

}

.overlay-btn{

padding:14px 28px;

background:#fff;

border-radius:40px;

text-decoration:none;

color:#111;

font-weight:600;

transition:.3s;

}

.overlay-btn:hover{

background:#d4af37;

}

.product-content{

padding:28px;

}

.product-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:10px;

}

.product-top h3{

font-size:24px;

}

.wishlist{

width:45px;

height:45px;

border:none;

background:#f5f5f5;

border-radius:50%;

cursor:pointer;

transition:.3s;

}

.wishlist:hover{

background:#d4af37;

color:#fff;

}

.stars{

color:#f4b400;

margin-bottom:15px;

}

.product-content p{

color:#666;

line-height:1.8;

margin-bottom:25px;

}

.product-content .btn{

width:100%;

border-radius:40px;

padding:15px;

font-weight:600;

}

.view-all{

margin-top:60px;

text-align:center;

}

@media(max-width:768px){

.section-heading h2{

font-size:34px;

}

.product-image img{

height:300px;

}

}
/*=============================
 FEATURED COLLECTION
==============================*/

.featured-section{
    padding:120px 0;
    background:#faf9f7;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:35px;
}

.product-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    transition:.4s;
    border:1px solid #ececec;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.product-image{

    background:#ffffff;

    height:420px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:35px;

    position:relative;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#d4af37;

    color:#111;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.product-content{

    padding:28px;

}

.product-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:12px;

}

.product-top h3{

    font-size:24px;

    color:#222;

}

.wishlist{

    width:42px;

    height:42px;

    border-radius:50%;

    border:none;

    background:#f6f6f6;

    cursor:pointer;

    transition:.3s;

}

.wishlist:hover{

    background:#d4af37;

    color:#fff;

}

.stars{

    color:#ffb400;

    margin-bottom:15px;

    font-size:15px;

}

.product-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.product-content .btn{

    width:100%;

    border-radius:50px;

    padding:15px;

    font-size:16px;

    font-weight:600;

}

.product-content .btn:hover{

    transform:translateY(-3px);

}

@media(max-width:768px){

.product-image{

height:300px;

padding:20px;

}

}
/*==============================
CRAFTED FOR EVERY MOMENT
==============================*/

.luxury-section{

padding:120px 0;

background:linear-gradient(180deg,#ffffff,#faf8f3);

}

.luxury-header{

text-align:center;

margin-bottom:70px;

}

.luxury-header span{

letter-spacing:4px;

text-transform:uppercase;

color:#c69c2d;

font-weight:600;

font-size:14px;

}

.luxury-header h2{

font-size:48px;

margin:15px 0;

color:#222;

}

.luxury-header p{

max-width:760px;

margin:auto;

line-height:1.8;

color:#666;

font-size:17px;

}

.luxury-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:35px;

}

.luxury-card{

background:#fff;

padding:45px;

border-radius:25px;

border:1px solid rgba(212,175,55,.15);

box-shadow:0 15px 40px rgba(0,0,0,.05);

transition:.4s;

}

.luxury-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 60px rgba(212,175,55,.15);

}

.luxury-card h3{

font-size:30px;

margin-bottom:35px;

color:#222;

}

.luxury-feature{

display:flex;

gap:20px;

margin-bottom:28px;

align-items:flex-start;

}

.luxury-feature i{

width:65px;

height:65px;

display:flex;

justify-content:center;

align-items:center;

background:#faf6ea;

color:#c69c2d;

border-radius:18px;

font-size:26px;

transition:.4s;

}

.luxury-feature:hover i{

background:#c69c2d;

color:#fff;

}

.luxury-feature h4{

margin-bottom:8px;

font-size:22px;

}

.luxury-feature p{

color:#666;

line-height:1.7;

}

.occasion-text{

color:#666;

margin-bottom:35px;

line-height:1.8;

}

.occasion-grid{

display:flex;

flex-wrap:wrap;

gap:15px;

}

.occasion-grid span{

padding:14px 24px;

background:#faf6ea;

border-radius:40px;

font-weight:600;

transition:.3s;

cursor:pointer;

}

.occasion-grid span:hover{

background:#d4af37;

color:#fff;

transform:translateY(-4px);

}

@media(max-width:992px){

.luxury-grid{

grid-template-columns:1fr;

}

.luxury-header h2{

font-size:36px;

}

}
/*====================================
OUR PROMISE
=====================================*/

.promise-section{

padding:120px 0;

background:linear-gradient(135deg,#1c1c1c,#2b2b2b);

position:relative;

overflow:hidden;

}

.promise-section::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:rgba(212,175,55,.08);

border-radius:50%;

top:-180px;

left:-150px;

filter:blur(80px);

}

.promise-section::after{

content:"";

position:absolute;

width:350px;

height:350px;

background:rgba(212,175,55,.06);

border-radius:50%;

bottom:-120px;

right:-120px;

filter:blur(80px);

}

.promise-box{

max-width:1100px;

margin:auto;

text-align:center;

padding:70px 60px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(18px);

border-radius:30px;

}

.promise-label{

display:inline-block;

padding:10px 24px;

background:rgba(212,175,55,.15);

border:1px solid rgba(212,175,55,.35);

border-radius:40px;

color:#d4af37;

font-size:14px;

font-weight:600;

letter-spacing:3px;

text-transform:uppercase;

margin-bottom:25px;

}

.promise-box h2{

font-size:48px;

color:#fff;

margin-bottom:25px;

}

.promise-box p{

max-width:820px;

margin:auto;

font-size:18px;

line-height:1.9;

color:rgba(255,255,255,.75);

margin-bottom:55px;

}

.promise-features{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.promise-item{

padding:30px 20px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

transition:.4s;

}

.promise-item:hover{

transform:translateY(-8px);

background:#d4af37;

}

.promise-item i{

font-size:34px;

color:#d4af37;

margin-bottom:18px;

transition:.3s;

}

.promise-item span{

display:block;

font-size:18px;

font-weight:600;

color:#fff;

transition:.3s;

}

.promise-item:hover i,

.promise-item:hover span{

color:#111;

}

@media(max-width:992px){

.promise-features{

grid-template-columns:repeat(2,1fr);

}

.promise-box{

padding:50px 30px;

}

.promise-box h2{

font-size:36px;

}

}

@media(max-width:600px){

.promise-features{

grid-template-columns:1fr;

}

.promise-box h2{

font-size:30px;

}

.promise-box p{

font-size:16px;

}

}
/*==========================
TOP BAR
==========================*/

.top-bar{

background:#111;

padding:10px 0;

font-size:14px;

}

.top-container{

display:flex;

justify-content:space-between;

align-items:center;

}

.top-left{

display:flex;

gap:30px;

}

.top-left a{

color:#ddd;

text-decoration:none;

transition:.3s;

}

.top-left i{

color:#d4af37;

margin-right:8px;

}

.top-left a:hover{

color:#fff;

}

.top-right{

display:flex;

gap:15px;

}

.top-right a{

width:34px;

height:34px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:rgba(255,255,255,.08);

color:#d4af37;

transition:.3s;

text-decoration:none;

}

.top-right a:hover{

background:#d4af37;

color:#111;

}

/*==========================
HEADER
==========================*/

.navbar{

background:#fff;

padding:18px 0;

position:sticky;

top:0;

z-index:999;

box-shadow:0 5px 25px rgba(0,0,0,.06);

}

.nav-container{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

display:flex;

align-items:center;

gap:15px;

text-decoration:none;

}

.logo img{

height:70px;

}

.logo h2{

font-size:28px;

color:#222;

margin:0;

font-family:"Playfair Display",serif;

}

.logo span{

font-size:13px;

letter-spacing:2px;

color:#c69c2d;

text-transform:uppercase;

}

.nav-links{

display:flex;

gap:40px;

list-style:none;

}

.nav-links a{

text-decoration:none;

font-size:17px;

font-weight:600;

color:#222;

position:relative;

transition:.3s;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#d4af37;

transition:.3s;

}

.nav-links a:hover::after,

.nav-links .active::after{

width:100%;

}

.nav-links a:hover{

color:#d4af37;

}

.shop-btn{

padding:14px 34px;

border-radius:40px;

background:linear-gradient(135deg,#d4af37,#b68a00);

color:#fff;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.shop-btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(212,175,55,.35);

}

.mobile-menu-btn{

display:none;

font-size:28px;

cursor:pointer;

}

/*==========================
Responsive
==========================*/

@media(max-width:992px){

.top-bar{

display:none;

}

.shop-btn{

display:none;

}

.nav-links{

display:none;

}

.mobile-menu-btn{

display:block;

}

.logo img{

height:55px;

}

.logo h2{

font-size:22px;

}

}
/*======================
TOP BAR
=======================*/

.top-bar{

background:#111;

padding:14px 0;

}

.top-container{

display:flex;

justify-content:space-between;

align-items:center;

}

.top-left{

display:flex;

gap:40px;

}

.top-left a{

font-size:17px;

font-weight:500;

color:#fff;

text-decoration:none;

display:flex;

align-items:center;

gap:10px;

transition:.3s;

}

.top-left a:hover{

color:#d4af37;

}

.top-left i{

font-size:18px;

color:#d4af37;

}

.top-right{

display:flex;

gap:18px;

}

.top-right a{

width:40px;

height:40px;

display:flex;

justify-content:center;

align-items:center;

background:rgba(255,255,255,.08);

border-radius:50%;

color:#d4af37;

font-size:18px;

transition:.3s;

}

.top-right a:hover{

background:#d4af37;

color:#111;

transform:translateY(-3px);

}
.navbar{

position:sticky;

top:0;

left:0;

width:100%;

padding:10px 0;

background:transparent;

transition:.4s;

z-index:999;

}

.nav-container{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

display:flex;

align-items:center;

gap:12px;

text-decoration:none;

}

.logo img{

height:60px;

}

.logo-text h2{

font-size:30px;

font-weight:700;

margin:0;

color:#fff;

font-family:'Playfair Display',serif;

transition:.4s;

}

.nav-links{

display:flex;

gap:35px;

list-style:none;

}

.nav-links a{

color:#fff;

font-size:17px;

font-weight:600;

text-decoration:none;

position:relative;

transition:.3s;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:#d4af37;

transition:.3s;

}

.nav-links a:hover::after,

.nav-links .active::after{

width:100%;

}

.nav-links a:hover{

color:#d4af37;

}

.shop-btn{

padding:12px 30px;

border-radius:40px;

background:#d4af37;

color:#111;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.shop-btn:hover{

transform:translateY(-3px);

}
/*==============================
HEADER
==============================*/

.lux-header{

position:relative;

top:0;

left:0;

width:100%;

z-index:999;

padding:0;

background:rgba(255,255,255,.08);

backdrop-filter:blur(12px);

transition:.4s ease;

}

.lux-header.header-fixed{

position: fixed !important;

top: 0 !important;

left: 0 !important;

width: 100% !important;

z-index: 1000 !important;

background: #fff !important;

box-shadow: 0 10px 35px rgba(0,0,0,.08) !important;

padding: 0;

}

.lux-wrapper{

max-width:1300px;

margin:auto;

padding:0 25px;

display:flex;

align-items:center;

justify-content:space-between;

min-height:88px;

}

/* Brand */

.brand-area{

display:flex;

align-items:center;

gap:15px;

text-decoration:none;
padding:0;
margin:0;

}

.brand-image{

height:88px;
width:auto;

display:block;
margin:0;
padding:0;
object-fit:contain;

}

.brand-title{

font-size:30px;

font-family:'Playfair Display',serif;

margin:0;

font-weight:700;

color:#fff;

transition:.3s;

}

.brand-subtitle{

margin:2px 0 0;

font-size:12px;

letter-spacing:6px;

color:#D4AF37;

font-weight:600;

}

.header-fixed .brand-title{

color:#222;

}

/* Navigation */

.primary-nav{

flex:1;

display:flex;

justify-content:center;

}

.primary-menu{

display:flex;

gap:45px;

list-style:none;

margin:0;

padding:0;

}

.primary-menu a{

position:relative;

text-decoration:none;

font-size:17px;

font-weight:600;

color:#fff;

transition:.3s;

}

.header-fixed .primary-menu a{

color:#222;

}

.primary-menu a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#D4AF37;

transition:.3s;

}

.primary-menu a:hover,

.primary-menu .menu-active{

color:#D4AF37;

}

.primary-menu a:hover::after,

.primary-menu .menu-active::after{

width:100%;

}

/* Button */

.header-right{

display:flex;

align-items:center;

gap:18px;

}

.premium-btn{

padding:13px 32px;

border-radius:50px;

background:linear-gradient(135deg,#D4AF37,#B8860B);

text-decoration:none;

font-weight:600;

color:#fff;

transition:.3s;

}

.premium-btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(212,175,55,.35);

}

/* Mobile */

.menu-toggler{

display:none;

background:none;

border:none;

font-size:28px;

cursor:pointer;

color:#fff;

}

.header-fixed .menu-toggler{

color:#222;

}

@media(max-width:992px){

.primary-nav{

display:none;

}

.premium-btn{

display:none;

}

.menu-toggler{

display:block;

}

.brand-image{

height:50px;

}

.brand-title{

font-size:24px;

}

.brand-subtitle{

font-size:10px;

letter-spacing:4px;

}

}
/*==========================
TOP HEADER
==========================*/

.top-header{

background:#111;

border-bottom:1px solid rgba(255,255,255,.08);

padding:10px 0;

font-size:15px;

}

.top-header-wrapper{

max-width:1300px;

margin:auto;

padding:0 25px;

display:flex;

justify-content:space-between;

align-items:center;

gap:20px;

}

.top-contact{

display:flex;

align-items:center;

gap:30px;

}

.top-contact a{

display:flex;

align-items:center;

gap:8px;

text-decoration:none;

color:#f5f5f5;

font-weight:500;

transition:.3s;

}

.top-contact a:hover{

color:#D4AF37;

}

.top-contact i{

color:#D4AF37;

font-size:15px;

}

.top-offer{

display:flex;

align-items:center;

gap:10px;

color:#D4AF37;

font-weight:600;

letter-spacing:.5px;

}

.top-social{

display:flex;

align-items:center;

gap:12px;

}

.top-social a{

width:34px;

height:34px;

display:flex;

justify-content:center;

align-items:center;

border:1px solid rgba(255,255,255,.15);

border-radius:50%;

color:#fff;

transition:.35s;

text-decoration:none;

}

.top-social a:hover{

background:#D4AF37;

border-color:#D4AF37;

color:#111;

transform:translateY(-3px);

}
@media(max-width:992px){

.top-header{

display:none;

}

}
/*====================================
BRAND STORY
====================================*/

.brand-story-section{

padding:120px 0;

background:linear-gradient(180deg,#fff,#faf8f3);

}

.brand-story-grid{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:70px;

}

/* IMAGE */

.story-image-area{

position:relative;

}

.story-image-box{

border-radius:30px;

overflow:hidden;

box-shadow:0 30px 60px rgba(0,0,0,.08);

}

.story-image-box img{

width:100%;

height:500px;

object-fit:contain;

display:block;

transition:.5s;

}

.story-image-box:hover img{

transform:scale(1.05);

}

/* Floating Card */

.experience-card{

position:absolute;

right:-30px;

bottom:40px;

background:#D4AF37;

padding:28px 35px;

border-radius:20px;

color:#fff;

box-shadow:0 20px 40px rgba(212,175,55,.35);

text-align:center;

}

.experience-card h2{

font-size:40px;

margin:0;

}

.experience-card p{

margin-top:6px;

font-weight:600;

}

/* CONTENT */

.story-label{

display:inline-block;

padding:8px 18px;

background:#f5efe0;

color:#b8860b;

border-radius:40px;

font-size:13px;

letter-spacing:2px;

font-weight:700;

margin-bottom:20px;

}

.story-content-area h2{

font-size:48px;

line-height:1.2;

margin-bottom:25px;

color:#222;

}

.story-description{

font-size:17px;

line-height:1.9;

color:#666;

margin-bottom:22px;

}

/* Features */

.story-features{

display:grid;

grid-template-columns:1fr 1fr;

gap:22px;

margin:40px 0;

}

.story-feature{

display:flex;

gap:18px;

padding:20px;

background:#fff;

border-radius:18px;

box-shadow:0 8px 25px rgba(0,0,0,.05);

transition:.35s;

}

.story-feature:hover{

transform:translateY(-6px);

box-shadow:0 18px 35px rgba(212,175,55,.18);

}

.story-feature i{

width:55px;

height:55px;

display:flex;

align-items:center;

justify-content:center;

background:#D4AF37;

color:#fff;

border-radius:15px;

font-size:22px;

flex-shrink:0;

}

.story-feature h4{

margin:0 0 6px;

font-size:19px;

}

.story-feature p{

margin:0;

font-size:15px;

color:#666;

}

/* Button */

.story-btn{

display:inline-block;

padding:15px 38px;

background:linear-gradient(135deg,#D4AF37,#B8860B);

border-radius:40px;

color:#fff;

font-weight:600;

text-decoration:none;

transition:.35s;

}

.story-btn:hover{

transform:translateY(-4px);

box-shadow:0 20px 35px rgba(212,175,55,.35);

}

/* Responsive */

@media(max-width:992px){

.brand-story-grid{

grid-template-columns:1fr;

}

.story-content-area{

order:2;

}

.story-image-box img{

height:450px;

}

.experience-card{

right:20px;

bottom:20px;

padding:22px;

}

.story-content-area h2{

font-size:36px;

}

.story-features{

grid-template-columns:1fr;

}

}
/*==================================
CONTACT SECTION
==================================*/

.lux-contact-section{

padding:120px 0;

background:#111;

position:relative;

overflow:hidden;

}

.lux-contact-section::before{

content:"";

position:absolute;

width:420px;

height:420px;

background:#D4AF37;

opacity:.08;

border-radius:50%;

left:-120px;

top:-120px;

filter:blur(90px);

}

.lux-contact-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

/* LEFT */

.contact-tag{

display:inline-block;

padding:8px 18px;

background:rgba(212,175,55,.15);

color:#D4AF37;

border-radius:40px;

font-size:13px;

letter-spacing:2px;

font-weight:700;

margin-bottom:20px;

}

.contact-left h2{

font-size:48px;

color:#fff;

margin-bottom:20px;

line-height:1.2;

}

.contact-left>p{

font-size:17px;

line-height:1.9;

color:#bdbdbd;

margin-bottom:45px;

}

.contact-card{

display:flex;

gap:22px;

align-items:center;

padding:25px;

margin-bottom:20px;



border:1px solid rgba(255,255,255,.08);

border-radius:20px;

transition:.35s;
color:#fff;

}

.contact-card:hover{

transform:translateY(-8px);

border-color:#D4AF37;

}

.contact-icon{

width:65px;

height:65px;

display:flex;

justify-content:center;

align-items:center;

background:#D4AF37;

border-radius:18px;

color:#fff;

font-size:24px;

flex-shrink:0;

}

.contact-card h4{

margin:0 0 6px;

color:#fff;

font-size:20px;

}

.contact-card p{

margin:0;

color:#bdbdbd;

}

/* FORM */

.lux-form{

background:#1b1b1b;

padding:45px;

border-radius:30px;

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(10px);

box-shadow:0 25px 60px rgba(0,0,0,.25);

}

.lux-form h3{

color:#fff;

font-size:32px;

margin-bottom:30px;

}

.input-box{

margin-bottom:22px;

}

.input-box label{

display:block;

color:#ddd;

margin-bottom:8px;

font-weight:600;

}

.input-box input,

.input-box textarea{

width:100%;

padding:16px 18px;

border:none;

border-radius:12px;

background:#2a2a2a;

color:#fff;

font-size:16px;

outline:none;

transition:.3s;

}

.input-box input:focus,

.input-box textarea:focus{

border:1px solid #D4AF37;

background:#333;

}

.whatsapp-btn{

width:100%;

padding:17px;

background:linear-gradient(135deg,#25D366,#1ebe5d);

border:none;

border-radius:12px;

font-size:18px;

font-weight:600;

color:#fff;

cursor:pointer;

display:flex;

justify-content:center;

align-items:center;

gap:12px;

transition:.3s;

}

.whatsapp-btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(37,211,102,.35);

}

.whatsapp-btn i{

font-size:22px;

}

/* Responsive */

@media(max-width:992px){

.lux-contact-wrapper{

grid-template-columns:1fr;

}

.contact-left h2{

font-size:36px;

}

.lux-form{

padding:30px;

}

}
.lux-contact-section{

    padding:120px 0;

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(circle at top left,#fff8e8 0%,transparent 35%),
    radial-gradient(circle at bottom right,#fff4d8 0%,transparent 30%),
    linear-gradient(180deg,#ffffff,#f8f8f8);

}
.lux-contact-section::before{

content:"";

position:absolute;

width:450px;

height:450px;

border-radius:50%;

background:rgba(212,175,55,.12);

top:-180px;

left:-150px;

filter:blur(90px);

}

.lux-contact-section::after{

content:"";

position:absolute;

width:380px;

height:380px;

border-radius:50%;

background:rgba(212,175,55,.08);

bottom:-150px;

right:-120px;

filter:blur(90px);

}
.lux-contact-section{

padding:120px 0;

background:

linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.92)),

url(images/marble-bg.jpg);

background-size:cover;

background-position:center;

}
/*==================================================
CONTACT SECTION
==================================================*/

.lux-contact-section{
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,#FFF8EB 0%,transparent 35%),
        radial-gradient(circle at bottom right,#FFF3D7 0%,transparent 30%),
        linear-gradient(180deg,#ffffff,#f9f9f9);
}

/* Decorative Background */

.lux-contact-section::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:#D4AF37;
    opacity:.08;
    border-radius:50%;
    top:-180px;
    left:-150px;
    filter:blur(90px);
}

.lux-contact-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:#D4AF37;
    opacity:.06;
    border-radius:50%;
    bottom:-120px;
    right:-120px;
    filter:blur(80px);
}

.lux-contact-wrapper{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/*==================================================
LEFT CONTENT
==================================================*/

.contact-tag{
    display:inline-block;
    padding:10px 22px;
    background:#FFF2CF;
    color:#B8860B;
    border-radius:40px;
    font-size:13px;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:22px;
}

.contact-left h2{
    font-size:52px;
    color:#1b1b1b;
    line-height:1.2;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

.contact-left>p{
    color:#666;
    font-size:18px;
    line-height:1.9;
    margin-bottom:45px;
}

/*==================================================
CONTACT CARDS
==================================================*/

.contact-card{

    display:flex;
    align-items:center;
    gap:22px;

    background:#fff;

    padding:24px;

    margin-bottom:22px;

    border-radius:22px;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(212,175,55,.18);

}

.contact-icon{

    width:70px;

    height:70px;

    min-width:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#D4AF37,#B8860B);

    color:#fff;

    font-size:26px;

}

.contact-card h4{

    margin:0 0 6px;

    font-size:21px;

    color:#222;

}

.contact-card p{

    margin:0;

    color:#777;

    font-size:16px;

    line-height:1.7;

}

/*==================================================
FORM
==================================================*/

.lux-form{

    background:rgba(255,255,255,.95);

    padding:45px;

    border-radius:30px;

    border:1px solid rgba(212,175,55,.18);

    backdrop-filter:blur(20px);

    box-shadow:0 30px 70px rgba(0,0,0,.08);

}

.lux-form h3{

    font-size:34px;

    color:#222;

    margin-bottom:30px;

    font-family:'Playfair Display',serif;

}

.input-box{

    margin-bottom:22px;

}

.input-box label{

    display:block;

    margin-bottom:10px;

    color:#444;

    font-weight:600;

    font-size:15px;

}

.input-box input,

.input-box textarea{

    width:100%;

    padding:16px 18px;

    border-radius:12px;

    border:1px solid #e5e5e5;

    background:#fff;

    font-size:16px;

    color:#333;

    transition:.35s;

    resize:none;

}

.input-box input::placeholder,

.input-box textarea::placeholder{

    color:#aaa;

}

.input-box input:focus,

.input-box textarea:focus{

    outline:none;

    border-color:#D4AF37;

    box-shadow:0 0 0 4px rgba(212,175,55,.15);

}

/*==================================================
BUTTON
==================================================*/

.whatsapp-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:12px;

    background:linear-gradient(135deg,#25D366,#16a34a);

    color:#fff;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    transition:.35s;

}

.whatsapp-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 35px rgba(37,211,102,.30);

}

.whatsapp-btn i{

    font-size:22px;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

.lux-contact-wrapper{

grid-template-columns:1fr;

gap:60px;

}

}

@media(max-width:768px){

.lux-contact-section{

padding:80px 0;

}

.contact-left h2{

font-size:38px;

}

.contact-left>p{

font-size:16px;

}

.lux-form{

padding:30px;

}

.contact-card{

padding:18px;

}

.contact-icon{

width:60px;

height:60px;

min-width:60px;

font-size:22px;

}

.contact-card h4{

font-size:18px;

}

}

@media(max-width:480px){

.contact-left h2{

font-size:30px;

}

.contact-tag{

font-size:12px;

padding:8px 18px;

}

.lux-form h3{

font-size:28px;

}

.input-box input,

.input-box textarea{

padding:14px;

font-size:15px;

}

.whatsapp-btn{

font-size:16px;

padding:16px;

}

}
.hero{
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.25) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
}

.hero-tagline{
    display:inline-block;
    padding:10px 22px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:40px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:64px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:25px;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    color:#e6e6e6;
    margin-bottom:40px;
    max-width:620px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}

.hero-features{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:15px;
}

.feature-item i{
    color:#d4af37;
    font-size:20px;
}

@media(max-width:768px){

.hero{
    min-height:700px;
}

.hero-content h1{
    font-size:40px;
}

.hero-content p{
    font-size:17px;
}

.hero-buttons{
    flex-direction:column;
}

.hero-features{
    gap:18px;
}

}
.contact-card{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-header span{
    color:#c8a64b;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;
}

.contact-header h2{
    font-size:36px;
    margin:10px 0;
}

.contact-header p{
    color:#666;
    margin-bottom:30px;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#222;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    transition:.3s;
    outline:none;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#d4af37;
    box-shadow:0 0 0 4px rgba(212,175,55,.15);
}

.send-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#25D366,#1EBE57);
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.send-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(37,211,102,.3);
}

.send-btn i{
    margin-right:10px;
    font-size:22px;
}
.lux-enquiry-box{
    background:#fff;
    border-radius:25px;
    padding:45px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.lux-enquiry-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#d4af37,#f8e08b,#d4af37);
}

.lux-enquiry-head{
    margin-bottom:35px;
}

.lux-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fdf5df;
    color:#b8860b;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.lux-enquiry-head h3{
    font-size:34px;
    color:#222;
    margin-bottom:12px;
}

.lux-enquiry-head p{
    color:#777;
    line-height:1.8;
}

.lux-contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.lux-field{
    display:flex;
    align-items:center;
    background:#fafafa;
    border:1px solid #e8e8e8;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
}

.lux-field:hover,
.lux-field:focus-within{
    border-color:#d4af37;
    box-shadow:0 0 0 4px rgba(212,175,55,.12);
}

.lux-field i{
    width:60px;
    text-align:center;
    color:#c9a227;
    font-size:18px;
}

.lux-field input,
.lux-field textarea{
    width:100%;
    border:none;
    background:transparent;
    padding:18px 18px 18px 0;
    outline:none;
    font-size:15px;
    color:#333;
    resize:none;
}

.lux-textarea{
    align-items:flex-start;
}

.lux-textarea i{
    margin-top:20px;
}

.lux-send-btn{
    border:none;
    border-radius:15px;
    padding:18px;
    font-size:17px;
    font-weight:600;
    color:#fff;
    cursor:pointer;
    background:linear-gradient(135deg,#25D366,#169d49);
    transition:.35s;
}

.lux-send-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(37,211,102,.35);
}

.lux-send-btn i{
    margin-right:10px;
    font-size:20px;
}

@media(max-width:768px){

.lux-enquiry-box{
    padding:30px 22px;
}

.lux-enquiry-head h3{
    font-size:28px;
}

}
.lux-field input,
.lux-field textarea{
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    padding:18px 20px;   /* Left padding */
    font-size:15px;
    color:#333;
}
.lux-footer{
    background:#111;
    color:#fff;
    padding:80px 0 25px;
}

.lux-footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.lux-footer-logo img{
    width:180px;
}

.lux-footer-text{
    color:#bbb;
    line-height:1.8;
    margin:25px 0;
}

.lux-footer-col h3{
    color:#d4af37;
    font-size:22px;
    margin-bottom:25px;
    position:relative;
}

.lux-footer-col h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:50px;
    height:2px;
    background:#d4af37;
}

.lux-footer-col ul{
    list-style:none;
    padding:0;
}

.lux-footer-col ul li{
    margin-bottom:15px;
}

.lux-footer-col ul li a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.lux-footer-col ul li a:hover{
    color:#d4af37;
    padding-left:8px;
}

.lux-contact-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    align-items:flex-start;
}

.lux-contact-item i{
    color:#d4af37;
    font-size:18px;
    margin-top:4px;
}

.lux-contact-item span,
.lux-contact-item a{
    color:#ccc;
    text-decoration:none;
    line-height:1.7;
}

.lux-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.lux-social a{
    width:45px;
    height:45px;
    border:1px solid rgba(255,255,255,.15);
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    color:#fff;
    transition:.35s;
}

.lux-social a:hover{
    background:#d4af37;
    color:#111;
    transform:translateY(-5px);
}

.lux-footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    color:#999;
}

.lux-footer-bottom strong{
    color:#d4af37;
}

@media(max-width:992px){

.lux-footer-grid{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.lux-footer-grid{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.lux-contact-item{
    justify-content:center;
}

.lux-social{
    justify-content:center;
}

.lux-footer-col h3::after{
    left:50%;
    transform:translateX(-50%);
}

}
.lux-faq-section{
    padding:100px 0;
    background:#faf8f4;
}

.lux-faq-heading{
    text-align:center;
    max-width:700px;
    margin:auto auto 60px;
}

.lux-faq-heading span{
    display:inline-block;
    color:#b8860b;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:15px;
}

.lux-faq-heading h2{
    font-size:46px;
    margin-bottom:20px;
    color:#222;
}

.lux-faq-heading p{
    color:#666;
    line-height:1.8;
}

.lux-faq-wrapper{
    max-width:900px;
    margin:auto;
}

.lux-faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.lux-faq-item:hover{
    transform:translateY(-4px);
}

.lux-faq-question{
    width:100%;
    padding:28px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:none;
    background:#fff;
    cursor:pointer;
    font-size:20px;
    font-weight:600;
    color:#222;
}

.lux-faq-question i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#d4af37;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.lux-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.45s ease;
}

.lux-faq-answer p{
    padding:0 30px 30px;
    color:#666;
    line-height:1.9;
}

.lux-faq-item.active .lux-faq-answer{
    max-height:250px;
}

.lux-faq-item.active .lux-faq-question i{
    transform:rotate(45deg);
}

@media(max-width:768px){

.lux-faq-heading h2{
    font-size:34px;
}

.lux-faq-question{
    font-size:17px;
    padding:22px;
}

}
.privacy-hero{

    position:relative;
    height:380px;

    background:url("../images/hero-banner.png") center/cover;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    color:#fff;

}

.overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.72);

}

.privacy-hero .container{

    position:relative;
    z-index:2;

}

.hero-tag{

    display:inline-block;

    background:#d4af37;

    color:#111;

    padding:10px 22px;

    border-radius:40px;

    font-size:14px;

    letter-spacing:2px;

    font-weight:600;

}

.privacy-hero h1{

    font-size:58px;

    margin:25px 0 15px;

}

.privacy-hero p{

    max-width:700px;

    margin:auto;

    color:#ddd;

    line-height:1.8;

}

/* Section */

.privacy-section{

    padding:80px 0;

}

.privacy-card{

    background:#fff;

    border-radius:20px;

    padding:60px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.privacy-item{

    margin-bottom:45px;

}

.privacy-item h2{

    color:#222;

    margin-bottom:18px;

    font-size:28px;

}

.privacy-item h2 i{

    color:#d4af37;

    margin-right:12px;

}

.privacy-item p{

    color:#666;

    line-height:1.9;

}

.privacy-item ul{

    padding-left:22px;

}

.privacy-item li{

    margin-bottom:12px;

    color:#666;

}

.last-update{

    background:#faf4df;

    border-left:5px solid #d4af37;

    padding:20px;

    border-radius:10px;

    font-weight:600;

    color:#444;

}

/* Responsive */

@media(max-width:768px){

.privacy-hero{

height:320px;

}

.privacy-hero h1{

font-size:38px;

}

.privacy-card{

padding:30px;

}

.privacy-item h2{

font-size:24px;

}

}
.terms-section{
padding:100px 0;
background:#f8f8f8;
}

.terms-wrapper{
max-width:1100px;
margin:auto;
}

.terms-card{
display:flex;
gap:30px;
background:#fff;
padding:35px;
border-radius:20px;
margin-bottom:25px;
box-shadow:0 10px 35px rgba(0,0,0,.08);
transition:.35s;
}

.terms-card:hover{
transform:translateY(-8px);
}

.terms-icon{
width:80px;
height:80px;
background:linear-gradient(135deg,#d4af37,#f8d76a);
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
color:#fff;
flex-shrink:0;
}

.terms-card h3{
margin-bottom:15px;
font-size:28px;
}

.terms-card p{
line-height:1.9;
color:#666;
}

.terms-contact{
margin-top:60px;
background:#111;
color:#fff;
padding:50px;
border-radius:20px;
text-align:center;
}

.contact-box{
margin-top:30px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.contact-box div{
background:#1f1f1f;
padding:25px;
border-radius:15px;
line-height:1.8;
}

.contact-box i{
display:block;
font-size:30px;
margin-bottom:15px;
color:#d4af37;
}

.updated{
margin-top:40px;
text-align:center;
padding:20px;
background:#fff8e6;
border-left:5px solid #d4af37;
font-weight:600;
}

@media(max-width:768px){

.terms-hero h1{
font-size:40px;
}

.terms-card{
flex-direction:column;
text-align:center;
}

.terms-icon{
margin:auto;
}

.contact-box{
grid-template-columns:1fr;
}

}
.shipping-section{
padding:100px 0;
background:#f7f7f7;
}

.shipping-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-bottom:80px;
}

.shipping-card{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;
text-align:center;
}

.shipping-card:hover{
transform:translateY(-8px);
}

.shipping-icon{
width:80px;
height:80px;
margin:auto;
background:linear-gradient(135deg,#d4af37,#f8df8a);
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
color:#fff;
margin-bottom:25px;
}

.shipping-card h3{
margin-bottom:15px;
}

.shipping-card p{
color:#666;
line-height:1.8;
}

.shipping-timeline{
background:#fff;
padding:60px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
margin-bottom:70px;
}

.shipping-timeline h2{
text-align:center;
margin-bottom:50px;
}

.timeline-item{
display:flex;
gap:25px;
margin-bottom:35px;
align-items:flex-start;
}

.number{
width:60px;
height:60px;
background:#d4af37;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
font-weight:bold;
color:#fff;
flex-shrink:0;
}

.shipping-contact{
background:#111;
color:#fff;
text-align:center;
padding:60px;
border-radius:20px;
}

.shipping-contact h2{
margin-bottom:20px;
}

.shipping-contact p{
color:#ddd;
margin-bottom:30px;
}

.shipping-btn{
display:inline-block;
padding:16px 40px;
background:#d4af37;
color:#111;
font-weight:600;
border-radius:40px;
text-decoration:none;
transition:.3s;
}

.shipping-btn:hover{
transform:translateY(-3px);
}

@media(max-width:768px){

.shipping-hero h1{
font-size:40px;
}

.shipping-timeline{
padding:30px;
}

.timeline-item{
flex-direction:column;
align-items:center;
text-align:center;
}

.shipping-contact{
padding:40px 25px;
}

}
.return-section{
padding:100px 0;
background:#f8f8f8;
}

.return-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-bottom:80px;
}

.return-card{
background:#fff;
padding:40px 35px;
border-radius:20px;
box-shadow:0 12px 35px rgba(0,0,0,.08);
text-align:center;
transition:.35s;
}

.return-card:hover{
transform:translateY(-8px);
}

.return-icon{
width:80px;
height:80px;
margin:auto;
border-radius:50%;
background:linear-gradient(135deg,#d4af37,#f7d66b);
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
color:#fff;
margin-bottom:20px;
}

.return-card h3{
margin-bottom:15px;
font-size:24px;
}

.return-card p{
color:#666;
line-height:1.8;
}

.return-process{
background:#fff;
padding:60px;
border-radius:20px;
box-shadow:0 12px 35px rgba(0,0,0,.08);
margin-bottom:60px;
}

.return-process h2{
text-align:center;
margin-bottom:50px;
}

.process-wrapper{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.step{
text-align:center;
}

.step-number{
width:65px;
height:65px;
margin:auto auto 20px;
border-radius:50%;
background:#d4af37;
color:#fff;
font-size:24px;
font-weight:bold;
display:flex;
justify-content:center;
align-items:center;
}

.step h4{
margin-bottom:10px;
}

.step p{
color:#666;
}

.return-contact{
margin-top:60px;
background:#111;
padding:60px;
border-radius:20px;
text-align:center;
color:#fff;
}

.return-contact p{
color:#ddd;
margin:20px 0 30px;
}

.return-btn{
display:inline-block;
padding:16px 40px;
background:#d4af37;
color:#111;
font-weight:600;
border-radius:40px;
text-decoration:none;
transition:.3s;
}

.return-btn:hover{
transform:translateY(-3px);
}

.policy-note{
margin-top:40px;
padding:25px;
background:#fff8e8;
border-left:5px solid #d4af37;
border-radius:12px;
font-size:16px;
line-height:1.8;
}

.policy-note i{
color:#d4af37;
margin-right:10px;
}

@media(max-width:768px){

.return-hero{
height:340px;
}

.return-hero h1{
font-size:42px;
}

.process-wrapper{
grid-template-columns:1fr;
}

.return-process{
padding:35px;
}

.return-contact{
padding:40px 25px;
}

}
/*==========================
VIDEO SECTION
==========================*/

.video-showcase{

    padding:100px 0;

    background:#fff;

}

.video-container{

    max-width:1300px;

    margin:auto;

    position:relative;

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 30px 80px rgba(0,0,0,.15);

}

.showcase-video{

    width:100%;

    height:650px;

    object-fit:cover;

    display:block;

}

/* .video-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.20),
        rgba(0,0,0,.45)
    );

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:20px;

} */

/* .video-overlay h2{

    color:#fff;

    font-size:52px;

    margin-bottom:20px;

    font-family:'Playfair Display',serif;

} */

/* .video-overlay p{

    color:#f5f5f5;

    font-size:20px;

    max-width:700px;

    line-height:1.8;

    margin-bottom:35px;

} */

/* .video-btn{

    display:inline-block;

    padding:15px 40px;

    background:linear-gradient(135deg,#D4AF37,#B8860B);

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

} */

/* .video-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 20px 40px rgba(212,175,55,.35);

} */

@media(max-width:768px){

.showcase-video{

height:350px;

}

/* .video-overlay h2{

font-size:34px;

}

.video-overlay p{

font-size:16px;

} */

}
/* =========================================
   RESPONSIVE & PREMIUM DESIGN UPDATES (V2)
   ========================================= */

/* --- Fluid Variables --- */
:root {
  --nav-height: 80px;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(212, 175, 55, 0.2);
}

/* --- Premium Header & Nav Updates --- */
.lux-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 10px 0;
}

.lux-header.header-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.lux-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-image {
  height: 50px;
  width: auto;
}

.brand-title {
  font-size: 1.8rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 2px;
}

.brand-subtitle {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--color-text-muted);
}

.primary-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.primary-menu a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text-main);
  position: relative;
}

.primary-menu a:hover,
.primary-menu a.menu-active {
  color: var(--color-gold);
}

.primary-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

.primary-menu a:hover::after,
.primary-menu a.menu-active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.premium-btn {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.menu-toggler {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--color-text-main);
  cursor: pointer;
  z-index: 1001;
}

/* --- Hero Section Mobile Adjustment --- */
.hero {
  margin-top: 0; 
}

/* --- Grids --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .menu-toggler {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.4s ease, opacity 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
  }

  .primary-nav.nav-open {
    right: 0;
    visibility: visible;
    opacity: 1;
  }

  .primary-menu {
    flex-direction: column;
    gap: 40px;
  }

  .primary-menu a {
    font-size: 1.5rem;
  }

  .header-right .premium-btn {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
      font-size: 1rem;
  }
  
  .hero-buttons {
      flex-direction: column;
      width: 100%;
  }
  
  .hero-buttons .btn {
      width: 100%;
      text-align: center;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .why-header h2 {
      font-size: 2rem;
  }
  
  .product-img {
      height: 300px;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 1.4rem;
  }
  
  .brand-image {
      height: 40px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }

  .product-img {
    height: 250px;
  }
  
  .luxury-header h2 {
      font-size: 2rem;
  }
}

/* --- Touch Targets --- */
button, a, input[type="submit"], input[type="button"] {
    min-height: 44px;
}

/* Utility Class to prevent body scroll when nav is open */
.body-no-scroll {
  overflow: hidden;
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.nav-overlay.nav-open {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   CONTACT FORM MOBILE FIXES
   ========================================= */
@media (max-width: 768px) {
  .lux-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    overflow: hidden;
  }
  
  .lux-enquiry-box {
    padding: 25px 15px !important;
    width: 100%;
    box-sizing: border-box;
    border-radius: 15px;
  }
  
  .lux-contact-form {
    width: 100%;
  }

  .lux-field {
    width: 100%;
    box-sizing: border-box;
  }
  
  .lux-field input,
  .lux-field textarea {
    padding: 12px 10px 12px 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .lux-field i {
    width: 40px;
  }
  
  .lux-enquiry-head h3 {
    font-size: 24px !important;
  }
  
  .contact-left h2 {
    font-size: 28px !important;
  }
}

/* =========================================
   CONTACT LEFT SECTION MOBILE FIXES
   ========================================= */
@media (max-width: 768px) {
  .contact-left {
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    text-align: center;
  }
  
  .contact-left h2 {
    font-size: 26px !important;
    margin-bottom: 15px !important;
  }
  
  .contact-left > p {
    font-size: 15px !important;
    margin-bottom: 30px !important;
  }
  
  .contact-card {
    flex-direction: column !important;
    text-align: center !important;
    padding: 20px !important;
    gap: 15px !important;
    width: 100%;
    box-sizing: border-box;
  }
  
  .contact-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
    margin: 0 auto !important;
  }
  
  .contact-card h4 {
    font-size: 18px !important;
  }
  
  .contact-card p {
    font-size: 14px !important;
    word-break: break-word;
  }
}

/* =========================================
   FAQ SECTION MOBILE FIXES
   ========================================= */
@media (max-width: 768px) {
  .lux-faq-section {
    padding: 60px 20px !important;
  }
  
  .lux-faq-heading h2 {
    font-size: 28px !important;
  }
  
  .lux-faq-question {
    padding: 18px 20px !important;
    gap: 15px;
  }
  
  .lux-faq-question span {
    text-align: left;
    font-size: 16px !important;
    line-height: 1.4;
  }
  
  .lux-faq-question i {
    flex-shrink: 0; /* Prevents icon from getting squished by long text */
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
  }
  
  .lux-faq-item.active .lux-faq-answer {
    max-height: 400px !important; /* Allow more room for wrapped text */
  }
  
  .lux-faq-answer p {
    padding: 0 20px 20px !important;
    font-size: 14px !important;
  }
}

/* =========================================
   MOBILE HORIZONTAL SCROLLBAR PREVENTION
   ========================================= */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative !important;
}

header, section, footer, main, 
.lux-header, .lux-wrapper, .hero, .container, 
.split-section, .lux-contact-section, .review-card, 
.perfect-box, .split-image, .why-grid, .luxury-grid,
[class*="container"], [class*="wrapper"], [class*="section"] {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Fix fixed width elements */
.review-card {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
  }

  /* Clip pseudo-elements and badges that stick outside mobile viewport */
  .split-image::after,
  .experience-badge,
  .perfect-box::after {
    right: 0 !important;
    max-width: 100% !important;
  }

  .review-card {
    width: 100% !important;
  }

  /* Prevent decorative circular blobs from forcing page expansion */
  .lux-contact-section::before,
  .lux-contact-section::after {
    display: none !important;
  }

  /* Ensure flex & grid items fit inside screen */
  .grid-2, 
  .grid-3, 
  .why-grid, 
  .luxury-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

@media (max-width: 480px) {
  .container, .lux-wrapper {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

