/* ============================================================
   PULIMOOTTIL JEWELLERY — LUXURY DESIGN SYSTEM
   Black + Gold Theme | Premium Typography | Glassmorphism
   ============================================================ */

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

/* ===== CSS Custom Properties ===== */
:root {
  /* Primary Palette */
  --gold: #c9a84c;
  --gold-light: #d4af37;
  --gold-dark: #a88a3d;
  --gold-muted: #b8992e;
  --champagne: #f5e6c8;
  --champagne-light: #faf3e6;

  /* Neutrals */
  --black: #0a0a0a;
  --black-light: #1a1a1a;
  --charcoal: #2a2a2a;
  --dark-gray: #3a3a3a;
  --medium-gray: #6b6b6b;
  --light-gray: #b0b0b0;
  --off-white: #faf8f5;
  --white: #ffffff;
  --cream: #f8f5f0;

  /* Accent */
  --ruby: #8b1a2b;
  --emerald: #1a6b4a;
  --sapphire: #1a3a6b;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --section-padding-sm: 80px;
  --container-padding: 15px;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.2);
  --shadow-gold-lg: 0 8px 40px rgba(201, 168, 76, 0.3);

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-index */
  --z-preloader: 99999;
  --z-header: 1000;
  --z-overlay: 900;
  --z-modal: 1100;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--off-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ===== Selection ===== */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.luxury-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.luxury-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.luxury-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--medium-gray);
}

.text-gold { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-champagne { color: var(--champagne) !important; }

/* ===== Gold Divider ===== */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

.gold-divider-left {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}

/* ===== Diamond Separator ===== */
.diamond-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
}
.diamond-separator::before,
.diamond-separator::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.diamond-separator .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ===== Preloader ===== */
.luxury-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-preloader);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.luxury-preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.luxury-preloader .preloader-inner {
  text-align: center;
}
.luxury-preloader .preloader-logo {
  width: 120px;
  margin-bottom: 30px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
.luxury-preloader .preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.luxury-preloader .preloader-bar::after {
  content: '';
  display: block;
  width: 50%;
  height: 100%;
  background: var(--gold);
  animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

/* ===== Header / Navigation ===== */
.luxury-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  padding: 20px 0;
  transition: all var(--transition-base);
}
.luxury-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.luxury-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.luxury-header .logo img {
  height: 72px;
  width: auto;
  transition: var(--transition-base);
}
.luxury-header.scrolled .logo img {
  height: 40px;
}

.luxury-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.luxury-nav li a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}
.luxury-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}
.luxury-nav li a:hover,
.luxury-nav li a.active {
  color: var(--gold);
}
.luxury-nav li a:hover::after,
.luxury-nav li a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-cta .btn-luxury-outline {
  font-size: 0.75rem;
  padding: 10px 24px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-fast);
  display: block;
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.97);
  z-index: 999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-overlay .mobile-nav {
  list-style: none;
  padding: 0;
  text-align: center;
}
.mobile-menu-overlay .mobile-nav li {
  margin: 20px 0;
}
.mobile-menu-overlay .mobile-nav li a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition-fast);
}
.mobile-menu-overlay .mobile-nav li a:hover {
  color: var(--gold);
}

/* Prevents layout jumps and duplicate background image stacking before Slick initializes */
.hero-slider:not(.slick-initialized) > *:not(:first-child) {
  display: none !important;
}

/* ===== Hero Section ===== */
.luxury-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--black);
}
.luxury-hero .hero-slide {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.luxury-hero .hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.luxury-hero .slick-active .hero-slide-bg {
  transform: scale(1);
}
.luxury-hero .hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
}
.luxury-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}
.luxury-hero .hero-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
}
.luxury-hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
}
.luxury-hero .hero-title em {
  font-style: italic;
  color: var(--gold);
}
.luxury-hero .hero-description {
  font-family: var(--font-elegant);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  opacity: 0;
}
.luxury-hero .hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
}

