/* Gallery Zoom Styles */
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.12);
  filter: brightness(0.92) contrast(1.1);
}
.gallery-overlay.zoom-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  width: 98px;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
  z-index: 2;
}
.gallery-item:hover .gallery-overlay.zoom-btn {
  opacity: 1;
}

/* Zoom Modal */
.zoom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.zoom-modal-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: zoomIn 0.3s;
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.zoom-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}
.zoom-close:hover {
  color: #ffb6c1;
}
/* ========================================
   Siblings Creation & Boutique
   Premium Glassmorphism Nepali Fashion Website
   ======================================== */

/* CSS Variables */
:root {
  --primary-color: #8b0a1a;
  --primary-dark: #5a0610;
  --primary-light: #b01428;
  --secondary-color: #d4a574;
  --secondary-light: #e8c9a8;
  --accent-gold: #d4af37;
  --accent-gold-light: #f4e4b5;
  --accent-rose-gold: #b76e79;
  --text-dark: #0d0d0d;
  --text-medium: #3a3a3a;
  --text-light: #6a6a6a;
  --white: #ffffff;
  --off-white: #fdfbf9;
  --cream: #f8f4ef;
  --border-color: #e8e3db;

  /* Premium Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-bg-light: rgba(255, 255, 255, 0.25);
  --glass-bg-dark: rgba(0, 0, 0, 0.1);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-border-dark: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --glass-blur: blur(20px);
  --glass-blur-heavy: blur(40px);

  /* Premium Shadows */
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.3);
  --shadow-glow-red: 0 0 60px rgba(139, 10, 26, 0.2);

  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;

  line-height: 1.1;
}

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

ul {
  list-style: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: var(--transition-fast);
}

.navbar.scrolled .logo {
  color: var(--primary-color);
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

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

.nav-links a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--text-dark);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-fast);
}

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

.nav-icons {
  display: flex;
  gap: 20px;
}

.nav-icons .icon {
  color: var(--white);
  font-size: 18px;
}

.navbar.scrolled .nav-icons .icon {
  color: var(--text-dark);
}

.nav-icons .icon:hover {
  color: var(--accent-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-fast);
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      rgba(57, 6, 16, 0.9) 0%,
      rgba(0, 0, 0, 0.9) 10%,
      rgba(40, 12, 15, 0.9) 95%,
      rgba(0, 0, 0, 0.9) 65%,
      rgba(0, 0, 0, 0.9) 18%
    ),
    url("./images/others/banner_image_2.webp") center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 15% 85%,
      rgba(212, 175, 55, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(183, 110, 121, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(212, 165, 116, 0.08) 0%,
      transparent 60%
    ),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A961' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Floating glass orbs */
.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.08),
    transparent 70%
  );
  top: -100px;
  right: -100px;
  animation: floatOrb 8s ease-in-out infinite;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 30px) scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

/* Floating glass panels in hero */
.hero-glass-panel {
  position: absolute;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-glass-panel.left {
  width: 300px;
  height: 400px;
  top: 10%;
  left: -100px;
  transform: rotate(-15deg);
  animation: floatPanel 10s ease-in-out infinite;
}

.hero-glass-panel.right {
  width: 250px;
  height: 350px;
  bottom: 5%;
  right: -80px;
  transform: rotate(10deg);
  animation: floatPanel 12s ease-in-out infinite reverse;
}

@keyframes floatPanel {
  0%,
  100% {
    transform: rotate(-15deg) translateY(0);
  }
  50% {
    transform: rotate(-12deg) translateY(-20px);
  }
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-out;
}

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

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    #f5e6c8 40%,
    var(--accent-gold) 70%,
    #f5e6c8 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  letter-spacing: 2px;
}

.hero-tagline {
  font-size: 18px;
  font-weight: 300;
  max-width: 550px;
  margin: 0 auto 45px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 60px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #e8c468);
  color: var(--text-dark);
  /* box-shadow: 0 4px 25px rgba(212, 175, 55, 0.4); */
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 1px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  /* box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1); */
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========================================
   Section Styles
   ======================================== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding: 6px 20px;
  background: rgba(139, 10, 26, 0.06);
  border-radius: 30px;
}

.section-header.light .section-subtitle {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-header.light .section-title {
  color: var(--white);
}

/* ========================================
   About Section
   ======================================== */
.about {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 10, 26, 0.05), transparent 70%);
  bottom: -50px;
  left: -50px;
}

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

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  width: 100%;
  height: 520px;
  background:
    /* linear-gradient(
      135deg,
      rgba(139, 10, 26, 0.3) 0%,
      rgba(90, 6, 16, 0.3) 100%
    ), */ url("./images/others/fabric_1.webp")
    center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: var(--shadow-strong), var(--shadow-glow-red); */
}

