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

:root {
  /* Colors */
  --gold-primary: #C9A227;
  --gold-dark: #9D7A13;
  --gold-light: #F0D36D;
  --cream: #FFF8E7;
  --luxury-black: #111111;
  --luxury-dark-grey: #1A1A1A;
  --luxury-light-grey: #262626;
  --white: #FFFFFF;
  --overlay-black: rgba(17, 17, 17, 0.7);
  --text-muted: #A0A0A0;
  
  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #C9A227 0%, #9D7A13 100%);
  --gold-gradient-hover: linear-gradient(135deg, #9D7A13 0%, #C9A227 100%);
  --dark-gold-gradient: linear-gradient(135deg, #9D7A13 0%, #6E530A 100%);
  --dark-gradient: linear-gradient(180deg, #111111 0%, #1A1A1A 100%);
  
  /* Fonts */
  --font-heading-cinzel: 'Cinzel', serif;
  --font-heading-playfair: 'Playfair Display', serif;
  --font-heading-cormorant: 'Cormorant Garamond', serif;
  --font-body-poppins: 'Poppins', sans-serif;
  --font-body-inter: 'Inter', sans-serif;
  --font-body-manrope: 'Manrope', sans-serif;
}

/* -----------------------------------------
   Base & Reset
   ----------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--luxury-black);
  color: var(--white);
  font-family: var(--font-body-poppins);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body.loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--gold-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--luxury-black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* -----------------------------------------
   Preloader Screen
   ----------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--luxury-black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: preloaderReveal 1s forwards ease-out 0.2s;
}

.preloader-logo h1 {
  font-family: var(--font-heading-cinzel);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 6px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.preloader-logo p {
  font-family: var(--font-heading-cormorant);
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: var(--cream);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(201, 162, 39, 0.1);
  border-top: 2px solid var(--gold-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

/* -----------------------------------------
   Custom Cursor
   ----------------------------------------- */
.custom-cursor {
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  mix-blend-mode: difference;
}

.custom-cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s ease-out, height 0.3s ease-out, border-color 0.3s, transform 0.08s ease-out;
}

/* Cursor hover enlargement */
body.hovered .custom-cursor {
  width: 10px;
  height: 10px;
  background-color: var(--white);
}

body.hovered .custom-cursor-ring {
  width: 55px;
  height: 55px;
  border-color: var(--white);
}

@media (max-width: 991.98px) {
  .custom-cursor, .custom-cursor-ring {
    display: none !important;
  }
}

/* -----------------------------------------
   Typography Helpers
   ----------------------------------------- */
.heading-luxury {
  font-family: var(--font-heading-cinzel);
  font-weight: 600;
  letter-spacing: 2px;
}

.heading-playfair {
  font-family: var(--font-heading-playfair);
}

.heading-cormorant {
  font-family: var(--font-heading-cormorant);
}

.text-gold {
  color: var(--gold-primary);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cream {
  color: var(--cream);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--luxury-black) !important;
  font-family: var(--font-body-manrope);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient-hover);
  transition: opacity 0.5s ease;
  z-index: -1;
  opacity: 0;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary) !important;
  font-family: var(--font-body-manrope);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--gold-primary);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--luxury-black) !important;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(201, 162, 39, 0.2);
}

/* -----------------------------------------
   Navbar Styling
   ----------------------------------------- */
.navbar {
  padding: 1.25rem 0;
  transition: all 0.4s ease;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(15px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  margin-right: 3rem;
}

.brand-text {
  font-family: var(--font-heading-cinzel);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
  line-height: 1;
}

.brand-subtext {
  font-family: var(--font-heading-cormorant);
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-top: 0.2rem;
  line-height: 1;
}

.navbar-nav .nav-link {
  font-family: var(--font-body-manrope);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white) !important;
  margin: 0 0.8rem;
  position: relative;
  padding: 0.5rem 0;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--gold-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1.5rem;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 6px 0;
  transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 2rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  }
  .navbar-nav .nav-link {
    margin: 0.8rem 0;
    font-size: 1rem;
    display: inline-block;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
  .nav-cta .btn {
    width: 100%;
  }
}

/* -----------------------------------------
   Hero Section
   ----------------------------------------- */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background-color: #0b0b0b;
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(157, 122, 19, 0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-family: var(--font-heading-cormorant);
  font-size: 1.5rem;
  letter-spacing: 4px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-heading-cinzel);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: var(--white);
}

.hero-desc {
  font-family: var(--font-body-inter);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--cream);
  max-width: 580px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(201, 162, 39, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image-container:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.6) 0%, rgba(17, 17, 17, 0) 50%);
  pointer-events: none;
}