/* ===== Luxury Hero Slider Navigation Arrows ===== */
.luxury-hero .slick-prev,
.luxury-hero .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  margin-top: 0;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.4) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.4) !important;
  color: var(--white);
  font-size: 1.1rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  outline: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.luxury-hero .slick-prev:before,
.luxury-hero .slick-prev:after,
.luxury-hero .slick-next:before,
.luxury-hero .slick-next:after {
  display: none !important;
  content: none !important;
}

.luxury-hero .slick-prev {
  left: 40px !important;
}

.luxury-hero .slick-next {
  right: 40px !important;
}

.luxury-hero .slick-prev:hover,
.luxury-hero .slick-next:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--black) !important;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.6);
}

.luxury-hero .slick-prev i,
.luxury-hero .slick-next i {
  color: inherit;
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .luxury-hero .slick-prev,
  .luxury-hero .slick-next {
    width: 44px;
    height: 44px;
  }
  .luxury-hero .slick-prev {
    left: 15px !important;
  }
  .luxury-hero .slick-next {
    right: 15px !important;
  }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}
.hero-scroll-indicator .scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  display: block;
}
.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-scroll-indicator .scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

/* Slick Hero Dots Override */
.luxury-hero .slick-dots {
  bottom: 100px;
  z-index: 3;
}
.luxury-hero .slick-dots li button::before {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}
.luxury-hero .slick-dots li.slick-active button::before {
  color: var(--gold);
}

/* ===== Buttons ===== */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-luxury-filled {
  background: var(--gold);
  color: var(--black);
}
.btn-luxury-filled:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-luxury-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-luxury-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-luxury-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-luxury-white:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-luxury-dark {
  background: var(--black);
  color: var(--gold);
  border: 1px solid var(--black);
}
.btn-luxury-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Arrow button */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}
.btn-arrow .arrow {
  width: 40px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: width var(--transition-fast);
}
.btn-arrow .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  transform: rotate(45deg);
}
.btn-arrow:hover {
  color: var(--gold-light);
}
.btn-arrow:hover .arrow {
  width: 55px;
}

/* ===== Section Styles ===== */
.luxury-section {
  padding: var(--section-padding) 0;
  position: relative;
}
.luxury-section.dark-section {
  background: var(--black);
}
.luxury-section.dark-section h2,
.luxury-section.dark-section h3,
.luxury-section.dark-section h4 {
  color: var(--white);
}
.luxury-section.dark-section p {
  color: var(--light-gray);
}

.luxury-section.cream-section {
  background: var(--cream);
}

.luxury-section.champagne-section {
  background: var(--champagne-light);
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header .luxury-label {
  margin-bottom: 16px;
  display: block;
}
.section-header h2 {
  margin-bottom: 8px;
}
.section-header .section-desc {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header-left {
  margin-bottom: 50px;
}
.section-header-left .luxury-label {
  margin-bottom: 12px;
  display: block;
}

/* ===== Container Override ===== */
.luxury-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.luxury-container-sm {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Collection Cards ===== */
.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.collection-card .card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.collection-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.collection-card:hover .card-image img {
  transform: scale(1.08);
}
.collection-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.8));
  transition: all var(--transition-base);
}
.collection-card .card-overlay h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.collection-card .card-overlay span {
  font-family: var(--font-elegant);
  color: var(--gold);
  font-style: italic;
  font-size: 0.95rem;
}

/* ===== Product Cards ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(201, 168, 76, 0.08);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.2);
}
.product-card .product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-image img {
  transform: scale(1.06);
}
.product-card .product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.product-card .product-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: all var(--transition-base);
}
.product-card:hover .product-actions {
  opacity: 1;
}
.product-card .product-actions button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 1rem;
}
.product-card .product-actions button:hover {
  background: var(--gold);
  color: var(--white);
}
.product-card .product-info {
  padding: 20px;
  text-align: center;
}
.product-card .product-info h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--black);
}
.product-card .product-info .product-category {
  font-family: var(--font-elegant);
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
}

/* ===== Category Tabs (Luxury Override) ===== */
.luxury-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  padding: 0;
  list-style: none;
}
.luxury-tabs li a,
.luxury-tabs li button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.luxury-tabs li a i,
.luxury-tabs li button i {
  font-size: 1.6rem;
  color: var(--gold-muted);
  transition: all var(--transition-fast);
}
.luxury-tabs li a:hover,
.luxury-tabs li a.active,
.luxury-tabs li button:hover,
.luxury-tabs li button.active {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
  box-shadow: var(--shadow-lg);
}
.luxury-tabs li a:hover i,
.luxury-tabs li a.active i,
.luxury-tabs li button:hover i,
.luxury-tabs li button.active i {
  color: var(--gold);
}

