/* Import Luxury Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@200;300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-navy: #081B4B;
  --primary-navy-rgb: 8, 27, 75;
  --luxury-gold: #D4AF37;
  --luxury-gold-rgb: 212, 175, 55;
  --gold-light: #F4E8C1;
  --gold-dark: #AA771C;
  --white: #FFFFFF;
  --black: #05050A;
  --dark-bg: #030C22;
  --section-bg-dark: #051233;
  --card-bg: rgba(8, 27, 75, 0.65);
  --glass-border: rgba(212, 175, 55, 0.15);
  --glass-border-hover: rgba(212, 175, 55, 0.4);
  --text-light: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-dark: #111111;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', 'Montserrat', sans-serif;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--black);
  color: var(--text-light);
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--dark-bg);
  background-image: radial-gradient(circle at 10% 20%, rgba(8, 27, 75, 0.8) 0%, rgba(3, 12, 34, 1) 90%);
}

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold-text {
  color: var(--luxury-gold);
  background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 30%, #B38728 70%, #FBF5B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 2px;
  position: relative;
}

.section-subtitle {
  font-size: 0.95rem;
  text-align: center;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 50px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  width: 150px;
}

.section-divider::before, .section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--luxury-gold), transparent);
}

.section-divider svg {
  margin: 0 10px;
  fill: var(--luxury-gold);
  width: 18px;
  height: 18px;
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(3, 12, 34, 0.37);
  transition: var(--transition-smooth);
}

/* Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Primary Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--luxury-gold) 100%);
}

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

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--luxury-gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  border: none;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn svg {
  margin-right: 8px;
  width: 18px;
  height: 18px;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.header.scrolled {
  background: rgba(8, 27, 75, 0.85);
  height: 70px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-container {
  height: 56px;
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-fast);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--luxury-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--luxury-gold);
}

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

/* Search Box inside Header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}

.search-toggle-btn:hover {
  color: var(--luxury-gold);
}

.search-bar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(8, 27, 75, 0.98);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 24px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.search-bar-dropdown.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.search-bar-dropdown form {
  display: flex;
  max-width: 800px;
  margin: 0 auto;
}

.search-input-field {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-right: none;
  padding: 12px 20px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.search-input-field:focus {
  outline: none;
  border-color: var(--luxury-gold);
}

.search-submit-btn {
  background: var(--luxury-gold);
  border: none;
  padding: 0 24px;
  color: var(--black);
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.35) contrast(1.1);
  animation: kenBurns 20s infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(3, 12, 34, 0.4) 0%, rgba(3, 12, 34, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 0 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 1.2s forwards 0.2s;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  letter-spacing: 2px;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 1.2s forwards 0.5s;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 1.2s forwards 0.8s;
}

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

/* About Section */
.about {
  padding: 100px 0;
  position: relative;
}

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

.about-img-box {
  position: relative;
  border: 1px solid var(--glass-border);
  padding: 15px;
}

.about-img-box::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid var(--luxury-gold);
  z-index: -1;
  pointer-events: none;
}

.about-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-content-box {
  padding-left: 20px;
}

.about-tagline {
  color: var(--luxury-gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Featured Categories */
.categories {
  padding: 100px 0;
  background: var(--section-bg-dark);
}

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

.category-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(3, 12, 34, 0.1) 40%, rgba(3, 12, 34, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
  transition: var(--transition-smooth);
}

.category-card-overlay::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(212, 175, 55, 0);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.category-shop-link {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--luxury-gold);
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

/* Hover effects for categories */
.category-card:hover img {
  transform: scale(1.1);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to bottom, rgba(3, 12, 34, 0.3) 10%, rgba(3, 12, 34, 0.95) 100%);
}

.category-card:hover .category-card-overlay::before {
  border-color: rgba(212, 175, 55, 0.35);
}

.category-card:hover .category-title {
  transform: translateY(0);
}

.category-card:hover .category-shop-link {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Collection Section */
.products {
  padding: 100px 0;
  position: relative;
}

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--luxury-gold);
  color: var(--black);
  border-color: var(--luxury-gold);
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.product-img-container {
  position: relative;
  height: 380px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.product-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--luxury-gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}

.product-quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 27, 75, 0.9);
  border-top: 1px solid var(--luxury-gold);
  padding: 12px;
  text-align: center;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  cursor: pointer;
  z-index: 3;
}

.product-quick-view span {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--luxury-gold);
}

.product-card:hover .product-quick-view {
  transform: translateY(0);
}

.product-info {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.product-name:hover {
  color: var(--luxury-gold);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--luxury-gold);
}

.product-sizes {
  display: flex;
  gap: 4px;
}