.hero-image-decor {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold-primary);
  border-radius: 8px;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-desc {
    margin: 0 auto 2.5rem auto;
  }
  .hero-image-wrapper {
    margin-top: 40px;
  }
  .hero-image-container {
    max-width: 380px;
  }
}

/* -----------------------------------------
   Brand Story Section
   ----------------------------------------- */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: var(--font-heading-cinzel);
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-heading-cormorant);
  font-size: 1.4rem;
  color: var(--gold-primary);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-divider {
  width: 80px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 1.5rem auto 0 auto;
}

.story-text {
  font-family: var(--font-body-inter);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--cream);
  font-weight: 300;
  text-align: justify;
}

.story-text p {
  margin-bottom: 1.5rem;
}

.story-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background-color: var(--luxury-dark-grey);
  border: 1px solid rgba(255, 248, 231, 0.05);
  border-radius: 6px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(201, 162, 39, 0.08);
  border: 1px dashed rgba(201, 162, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.8rem;
  color: var(--gold-primary);
  transition: all 0.4s ease;
}

.value-card:hover .value-icon-box {
  background: var(--gold-gradient);
  color: var(--luxury-black);
  border-style: solid;
  border-color: transparent;
  transform: rotate(360deg);
}

.value-card h4 {
  font-family: var(--font-heading-cinzel);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.value-card p {
  font-family: var(--font-body-inter);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .story-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 2.2rem;
  }
  .story-values-grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------
   Featured Collection Section
   ----------------------------------------- */
.featured-section {
  background-color: var(--luxury-dark-grey);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.product-card {
  background-color: var(--luxury-black);
  border: 1px solid rgba(255, 248, 231, 0.05);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.product-card-link:hover {
  color: inherit;
}

.product-img-box {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* Shine effect on card hover */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
  z-index: 5;
  pointer-events: none;
}

.product-card:hover::before {
  animation: shineAnimation 1.2s ease-in-out;
}

@keyframes shineAnimation {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 15px 35px rgba(201, 162, 39, 0.15);
}

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

.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-rating {
  font-size: 0.8rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.product-rating i {
  margin-right: 2px;
}

.product-title {
  font-family: var(--font-heading-playfair);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--white);
  line-height: 1.3;
}

.product-desc {
  font-family: var(--font-body-inter);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price {
  font-family: var(--font-body-manrope);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cream);
}

.product-shop-btn {
  font-family: var(--font-body-manrope);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.product-card:hover .product-shop-btn {
  color: var(--white);
}

.product-shop-btn i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.product-card:hover .product-shop-btn i {
  transform: translateX(4px);
}

/* Grid Responsiveness */
@media (max-width: 1199.98px) {
  .collection-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991.98px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .product-info {
    padding: 1rem;
  }
  .product-title {
    font-size: 1rem;
  }
}

/* -----------------------------------------
   Why Choose Us Section
   ----------------------------------------- */
.why-section {
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background-color: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(255, 248, 231, 0.03);
  border-radius: 6px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.2);
  background-color: rgba(26, 26, 26, 0.8);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.why-icon {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
  display: inline-block;
  transition: transform 0.4s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1);
}

.why-card h4 {
  font-family: var(--font-heading-cinzel);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.why-card p {
  font-family: var(--font-body-inter);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* -----------------------------------------
   New Arrivals Banner
   ----------------------------------------- */
.new-arrivals-banner {
  background: linear-gradient(rgba(17, 17, 17, 0.45), rgba(17, 17, 17, 0.45)), url('../assets/images/hero_model.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  position: relative;
  text-align: center;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.banner-content h2 {
  font-family: var(--font-heading-cinzel);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 1rem;
}

.banner-content p {
  font-family: var(--font-heading-cormorant);
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 3px;
  margin-bottom: 2.5rem;
}

@media (max-width: 767.98px) {
  .new-arrivals-banner {
    padding: 80px 0;
  }
  .banner-content h2 {
    font-size: 2.4rem;
  }
  .banner-content p {
    font-size: 1.3rem;
  }
}

/* -----------------------------------------
   Testimonials Section
   ----------------------------------------- */
.testimonials-section {
  background-color: var(--luxury-dark-grey);
  overflow: hidden;
}

.testimonials-container {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-slide {
  background-color: var(--luxury-black);
  border: 1px solid rgba(255, 248, 231, 0.04);
  border-radius: 8px;
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
}

.testimonial-slide::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 3rem;
  color: rgba(201, 162, 39, 0.06);
}

.testimonial-rating {
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-family: var(--font-heading-playfair);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 2rem;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.author-info h5 {
  font-family: var(--font-heading-cinzel);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.author-info span {
  font-family: var(--font-body-inter);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.2;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--gold-primary);
  opacity: 1;
  width: 18px;
  border-radius: 4px;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--gold-primary);
  transition: color 0.3s ease;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 1.5rem;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  color: var(--white);
}

@media (max-width: 767.98px) {
  .testimonial-slide {
    padding: 2.5rem 1.5rem;
  }
  .testimonial-quote {
    font-size: 1.15rem;
  }
  .swiper-button-next, .swiper-button-prev {
    display: none !important;
  }
}

/* -----------------------------------------
   Instagram Gallery
   ----------------------------------------- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 248, 231, 0.05);
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 1rem;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay i {
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 0.8rem;
}

.instagram-overlay span {
  font-family: var(--font-body-manrope);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--white);
  border: 1px solid var(--gold-primary);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.instagram-overlay span:hover {
  background-color: var(--gold-primary);
  color: var(--luxury-black);
}

@media (max-width: 991.98px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* -----------------------------------------
   Newsletter Section
   ----------------------------------------- */
.newsletter-section {
  position: relative;
  background-color: var(--luxury-black);
}

.newsletter-box {
  background-color: var(--luxury-dark-grey);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 8px;
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  max-width: 850px;
  margin: 0 auto;
}

.newsletter-box h3 {
  font-family: var(--font-heading-cinzel);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.newsletter-box p {
  font-family: var(--font-body-inter);
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.newsletter-form {
  max-width: 550px;
  margin: 0 auto;
}

.newsletter-form .input-group {
  background-color: var(--luxury-black);
  border: 1px solid rgba(255, 248, 231, 0.1);
  border-radius: 4px;
  padding: 4px;
  transition: border-color 0.3s ease;
}

.newsletter-form .input-group:focus-within {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.15);
}

.newsletter-form .form-control {
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body-inter);
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
}

.newsletter-form .form-control:focus {
  background: transparent;
  box-shadow: none;
  color: var(--white);
}

.newsletter-form .form-control::placeholder {
  color: var(--text-muted);
}

.newsletter-form .btn-gold {
  border-radius: 4px;
  padding: 0 2.2rem;
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .newsletter-box {
    padding: 3rem 1.5rem;
  }
  .newsletter-box h3 {
    font-size: 1.8rem;
  }
  .newsletter-form .input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }
  .newsletter-form .form-control {
    background-color: var(--luxury-black);
    border: 1px solid rgba(255, 248, 231, 0.1);
    border-radius: 4px;
    width: 100%;
  }
  .newsletter-form .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
  }
}

/* -----------------------------------------
   Final Call To Action
   ----------------------------------------- */
.final-cta-section {
  background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.8)), url('../assets/images/insta_1.png');
  background-size: cover;
  background-position: center;
  padding: 130px 0;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.final-cta-section h2 {
  font-family: var(--font-heading-cinzel);
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.final-cta-section p {
  font-family: var(--font-body-inter);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
}

@media (max-width: 767.98px) {
  .final-cta-section {
    padding: 90px 0;
  }
  .final-cta-section h2 {
    font-size: 2.3rem;
  }
  .final-cta-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* -----------------------------------------
   Footer Styling
   ----------------------------------------- */
footer {
  background-color: #0b0b0b;
  border-top: 1px solid rgba(255, 248, 231, 0.05);
  padding: 80px 0 30px 0;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo .brand-text {
  font-size: 1.6rem;
  letter-spacing: 3px;
}

.footer-logo .brand-subtext {
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.footer-about p {
  font-family: var(--font-body-inter);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 231, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social-links a:hover {
  background: var(--gold-gradient);
  color: var(--luxury-black);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading-cinzel);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.75rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--gold-primary);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 0.8rem;
}

.footer-links-list a {
  font-family: var(--font-body-inter);
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  font-family: var(--font-body-inter);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--gold-primary);
  margin-top: 4px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-family: var(--font-body-inter);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-bottom-links a {
  font-family: var(--font-body-inter);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--gold-primary);
}

@media (max-width: 991.98px) {
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

/* -----------------------------------------
   Back To Top Button
   ----------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--luxury-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
  color: var(--white);
}

/* -----------------------------------------
   Animations Utility Classes (GSAP / CSS fallback)
   ----------------------------------------- */
[data-aos] {
  pointer-events: none;
}
.aos-animate {
  pointer-events: auto;
}