/* ===== Categories Grid (Icon Boxes) ===== */
.luxury-categories {
  padding: 0;
  position: relative;
  z-index: 2;
  margin-top: -80px;
}
.category-icon-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}
.category-icon-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(201, 168, 76, 0.2);
}
.category-icon-box .icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--champagne-light);
  border-radius: 50%;
  transition: all var(--transition-base);
}
.category-icon-box:hover .icon-wrap {
  background: var(--gold);
}
.category-icon-box .icon-wrap i {
  font-size: 1.8rem;
  color: var(--gold);
  transition: all var(--transition-base);
}
.category-icon-box:hover .icon-wrap i {
  color: var(--white);
}
.category-icon-box h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--black);
}

/* ===== About / Feature Boxes ===== */
.luxury-about {
  overflow: hidden;
}
.about-image-col {
  position: relative;
}
.about-image-col .main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-col .main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-image-col .floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-image-col .floating-badge .badge-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.about-image-col .floating-badge .badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-text-col {
  padding-left: 60px;
}
.about-text-col .section-header-left h2 {
  margin-bottom: 20px;
}
.about-text-col p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--medium-gray);
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
}
.feature-list li .check-icon {
  width: 24px;
  height: 24px;
  background: var(--champagne-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-list li .check-icon svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
}

/* ===== Counter Section ===== */
.luxury-counters {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.luxury-counters::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" stroke="%23c9a84c" stroke-width="0.3" stroke-opacity="0.08" width="100" height="100"/></svg>');
  opacity: 0.5;
}
.counter-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}
.counter-item .counter-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.counter-item .counter-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-item .counter-number span.plus {
  color: var(--gold);
  font-size: 1.5rem;
}
.counter-item .counter-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-gray);
}

/* ===== Parallax / Full-Width Sections ===== */
.parallax-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.parallax-section .parallax-bg {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  z-index: 0;
}
.parallax-section .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.6));
  z-index: 1;
}
.parallax-section .parallax-content {
  position: relative;
  z-index: 2;
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: all var(--transition-base);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.15);
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.testimonial-card .testimonial-text {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-card .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--champagne);
}
.testimonial-card .testimonial-author .author-info h6 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 2px;
}
.testimonial-card .testimonial-author .author-info span {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

/* ===== Glassmorphism Card ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 50px;
}
.glass-card-dark {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 50px;
}

/* ===== Newsletter ===== */
.newsletter-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
  border-radius: 50%;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
}
.newsletter-form input::placeholder {
  color: var(--light-gray);
}
.newsletter-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* ===== FAQ Accordion ===== */
.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--black);
  transition: color var(--transition-fast);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-question .faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  font-size: 1.2rem;
  color: var(--gold);
}
.faq-item.active .faq-question .faq-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--medium-gray);
}

/* ===== Instagram Grid ===== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}
.insta-item:hover img {
  transform: scale(1.1);
}
.insta-item .insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.insta-item:hover .insta-overlay {
  opacity: 1;
}
.insta-item .insta-overlay i {
  font-size: 1.5rem;
  color: var(--white);
}

/* ===== Why Choose Us / Feature Cards ===== */
.why-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: all var(--transition-base);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.2);
}
.why-card .why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--champagne-light);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--gold);
  transition: all var(--transition-base);
}
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}
.why-card h5 {
  font-family: var(--font-display);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

/* ===== Footer ===== */
.luxury-footer {
  background: var(--black);
  color: var(--light-gray);
  position: relative;
  overflow: hidden;
}
.luxury-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand .footer-logo {
  height: 45px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--light-gray);
  max-width: 320px;
}
.footer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
}
.footer-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  font-size: 0.9rem;
  color: var(--light-gray);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links li a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}
