:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #B8860B;
  --gold-gradient: linear-gradient(135deg, #C9A84C, #E8D5A3, #C9A84C);
  --ivory: #FFFFF0;
  --ivory-dark: #FFF8DC;
  --beige: #F5F0E8;
  --beige-dark: #EDE5D8;
  --maroon: #800020;
  --maroon-dark: #6B0030;
  --maroon-light: #9B1B3B;
  --dark: #1A1A1A;
  --dark-2: #2C2C2C;
  --text: #3A3A3A;
  --text-light: #777;
  --white: #FFFFFF;
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
  --font-heading: 'Playfair Display', serif;
  --font-sub: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--beige);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

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

.section {
  padding: 100px 0;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
}

.section-tag::before, .section-tag::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px auto 20px;
  color: var(--gold);
  font-size: 1.2rem;
}

.section-divider::before, .section-divider::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-desc {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 24px;
}

.loader-logo span {
  color: var(--ivory);
  font-weight: 400;
}

.loader-line {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 16px;
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  animation: loadFill 1.8s ease forwards;
}

@keyframes loadFill {
  to { width: 100%; }
}

.loader-text {
  font-family: var(--font-sub);
  color: var(--text-light);
  font-style: italic;
  font-size: 1rem;
}

/* Header */
.header-top {
  background: var(--dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.header-contact span {
  color: var(--text-light);
  margin-right: 24px;
  font-size: 0.78rem;
}

.header-contact i {
  color: var(--gold);
  margin-right: 6px;
}

.header-social a {
  color: var(--text-light);
  margin-left: 12px;
  font-size: 0.9rem;
}

.header-social a:hover { color: var(--gold); }

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: var(--transition);
}

#header.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.12); }

#header.scrolled .header-top { display: none; }

#navbar {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: 50%;
  color: var(--dark);
  font-size: 1.1rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.logo-text small {
  display: block;
  font-size: 0.55rem;
  color: var(--text-light);
  font-family: var(--font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 4px;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 14px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gold-gradient);
  transition: transform 0.3s;
}

.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.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); }

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

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 30%, rgba(26,26,26,0.5) 70%, rgba(26,26,26,0.3) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
}

.hero-subtitle {
  font-family: var(--font-sub);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounceDown 2s infinite;
}

.hero-scroll i {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
}

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

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* About */
.about {
  background: var(--ivory);
}

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

.about-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
  transition: transform 0.6s;
}

.about-img-wrap:hover img {
  transform: scale(1.03);
}

.about-exp {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--dark);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.exp-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.about-feat i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.85rem;
}

/* Stats */
.stats {
  background: var(--dark);
  padding: 70px 0;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Collections */
.collections {
  background: var(--beige);
}

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

.collection-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.collection-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

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

.collection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.collection-card:hover .collection-overlay {
  opacity: 1;
}

.collection-overlay span {
  color: var(--ivory);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 10px 24px;
  font-weight: 500;
}

.collection-info {
  padding: 20px 24px;
}

.collection-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.collection-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Bridal */
.bridal {
  background: var(--ivory);
}

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

.bridal-card {
  position: relative;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(201,168,76,0.1);
}

.bridal-card.featured {
  grid-column: span 1;
  border-color: var(--gold);
}

.bridal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.bridal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--gold-gradient);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.bridal-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.bridal-actions {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition);
}

.bridal-card:hover .bridal-actions {
  opacity: 1;
  transform: translateX(0);
}

.bridal-action {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--dark);
  border-radius: 50%;
  font-size: 0.85rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bridal-action:hover {
  background: var(--gold);
  color: var(--dark);
}

.bridal-info {
  padding: 18px 20px;
}

.bridal-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.bridal-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.bridal-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* Arrivals */
.arrivals {
  background: var(--dark);
}

.arrivals .section-title { color: var(--ivory); }
.arrivals .section-desc { color: rgba(255,255,255,0.6); }

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

.arrival-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}

.arrival-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}

.arrival-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.arrival-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.arrival-card:hover .arrival-img img {
  transform: scale(1.06);
}

.arrival-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}

.arrival-info {
  padding: 16px;
}

.arrival-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--ivory);
  margin-bottom: 3px;
}

.arrival-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.arrival-price {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

/* Custom */
.custom {
  background: var(--ivory);
}

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

.custom-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.custom-content > p {
  color: var(--text-light);
  margin: 20px 0 30px;
  line-height: 1.8;
}

.custom-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 50px;
}

.step h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.custom-image {
  position: relative;
}

.custom-image img {
  width: 100%;
  border-radius: 4px;
  min-height: 450px;
  object-fit: cover;
}