/* .pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A961' fill-opacity='0.15'%3E%3Cpath d='M40 0L80 40L40 80L0 40L40 0zm0 10L10 40l30 30 30-30-30-30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
} */

/* Glass badge on about image */
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  text-align: center;
  box-shadow: var(--shadow-strong), var(--shadow-glow);
}

.experience-badge .years {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-gold), #e8c468);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.experience-badge .text {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  line-height: 1.3;
  max-width: 110px;
}

.about-content .section-subtitle {
  display: block;
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 25px;
}

.about-text {
  color: var(--text-medium);
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  gap: 25px;
  margin-top: 35px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
  background: rgba(139, 10, 26, 0.05);
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(139, 10, 26, 0.1);
  transition: var(--transition-fast);
}

.feature:hover {
  background: rgba(139, 10, 26, 0.1);
  transform: translateY(-2px);
}

.feature i {
  width: 36px;
  height: 36px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 4px 15px rgba(139, 10, 26, 0.3);
}

/* ========================================
   Collections Section
   ======================================== */
.collections {
  background: var(--white);
  position: relative;
}

.collections::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.04),
    transparent 70%
  );
  top: -100px;
  right: -200px;
}

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

.collection-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-medium);
  opacity: 0;
  transform: translateY(30px);
}

.collection-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.collection-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(212, 175, 55, 0.3);
}

.card-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: var(--transition-medium);
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(139, 10, 26, 0.2),
    rgba(212, 165, 116, 0.2)
  );
}

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

.card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.collection-card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 28px;
}

.card-content h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 18px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.card-link:hover {
  color: var(--accent-gold);
}

.card-link i {
  transition: var(--transition-fast);
  font-size: 11px;
}

.card-link:hover i {
  transform: translateX(5px);
}

/* ========================================
   Collection Page
   ======================================== */
.collection-hero {
  min-height: 70vh;
  height: auto;
  padding: 160px 0 120px;
  background:
    linear-gradient(
      135deg,
      rgba(26, 0, 5, 0.7) 0%,
      rgba(61, 10, 20, 0.65) 30%,
      rgba(19, 1, 3, 0.7) 60%,
      rgba(42, 3, 8, 0.85) 100%
    ),
    url("./images/collections/bridal_collection.png") center/cover no-repeat;
}

.collection-hero .hero-content {
  max-width: 720px;
}

.collection-page {
  background: #ffffff;
  position: relative;
}

.collection-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  margin-bottom: 40px;
}

.toolbar-group {
  background: #ffffff;
  /* border: 1px solid #f6f6f6; */
  border-radius: 14px;
  padding: 0px 10px;
  /* box-shadow: 0 1px 1px rgba(13, 13, 13, 0.1); */
  display: flex;
  gap: 8px;
  align-items: center;
}

.toolbar-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 10px;
}

.collection-tabs,
.collection-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.collection-filters {
  align-items: center;
}

.filter-select {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.filter-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  border: 1px solid #ececec;
  background: #fff;

  color: #222;
  padding: 9px 38px 9px 24px;

  border-radius: 999px;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;

  cursor: pointer;
  transition: 0.2s ease;

  min-width: 110px;
}

/* Custom dropdown arrow */
.filter-select::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;

  width: 6px;
  height: 6px;

  border-right: 1.5px solid #8c8c8c;
  border-bottom: 1.5px solid #747474;

  transform: translateY(-65%) rotate(45deg);

  pointer-events: none;
}

.filter-select select:hover {
  border-color: #d9d9d9;
}

.filter-select select:focus {
  outline: none;
  border-color: #c8c8c8;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.tab-btn,
.filter-btn {
  border: 1px solid #e2e2e2;
  background: #ffffff;
  color: #343131;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: 0.2s ease;
}

.tab-btn.active,
.filter-btn.active,
.tab-btn.active:hover {
  background: #330309;
  /* border-color: #0d0d0d; */
  color: #ffffff;
  box-shadow: none;
}

.tab-btn:hover,
.filter-btn:hover {
  border-color: #c8c8c8;
  color: #8b0a1a;
}

/* ========================================
   Collection section
   ======================================== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.collection-item {
  background: #fff;
  overflow: hidden;
  transition: 0.25s ease;
  position: relative;
  border-radius: 6px;
}

.collection-item:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.collection-media {
  position: relative;
  width: 100%;
  height: 250px; /* reduced slightly */
  overflow: hidden;
  background: #f5f5f6;
}