.footer-contact-info li i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  margin-top: 20px;
}
.footer-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5) brightness(0.8);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

/* ===== Breadcrumb / Page Hero ===== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.page-hero .page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.page-hero .page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.7) 100%);
}
.page-hero .page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero .page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero .breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
}
.page-hero .breadcrumb-nav a {
  color: var(--gold);
}
.page-hero .breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Gallery ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-filters button {
  padding: 10px 28px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.gallery-filters button:hover,
.gallery-filters button.active {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}

.luxury-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item .gallery-overlay .gallery-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  transform: scale(0.8);
  transition: transform var(--transition-fast);
}
.gallery-item:hover .gallery-overlay .gallery-icon {
  transform: scale(1);
}

/* ===== Contact Form ===== */
.luxury-form .form-group {
  margin-bottom: 24px;
}
.luxury-form label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
  display: block;
}
.luxury-form input,
.luxury-form textarea,
.luxury-form select {
  width: 100%;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  transition: all var(--transition-fast);
}
.luxury-form input:focus,
.luxury-form textarea:focus,
.luxury-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
}
.luxury-form input::placeholder,
.luxury-form textarea::placeholder {
  color: var(--light-gray);
}
.luxury-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* Contact Info Cards */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: all var(--transition-base);
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.15);
}
.contact-info-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--champagne-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--gold);
}
.contact-info-card h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

/* ===== Craftsmanship Section ===== */
.craftsmanship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.craft-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.craft-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.craft-item:hover img {
  transform: scale(1.06);
}
.craft-item .craft-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.8));
}
.craft-item .craft-overlay h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.craft-item .craft-overlay p {
  color: var(--champagne);
  font-size: 0.85rem;
  font-family: var(--font-elegant);
  font-style: italic;
}

/* ===== Hallmark / Trust Badges ===== */
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 30px;
}
.trust-badge .badge-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}
.trust-badge h6 {
  font-family: var(--font-display);
  font-size: 1rem;
}

/* ===== Back to Top ===== */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  z-index: 100;
  box-shadow: var(--shadow-gold);
}
.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top-btn:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
}