.custom-quote {
  position: absolute;
  bottom: -20px;
  left: 30px;
  right: 30px;
  background: var(--dark);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.custom-quote i {
  color: var(--gold);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.custom-quote p {
  color: rgba(255,255,255,0.8);
  font-style: italic;
  font-size: 0.95rem;
  font-family: var(--font-sub);
}

/* Reviews */
.reviews {
  background: var(--beige);
}

.reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.review-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,168,76,0.3);
  background: var(--white);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-arrow:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.reviews-track {
  flex: 1;
  overflow: hidden;
}

.review-card {
  background: var(--white);
  padding: 40px;
  text-align: center;
  display: none;
  box-shadow: var(--shadow);
}

.review-card.active { display: block; }

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.review-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  font-size: 1.2rem;
}

.review-author h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark);
}

.review-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}

/* Gallery */
.gallery {
  background: var(--dark);
}

.gallery .section-title { color: var(--ivory); }
.gallery .section-desc { color: rgba(255,255,255,0.6); }

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

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-info i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 6px;
  display: block;
}

.gallery-info h4 {
  font-family: var(--font-heading);
  color: var(--ivory);
  font-size: 1rem;
}

.gallery-info p {
  font-size: 0.8rem;
  color: var(--gold-light);
}

/* Contact */
.contact {
  background: var(--ivory);
}

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

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: start;
}

.contact-card {
  background: var(--white);
  padding: 24px;
  border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  color: var(--gold);
  border-radius: 50%;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-card a { color: var(--text-light); }
.contact-card a:hover { color: var(--gold); }

.contact-social {
  grid-column: 1 / -1;
  background: var(--white);
  padding: 24px;
  border: 1px solid rgba(201,168,76,0.1);
}

.contact-social h4 {
  font-family: var(--font-heading);
  margin-bottom: 12px;
  color: var(--dark);
}

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

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--dark);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border: 1px solid rgba(201,168,76,0.1);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 24px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid var(--beige-dark);
  background: var(--beige);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

/* Map */
.map-section iframe {
  display: block;
  filter: grayscale(60%) brightness(0.9);
  transition: filter 0.3s;
}

.map-section iframe:hover {
  filter: grayscale(0%) brightness(1);
}

/* Footer */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  position: relative;
  border-top: 3px solid var(--gold);
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 16px 0;
  line-height: 1.7;
}

.footer-payments span {
  display: block;
  color: var(--text-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.payment-icons {
  display: flex;
  gap: 10px;
  font-size: 1.5rem;
  color: var(--text-light);
}

.footer-links h4,
.footer-newsletter h4 {
  font-family: var(--font-heading);
  color: var(--ivory);
  font-size: 1.1rem;
  margin-bottom: 18px;
}

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

.footer-links ul li a {
  color: var(--text-light);
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.footer-newsletter p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-body);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--ivory);
  font-size: 0.85rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  width: 48px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

.footer-certifications {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-certifications span {
  color: var(--text-light);
  font-size: 0.8rem;
}

.footer-certifications i {
  color: var(--gold);
  margin-right: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 50px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer-bottom a {
  color: var(--text-light);
}

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

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulseWhatsApp 2s infinite;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: var(--dark);
  color: var(--ivory);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulseWhatsApp {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}

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

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--ivory);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

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

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* AOS-like Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .bridal-grid { grid-template-columns: repeat(2, 1fr); }
  .arrivals-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-top { display: none; }

  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26,26,26,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
  }

  .nav-link::after { display: none; }

  .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { min-height: 300px; }
  .about-exp { right: 10px; bottom: 20px; padding: 16px 20px; }
  .about-exp .exp-num { font-size: 2rem; }
  .about-features { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-num { font-size: 2.2rem; }

  .collections-grid { grid-template-columns: 1fr; }
  .collection-img { height: 220px; }

  .bridal-grid { grid-template-columns: 1fr; }
  .bridal-img { height: 240px; }

  .arrivals-grid { grid-template-columns: 1fr 1fr; }
  .arrival-img { height: 180px; }

  .custom-wrapper { grid-template-columns: 1fr; gap: 50px; }
  .custom-image img { min-height: 300px; }
  .custom-quote { position: relative; bottom: 0; left: 0; right: 0; }

  .reviews-carousel { flex-direction: column; gap: 12px; }
  .review-arrow { width: 40px; height: 40px; }
  .review-card { padding: 24px 20px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item--large { grid-column: span 2; grid-row: span 1; }

  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 16px; right: 16px; }
  .back-to-top { width: 38px; height: 38px; font-size: 0.85rem; bottom: 16px; left: 16px; }
}

@media (max-width: 480px) {
  .arrivals-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .contact-form { padding: 24px 20px; }
}