.collection-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wishlist-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.collection-info {
  padding: 10px;
}

.collection-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: #ff3f6c;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.collection-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: #282c3f;
  margin-bottom: 4px;

  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.collection-info p {
  font-size: 12px;
  color: #535766;
  margin-bottom: 5px;

  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.collection-price {
  font-size: 14px !important;
  font-weight: 700;
  color: #282c3f !important;
  margin-bottom: 10px !important;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;

  border: 0.001rem solid #c1d8ca;
  color: #105d2c;
  border-radius: 5px;
  background: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
}

.whatsapp-link:hover {
  border-color: #25d366;
  color: #25d366;
}

/* Desktop */
@media (min-width: 1200px) {
  .collection-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Medium devices */
@media (max-width: 992px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .collection-media {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .collection-media {
    height: 190px;
  }

  .collection-info {
    padding: 8px;
  }

  .collection-info h3 {
    font-size: 12px;
  }

  .collection-info p {
    font-size: 10px;
  }

  .collection-price {
    font-size: 12px !important;
  }

  .whatsapp-link {
    height: 32px;
    font-size: 10px;
  }

  .collection-toolbar {
    grid-template-columns: 1fr;
  }

  /* .toolbar-group {
    padding: 16px;
  } */

  .collection-tabs,
  .collection-filters {
    justify-content: center;
  }
}
/* ========================================
   Services Section
   ======================================== */
.services {
  background: linear-gradient(
    135deg,
    #1a0005 0%,
    #3d0a14 25%,
    #8b0a1a 50%,
    #5a1020 75%,
    #2a0308 100%
  );
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 40%
    ),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Floating glass orbs in services */
.services::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.06),
    transparent 70%
  );
  bottom: -200px;
  left: -200px;
  animation: floatOrb 12s ease-in-out infinite reverse;
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 45px 30px;
  text-align: center;
  transition: var(--transition-medium);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.5),
    transparent
  );
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.2),
    var(--shadow-glow);
}

.service-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  background: rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.service-icon i {
  font-size: 30px;
  color: var(--accent-gold);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery {
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.9);
  transition: var(--transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-item:nth-child(1) {
  background-image:
    linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(139, 10, 26, 0.2)),
    url("https://images.unsplash.com/photo-1617627143750-d86bc21e42bb?w=800&q=80");
}
.gallery-item:nth-child(2) {
  background-image:
    linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(139, 10, 26, 0.2)),
    url("https://images.unsplash.com/photo-1610030469983-98e550d6193c?w=500&q=80");
}
.gallery-item:nth-child(3) {
  background-image:
    linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(139, 10, 26, 0.2)),
    url("https://images.unsplash.com/photo-1583391733981-8b530c480725?w=500&q=80");
}
.gallery-item:nth-child(4) {
  background-image:
    linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(139, 10, 26, 0.2)),
    url("https://images.unsplash.com/photo-1594552072238-b8a33785b261?w=500&q=80");
}
.gallery-item:nth-child(5) {
  background-image:
    linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(139, 10, 26, 0.2)),
    url("https://images.unsplash.com/photo-1583391733956-6c78276477e2?w=500&q=80");
}
.gallery-item:nth-child(6) {
  background-image:
    linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(139, 10, 26, 0.2)),
    url("https://images.unsplash.com/photo-1558171813-4c088753af8f?w=500&q=80");
}

.gallery-item.animate {
  opacity: 1;
  transform: scale(1);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 10, 26, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-overlay i {
  font-size: 28px;
  color: var(--white);
  transform: scale(0) rotate(-45deg);
  transition: var(--transition-fast);
  width: 98px;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

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

.gallery-item:hover .gallery-overlay i {
  transform: scale(1) rotate(0deg);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.05),
    transparent 70%
  );
  top: -100px;
  left: -100px;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-medium);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 80px;
  /* font-family: var(--font-heading); */
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
}

.testimonial-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(212, 175, 55, 0.3);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.stars i {
  color: var(--accent-gold);
  font-size: 15px;
  filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.3));
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.9;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--accent-gold),
    var(--secondary-color)
  );
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  background-size: cover;
  background-position: center;
}

.author-info h4 {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-dark);
}

.author-info span {
  font-size: 13px;
  color: var(--text-light);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
  background: linear-gradient(180deg, var(--white), var(--off-white));
  position: relative;
}

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