/* ===== Appointment Section ===== */
.appointment-section {
  position: relative;
  overflow: hidden;
}
.appointment-section .appointment-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}
.appointment-form-wrap {
  background: var(--white);
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ===== Animation Utility Classes ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .luxury-container,
  .luxury-container-sm {
    padding: 0 30px;
  }
  .luxury-section {
    padding: var(--section-padding-sm) 0;
  }
  .craftsmanship-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .luxury-nav,
  .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-menu-overlay {
    display: flex;
  }
  .about-text-col {
    padding-left: 0;
    margin-top: 40px;
  }
  .luxury-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .appointment-section .appointment-bg {
    display: none;
  }
  .footer-top .row > div {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
    --section-padding-sm: 50px;
  }
  .luxury-container,
  .luxury-container-sm {
    padding: 0 20px;
  }
  .luxury-hero {
    min-height: 550px;
  }
  .luxury-hero .hero-slide {
    min-height: 550px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-cta .btn-luxury {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
  .section-header {
    margin-bottom: 40px;
  }
  
  /* Premium horizontal scrolling for shop categories tabs on mobile */
  .luxury-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 4px 4px 15px 4px;
    margin-bottom: 35px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }
  .luxury-tabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
  }
  .luxury-tabs li {
    flex: 0 0 auto;
  }
  .luxury-tabs li a,
  .luxury-tabs li button {
    padding: 12px 20px;
    font-size: 0.7rem;
    gap: 6px;
  }
  .luxury-tabs li a i,
  .luxury-tabs li button i {
    font-size: 1.3rem;
  }
  
  /* Premium horizontal scrolling for gallery filter buttons on mobile */
  .gallery-filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding: 4px 4px 12px 4px;
    margin-bottom: 30px;
    scrollbar-width: none;
  }
  .gallery-filters::-webkit-scrollbar {
    display: none;
  }
  .gallery-filters button {
    flex: 0 0 auto;
    padding: 8px 20px;
    font-size: 0.72rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  .newsletter-form input {
    width: 100%;
  }
  .newsletter-form button {
    width: 100%;
    justify-content: center;
  }

  .glass-card,
  .glass-card-dark {
    padding: 30px 20px;
  }
  .craftsmanship-grid {
    grid-template-columns: 1fr;
  }
  .appointment-form-wrap {
    padding: 35px 20px;
  }
  
  /* Testimonial mobile fixes */
  .testimonial-card {
    padding: 30px 20px;
  }
  .testimonial-card .testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  /* Timeline mobile scaling */
  .timeline-col {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .luxury-header {
    padding: 15px 0;
  }
  .luxury-header.scrolled {
    padding: 10px 0;
  }
  .luxury-header .logo img {
    height: 38px;
  }
  .luxury-header.scrolled .logo img {
    height: 32px;
  }
  .luxury-header .header-inner {
    padding: 0 20px;
  }
  
  .luxury-hero .hero-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
  .luxury-hero .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  .luxury-hero .hero-label {
    letter-spacing: 0.25em;
    margin-bottom: 12px;
  }

  .luxury-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-item {
    padding: 12px 6px;
  }
  .counter-item .counter-number {
    font-size: 2.2rem;
  }
  .counter-item .counter-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .page-hero {
    min-height: 250px;
    height: 35vh;
  }
  .page-hero .page-hero-content h1 {
    font-size: 2.2rem;
  }
  
  /* Sections alignment details */
  .section-header h2 {
    font-size: 1.8rem;
  }
  .section-header .section-desc {
    font-size: 1rem;
    padding: 0 10px;
  }
  .section-header-left h2 {
    font-size: 1.8rem;
  }
  
  /* Maps element spacing on mobile */
  iframe[src*="google.com/maps"] {
    height: 280px !important;
  }
  
  /* About badge sizing */
  .about-image-col .floating-badge {
    bottom: -10px;
    right: -10px;
    padding: 15px;
  }
  .about-image-col .floating-badge .badge-number {
    font-size: 1.8rem;
  }
  
  /* Footer responsive details */
  .luxury-footer {
    text-align: center;
  }
  .footer-brand p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-title::after {
    margin: 10px auto 0 auto;
  }
  .footer-links li a:hover {
    padding-left: 0;
  }
  .footer-contact-info li {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom .text-md-right {
    text-align: center !important;
    margin-top: 10px;
  }
}


/* ===== Utility Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== Print Styles ===== */
@media print {
  .luxury-header,
  .luxury-preloader,
  .back-to-top-btn,
  .mobile-toggle,
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* ===== Magnific Popup Close Button Custom Styling ===== */
.mfp-close {
  color: var(--gold) !important;
  opacity: 1 !important;
  font-size: 32px !important;
  font-family: var(--font-body) !important;
  background: rgba(10, 10, 10, 0.7) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  line-height: 40px !important;
  top: 15px !important;
  right: 15px !important;
  transition: all var(--transition-fast) !important;
  border: 1.5px solid var(--gold) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 1050 !important;
}
.mfp-close:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  transform: scale(1.05);
}

/* ======= WHATSAPP FLOATING BUTTON ======= */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  animation: wa-pulse 2.2s infinite;
  transition: transform 0.25s ease, background 0.25s ease;
  text-decoration: none;
}

.wa-float:hover {
  background: #1ebe5d;
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.wa-float::before {
  content: 'Chat on WhatsApp';
  position: absolute;
  right: 66px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.wa-float:hover::before {
  opacity: 1;
}