.size-pill {
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.size-pill.selected, .size-pill:hover {
  border-color: var(--luxury-gold);
  color: var(--luxury-gold);
  background: rgba(212, 175, 55, 0.05);
}

.product-action-box {
  margin-top: 15px;
}

.product-action-box .btn {
  width: 100%;
}

/* Why Choose Us Section */
.why-us {
  padding: 100px 0;
  background: var(--section-bg-dark);
}

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

.why-card {
  padding: 40px;
  text-align: center;
  border: 1px solid var(--glass-border);
  background: rgba(8, 27, 75, 0.35);
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--luxury-gold);
  background: rgba(8, 27, 75, 0.65);
}

.why-icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon-box {
  background: var(--luxury-gold);
  transform: rotateY(180deg);
}

.why-icon-box svg {
  width: 28px;
  height: 28px;
  fill: var(--luxury-gold);
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon-box svg {
  fill: var(--black);
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--white);
}

.why-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Customer Reviews Slider */
.reviews {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.review-slider-wrapper {
  overflow: hidden;
}

.review-slides-container {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
  min-width: 100%;
  padding: 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-rating {
  color: var(--luxury-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.review-quote {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 30px;
  font-style: italic;
}

.review-author {
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--luxury-gold);
  font-weight: 500;
}

.review-author-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: var(--luxury-gold);
  color: var(--black);
  border-color: var(--luxury-gold);
}

.carousel-btn-prev {
  left: -60px;
}

.carousel-btn-next {
  right: -60px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--luxury-gold);
  transform: scale(1.3);
}

/* Gallery & Lightbox */
.gallery {
  padding: 100px 0;
  background: var(--section-bg-dark);
}

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

.gallery-item {
  position: relative;
  height: 320px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 27, 75, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-overlay-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1px solid var(--luxury-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay-icon svg {
  fill: var(--luxury-gold);
  width: 20px;
  height: 20px;
}

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
}

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

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

.gallery-item:hover .gallery-overlay-content {
  transform: translateY(0);
}

/* Instagram Feed Section */
.instagram-feed {
  padding: 80px 0;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.insta-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--glass-border);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 12, 34, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.insta-overlay svg {
  fill: var(--white);
  width: 28px;
  height: 28px;
}

.insta-item:hover img {
  transform: scale(1.05);
}

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

/* Contact Section */
.contact {
  padding: 100px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-brand-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--luxury-gold);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.contact-lead-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 35px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
}

.contact-icon-box {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-box svg {
  fill: var(--luxury-gold);
  width: 20px;
  height: 20px;
}

.contact-text-box h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-text-box p {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.6;
}

.contact-text-box a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-text-box a:hover {
  color: var(--luxury-gold);
}

.contact-reps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-rep-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-rep-name {
  font-weight: 500;
  color: var(--luxury-gold);
}

.contact-rep-phone {
  color: var(--white);
  text-decoration: none;
}

/* Contact Form & Map */
.contact-forms-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form {
  padding: 40px;
  border: 1px solid var(--glass-border);
  background: rgba(8, 27, 75, 0.4);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 12px 18px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--luxury-gold);
  background: rgba(255, 255, 255, 0.06);
}

textarea.form-control {
  resize: vertical;
}

.map-embed {
  width: 100%;
  height: 250px;
  border: 1px solid var(--glass-border);
  filter: grayscale(1) invert(0.9) contrast(1.2);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 12, 34, 0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border: 2px solid var(--luxury-gold);
}

.lightbox-caption {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--luxury-gold);
  margin-top: 15px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--luxury-gold);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-nav-btn:hover {
  background: var(--luxury-gold);
  color: var(--black);
  border-color: var(--luxury-gold);
}

.lightbox-nav-prev {
  left: -80px;
}

.lightbox-nav-next {
  right: -80px;
}

/* Footer Section */
.footer {
  background: var(--black);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 45px;
  align-self: flex-start;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links-col h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--luxury-gold);
  margin-bottom: 24px;
  letter-spacing: 1.5px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.footer-social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

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

/* Responsiveness (Mobile First Approach & Breakpoints) */

@media (max-width: 1199px) {
  .carousel-btn-prev { left: -20px; }
  .carousel-btn-next { right: -20px; }
  .lightbox-nav-prev { left: -40px; }
  .lightbox-nav-next { right: -40px; }
}

@media (max-width: 991px) {
  .section-title { font-size: 2.4rem; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content-box { padding-left: 0; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .header.scrolled {
    height: 60px;
  }
  
  .logo-container {
    height: 56px;
  }
  
  /* Navigation Menu Panel Mobile */
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(3, 12, 34, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-smooth);
    z-index: 999;
    border-top: 1px solid var(--glass-border);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; gap: 12px; align-items: stretch; }
  .hero-btns .btn { width: 100%; }
  
  .carousel-btn { display: none; } /* Hide prev/next buttons on mobile, rely on swipe/dots */
  .review-slide { padding: 0 10px; }
  .review-quote { font-size: 1.4rem; }
  
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 575px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .form-group-row { grid-template-columns: 1fr; gap: 0; }
  .about-img-box img { height: 320px; }
  .lightbox-nav-btn { display: none; }
}