.contact-info .section-subtitle {
  text-align: left;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.contact-text {
  color: var(--text-medium);
  margin-bottom: 30px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 20px;
  padding: 15px;
  border-radius: 16px;
  transition: var(--transition-fast);
}

.info-item:hover {
  background: rgba(139, 10, 26, 0.03);
}

.info-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(139, 10, 26, 0.25);
}

.info-item h4 {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.info-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(139, 10, 26, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 10, 26, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--white);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(139, 10, 26, 0.3);
}

/* Glass contact form */
.contact-form-container {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 50px;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-gold),
    var(--primary-color)
  );
  border-radius: 28px 28px 0 0;
}

.contact-form h3 {
  font-size: 26px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  transition: var(--transition-fast);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(139, 10, 26, 0.08);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn.full-width {
  width: 100%;
  justify-content: center;
  padding: 18px 40px;
  font-size: 14px;
  border-radius: 14px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 50%, #0a0a0a 100%);
  color: var(--white);
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold),
    transparent
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  color: var(--accent-gold);
  font-size: 30px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  line-height: 1.9;
}

.footer-links h4,
.footer-newsletter h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
  font-family: var(--font-body);
  font-weight: 600;
  position: relative;
}

.footer-links h4::after,
.footer-newsletter h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  transition: var(--transition-fast);
  position: relative;
}

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

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: var(--white);
  transition: var(--transition-fast);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form button {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-gold), #e8c468);
  border: none;
  border-radius: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 16px;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
}

.footer-bottom i {
  color: var(--primary-color);
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* ========================================
   Floating Contact Buttons
   ======================================== */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
}

.floating-action {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  /* box-shadow: 0 2px 3px rgba(0, 0, 0, 0.18); */
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.floating-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.22);
}

.floating-action:active {
  transform: translateY(0);
}

.floating-whatsapp {
  background: #25d366;
  /* box-shadow: 0 5px 5px rgba(37, 211, 102, 0.35); */
}

.floating-call {
  background: #1f1f1f;
}

@media (max-width: 768px) {
  .floating-actions {
    right: 16px;
    bottom: 16px;
  }

  .floating-action {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .filter-fab {
    display: inline-flex;
    bottom: 16px;
  }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-strong);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateX(100%);
    max-width: 100vw;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    color: var(--text-dark);
    font-size: 18px;
  }

  .hamburger {
    display: flex;
    z-index: 100;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    flex-direction: column;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .experience-badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -60px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .collection-toolbar,
  .collection-tabs,
  .collection-filters {
    justify-content: left;
  }

  .gallery-item.large,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 20px;
  }

  .logo-text {
    font-size: 18px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 32px;
  }
}

/* ========================================
   Premium Finishing Touches
   ======================================== */

/* Custom selection color */
::selection {
  background: rgba(139, 10, 26, 0.2);
  color: var(--text-dark);
}

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

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--accent-gold));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-dark), var(--accent-gold));
}

/* Smooth loading transitions */
.collection-card:nth-child(1) {
  transition-delay: 0.1s;
}
.collection-card:nth-child(2) {
  transition-delay: 0.2s;
}
.collection-card:nth-child(3) {
  transition-delay: 0.3s;
}
.collection-card:nth-child(4) {
  transition-delay: 0.4s;
}

.service-card:nth-child(1) {
  transition-delay: 0.1s;
}
.service-card:nth-child(2) {
  transition-delay: 0.15s;
}
.service-card:nth-child(3) {
  transition-delay: 0.2s;
}
.service-card:nth-child(4) {
  transition-delay: 0.25s;
}
.service-card:nth-child(5) {
  transition-delay: 0.3s;
}
.service-card:nth-child(6) {
  transition-delay: 0.35s;
}

.testimonial-card:nth-child(1) {
  transition-delay: 0.1s;
}
.testimonial-card:nth-child(2) {
  transition-delay: 0.2s;
}
.testimonial-card:nth-child(3) {
  transition-delay: 0.3s;
}

.gallery-item:nth-child(1) {
  transition-delay: 0.05s;
}
.gallery-item:nth-child(2) {
  transition-delay: 0.1s;
}
.gallery-item:nth-child(3) {
  transition-delay: 0.15s;
}
.gallery-item:nth-child(4) {
  transition-delay: 0.2s;
}
.gallery-item:nth-child(5) {
  transition-delay: 0.25s;
}
.gallery-item:nth-child(6) {
  transition-delay: 0.3s;
}
