/* ================================================
   ShaadiGujarat — Main Stylesheet
   Default Palette: Royal Maroon & Gold
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── ROOT COLOR PALETTE (Default: Royal Maroon & Gold) ── */
:root {
  --primary:       #8B1A2F;
  --primary-dk:    #5C0F1E;
  --primary-lt:    #B52840;
  --accent:        #C9A84C;
  --accent-lt:     #E8D5A3;
  --accent-dk:     #A07830;
  --bg:            #FAF6EF;
  --bg-white:      #FFFFFF;
  --text:          #1C1C1E;
  --text-muted:    #6B6560;
  --border:        rgba(201,168,76,0.22);
  --border-light:  rgba(201,168,76,0.12);
  --shadow-sm:     0 4px 16px rgba(92,15,30,0.08);
  --shadow-md:     0 10px 36px rgba(92,15,30,0.12);
  --shadow-lg:     0 20px 60px rgba(92,15,30,0.16);
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     18px;
  --transition:    all 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── GLOBAL ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
.playfair { font-family: 'Playfair Display', serif; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 0.72rem; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500; margin-bottom: 10px;
}
.section-eyebrow::before,
.section-eyebrow::after { content: '—'; opacity: 0.5; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
  font-weight: 700; line-height: 1.2; color: var(--text);
}
.section-title em { color: var(--primary); font-style: italic; }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--accent); }
.section-subtitle {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.8; max-width: 520px;
}
.section-subtitle.light { color: rgba(255,255,255,0.6); }

/* ── BUTTONS ── */
.btn-primary-custom {
  display: inline-block; padding: 13px 30px;
  background: var(--primary); color: #fff !important;
  border-radius: var(--radius-sm); font-weight: 500;
  font-size: 0.9rem; border: none; cursor: pointer;
  transition: var(--transition); letter-spacing: 0.3px;
}
.btn-primary-custom:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,15,30,0.28);
}
.btn-accent-custom {
  display: inline-block; padding: 13px 30px;
  background: var(--accent); color: var(--primary-dk) !important;
  border-radius: var(--radius-sm); font-weight: 600;
  font-size: 0.9rem; border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-accent-custom:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
}
.btn-outline-custom {
  display: inline-block; padding: 12px 28px;
  background: transparent; color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: var(--radius-sm); font-weight: 500;
  font-size: 0.9rem; cursor: pointer; transition: var(--transition);
}
.btn-outline-custom:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.view-all-link {
  font-size: 0.875rem; font-weight: 500;
  color: var(--primary); border-bottom: 1.5px solid var(--primary);
  padding-bottom: 2px; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 5px;
}
.view-all-link:hover { gap: 10px; color: var(--primary-dk); border-color: var(--primary-dk); }

/* ── NAVBAR ── */
.sg-navbar {
  background: rgba(250,246,239,0.95) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 !important;
  height: 68px;
  transition: var(--transition);
}
.sg-navbar.scrolled {
  box-shadow: 0 4px 20px rgba(92,15,30,0.1);
}

/* FIX 1 — Hide hamburger on desktop */
.sg-navbar .navbar-toggler { display: none !important; }
@media (max-width: 991.98px) {
  .sg-navbar .navbar-toggler { display: flex !important; }
  .sg-navbar { height: auto; min-height: 64px; }
}

.sg-navbar .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--primary) !important;
  letter-spacing: 0.3px; padding: 0;
}
.sg-navbar .navbar-brand span { color: var(--accent); font-style: italic; }

.sg-navbar .nav-link {
  color: var(--text) !important; font-size: 0.875rem;
  font-weight: 500; padding: 0.5rem 0.85rem !important;
  transition: color 0.2s; position: relative; letter-spacing: 0.2px;
}

/* FIX 2 — underline hover only, no dot/artifact on dropdown-toggle */
.sg-navbar .nav-link::after {
  content: '' !important;
  position: absolute; left: 0.85rem; bottom: -2px;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width 0.25s;
  border: none !important;
  border-top: none !important;
  /* vertical-align: 0 !important; */
  display: block !important;
}
/* Bootstrap overrides the ::after on .dropdown-toggle with a caret — kill it */
.sg-navbar .dropdown-toggle::after {
  display: none !important;
  content: none !important;
  border: none !important;
}
.sg-navbar .nav-link:hover,
.sg-navbar .nav-link.active { color: var(--primary) !important; }
.sg-navbar .nav-link:hover::after { width: calc(100% - 1.7rem); }

/* Vendor mega dropdown */
.sg-navbar .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 24px; min-width: 680px;
  background: var(--bg-white);
  margin-top: 0 !important;
  top: 100%;
  left: 50%;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  transform: translateX(-50%) translateY(8px);
}
.sg-navbar .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-mega-title {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border-light);
}
.dropdown-item-custom {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: var(--radius-sm);
  color: var(--text) !important; font-size: 0.855rem;
  transition: var(--transition); white-space: nowrap;
}
.dropdown-item-custom:hover {
  background: rgba(139,26,47,0.06);
  color: var(--primary) !important;
  transform: translateX(3px);
}
.dropdown-item-custom .di-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(139,26,47,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
  transition: background 0.2s;
}
.dropdown-item-custom:hover .di-icon { background: rgba(139,26,47,0.14); }
.di-text strong { display: block; font-weight: 500; font-size: 0.83rem; line-height: 1.2; }
.di-text small { color: var(--text-muted); font-size: 0.72rem; }

/* FIX 3 — CTA button clean style with border so it doesn't look dark/flat */
.nav-cta-btn {
  background: transparent !important;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary) !important;
  padding: 7px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.83rem !important;
  font-weight: 500 !important;
  transition: var(--transition) !important;
  white-space: nowrap;
}
.nav-cta-btn::after { display: none !important; content: none !important; }
.nav-cta-btn:hover {
  background: var(--primary) !important;
  color: #fff !important;
  transform: none !important;
}

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  background: var(--primary-dk);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 68px;
}
.hero-section > .container { position: relative; z-index: 2; }

/* Hero image collage */
.hero-img-grid { width: 100%; padding-left: 16px; }
.hero-img-top  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(201,168,76,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(201,168,76,0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 70% 85%, rgba(92,15,30,0.5) 0%, transparent 50%);
}
.hero-pattern::before {
  content: ''; position: absolute; inset: 0; opacity: 1;
  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='%23C9A84C' fill-opacity='0.035'%3E%3Cpath d='M50 50v-6h-3v6h-6v3h6v6h3v-6h6v-3h-6zm0-44V0h-3v6h-6v3h6v6h3V9h6V6h-6zM6 50v-6H3v6H-3v3h3v6h3v-6h6v-3H6zM6 6V0H3v6H-3v3h3v6h3V9h6V6H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; padding: 60px 0 50px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.14); border: 1px solid rgba(201,168,76,0.4);
  color: var(--accent-lt); font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 30px;
  margin-bottom: 24px;
}
.hero-badge::before { content: '✦'; font-size: 0.6rem; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700; color: #fff; line-height: 1.15;
  margin-bottom: 6px;
}
.hero-title em { color: var(--accent); font-style: italic; }
.hero-sub-italic {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  color: rgba(255,255,255,0.5); font-style: italic;
  margin-bottom: 18px; letter-spacing: 0.5px;
}
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.62); line-height: 1.85; margin-bottom: 42px; }

/* Search bar */
.hero-search {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: var(--radius-md); padding: 10px;
  display: flex; flex-wrap: wrap; gap: 10px;
  backdrop-filter: blur(8px);
}
.hero-search .form-select,
.hero-search .form-control {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: var(--radius-sm) !important;
  color: #fff !important; font-size: 0.9rem;
  padding: 11px 16px; flex: 1 1 160px;
}
.hero-search .form-select option { background: var(--primary-dk); }
.hero-search .form-select:focus,
.hero-search .form-control:focus {
  box-shadow: none !important;
  border-color: var(--accent) !important;
}
.hero-search .form-control::placeholder { color: rgba(255,255,255,0.38); }
.hero-search .btn-search {
  background: var(--accent); color: var(--primary-dk);
  border: none; border-radius: var(--radius-sm); padding: 11px 26px;
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
  transition: var(--transition); white-space: nowrap; flex: 0 0 auto;
}
.hero-search .btn-search:hover { background: var(--accent-lt); transform: scale(1.02); }

.hero-stats { display: flex; gap: 48px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.1rem; color: var(--accent); font-weight: 700; line-height: 1;
}
.hero-stat span { font-size: 0.73rem; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase; }

/* ── SECTIONS PADDING ── */
.sg-section { padding: 88px 0; }
.sg-section-sm { padding: 60px 0; }

/* ── CATEGORIES ── */
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 26px 16px; background: var(--bg); border-radius: var(--radius-md);
  border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,26,47,0.04), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.cat-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(139,26,47,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; transition: background 0.25s;
}
.cat-card:hover .cat-icon { background: rgba(139,26,47,0.15); }
.cat-name { font-weight: 500; font-size: 0.83rem; color: var(--text); line-height: 1.3; }
.cat-count { font-size: 0.72rem; color: var(--text-muted); }

/* ── VENDOR CARDS ── */
.vendor-card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); overflow: hidden;
  transition: var(--transition); height: 100%;
  display: flex; flex-direction: column;
}
.vendor-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.45); }
.vendor-img-wrap { height: 230px; overflow: hidden; position: relative; }
.vendor-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.vendor-card:hover .vendor-img-wrap img { transform: scale(1.07); }
.vendor-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.vbadge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
}
.vbadge.gold { background: var(--accent); color: var(--primary-dk); }
.vcity {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(20,20,20,0.72); backdrop-filter: blur(4px);
  color: #fff; font-size: 0.72rem; padding: 4px 10px; border-radius: 20px;
}
.vendor-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.vendor-cat { font-size: 0.7rem; color: var(--accent-dk); letter-spacing: 1px; text-transform: uppercase; font-weight: 500; margin-bottom: 5px; }
.vendor-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin-bottom: 7px; }
.vendor-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.vendor-meta { display: flex; align-items: center; justify-content: space-between; }
.stars { color: var(--accent); font-size: 0.82rem; }
.rating-cnt { font-size: 0.73rem; color: var(--text-muted); }
.vendor-price strong { color: var(--primary); font-weight: 600; font-size: 0.88rem; }
.vendor-price small { color: var(--text-muted); font-size: 0.72rem; }
.vendor-footer { padding: 0 20px 20px; display: flex; gap: 9px; }
.btn-enquire {
  flex: 1; padding: 9px; background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: 0.84rem;
  font-weight: 500; cursor: pointer; transition: var(--transition);
  text-align: center; display: block;
}
.btn-enquire:hover { background: var(--primary-dk); color: #fff; }
.btn-save {
  width: 38px; height: 38px; border: 1px solid var(--border);
  background: none; border-radius: var(--radius-sm); cursor: pointer;
  font-size: 0.95rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.btn-save:hover { border-color: var(--primary); background: rgba(139,26,47,0.05); }

/* ── CITY CARDS ── */
.city-card {
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  height: 175px; display: block; transition: transform 0.3s;
}
.city-card:hover { transform: scale(1.03); }
.city-bg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.city-card:hover .city-bg { transform: scale(1.08); }
.city-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(92,15,30,0.88) 0%, rgba(92,15,30,0.15) 65%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
}
.city-nm { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: #fff; font-weight: 700; }
.city-cnt { font-size: 0.72rem; color: rgba(255,255,255,0.6); }

/* City placeholder colors */
.cp-ahm { background: linear-gradient(135deg, #D4A574, #9B6B3A); }
.cp-sur { background: linear-gradient(135deg, #7BA7BC, #4A7A8E); }
.cp-vad { background: linear-gradient(135deg, #8BAF6E, #5A7A44); }
.cp-raj { background: linear-gradient(135deg, #C49A72, #8B6040); }
.cp-gan { background: linear-gradient(135deg, #7A9CB8, #506A7E); }
.cp-bha { background: linear-gradient(135deg, #C4B080, #8A7A50); }

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--primary-dk); position: relative; overflow: hidden;
}
.how-section::before {
  content: ''; position: absolute; inset: 0; opacity: 1;
  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='%23C9A84C' fill-opacity='0.035'%3E%3Cpath d='M50 50v-6h-3v6h-6v3h6v6h3v-6h6v-3h-6zm0-44V0h-3v6h-6v3h6v6h3V9h6V6h-6zM6 50v-6H3v6H-3v3h3v6h3v-6h6v-3H6zM6 6V0H3v6H-3v3h3v6h3V9h6V6H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.step-card {
  text-align: center; padding: 36px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  transition: var(--transition); height: 100%;
}
.step-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(201,168,76,0.45); }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(201,168,76,0.14); border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  font-weight: 700; color: var(--accent); margin: 0 auto 18px;
}
.step-card h5 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: #fff; margin-bottom: 10px; font-weight: 600; }
.step-card p { font-size: 0.84rem; color: rgba(255,255,255,0.52); line-height: 1.75; }

/* ── REAL WEDDINGS ── */
.wedding-card {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; display: block; transition: transform 0.3s;
}
.wedding-card:hover { transform: scale(1.025); }
.wedding-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.wedding-card:hover img { transform: scale(1.06); }
.wedding-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,10,0.78) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
}
.wedding-couple { font-family: 'Playfair Display', serif; font-size: 1rem; color: #fff; font-weight: 700; }
.wedding-detail { font-size: 0.72rem; color: rgba(255,255,255,0.62); margin-top: 3px; }

/* Wedding grid layout */
.wedding-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 14px; }
.wedding-grid .wc-main { grid-row: span 2; }
.wedding-grid .wedding-card,
.wedding-grid .wc-main { height: 100%; }
.wedding-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.wi1 { background: linear-gradient(145deg,#c8a070,#783020); }
.wi2 { background: linear-gradient(145deg,#d8b890,#907050); }
.wi3 { background: linear-gradient(145deg,#a8c0b8,#607080); }
.wi4 { background: linear-gradient(145deg,#c8b090,#886050); }
.wi5 { background: linear-gradient(145deg,#b8a880,#786050); }

/* ── TESTIMONIALS CAROUSEL ── */
.testimonials-section { background: var(--bg-white); }
.testi-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 36px 32px; border: 1px solid var(--border-light);
  height: 100%;
}
.testi-quote {
  font-family: 'Playfair Display', serif; font-size: 3.2rem;
  color: var(--accent); line-height: 0.75; margin-bottom: 14px; opacity: 0.55;
}
.testi-card p { font-size: 0.9rem; color: var(--text); line-height: 1.85; font-style: italic; margin-bottom: 26px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.author-nm { font-weight: 500; font-size: 0.875rem; line-height: 1.2; }
.author-loc { font-size: 0.73rem; color: var(--text-muted); }
.author-stars { color: var(--accent); font-size: 0.78rem; }
/* carousel controls */
.carousel-ctrl {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary); border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 1rem;
}
.carousel-ctrl:hover { background: var(--primary-dk); transform: scale(1.08); }

/* ── PHOTO GALLERY SECTION ── */
.gallery-section { background: var(--primary-dk); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: 220px 220px; gap: 10px; }
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.gi-span2 { grid-column: span 2; }
.gallery-item.gi-row2 { grid-row: span 2; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(92,15,30,0); transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-overlay span { opacity: 0; color: #fff; font-size: 1.8rem; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { background: rgba(92,15,30,0.45); }
.gallery-item:hover .gallery-overlay span { opacity: 1; }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.gp1 { background: linear-gradient(135deg, #c8a878, #8b6038); }
.gp2 { background: linear-gradient(135deg, #d0b888, #9a7848); }
.gp3 { background: linear-gradient(135deg, #b8c8a0, #788850); }
.gp4 { background: linear-gradient(135deg, #c8b098, #906858); }
.gp5 { background: linear-gradient(135deg, #a8b8c8, #607080); }
.gp6 { background: linear-gradient(135deg, #d0c0a0, #908068); }
.gp7 { background: linear-gradient(135deg, #c0a890, #886050); }

/* ── VENDOR CTA ── */
.vendor-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  position: relative; overflow: hidden;
}

/* ── FOOTER ── */
.sg-footer { background: #141214; color: rgba(255,255,255,0.65); padding: 72px 0 32px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: var(--primary-lt) !important; }
.footer-brand-name span { color: var(--accent); font-style: italic; }
.footer-desc { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.85; max-width: 270px; margin: 14px 0 22px; }
.footer-social-icons { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; transition: var(--transition);
  color: rgba(255,255,255,0.5);
}
.social-btn:hover { border-color: var(--accent); background: rgba(201,168,76,0.1); color: var(--accent); }
.footer-col-title {
  font-family: 'Playfair Display', serif; font-size: 0.88rem;
  font-weight: 700; color: #fff; margin-bottom: 18px; letter-spacing: 0.2px;
}
.footer-links-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-links-list a { color: rgba(255,255,255,0.45); font-size: 0.83rem; transition: color 0.2s; }
.footer-links-list a:hover { color: var(--accent); }
.footer-divider { border-color: rgba(255,255,255,0.08) !important; margin: 44px 0 22px; }
.footer-bottom-text { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-bottom-text a { color: var(--accent); }
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
.footer-bottom-links a { font-size: 0.76rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.42);
  color: #fff; font-size: 1.45rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { transform: translateY(28px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.fade-up { animation: fadeUp 0.75s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ── UTILITIES ── */
.bg-cream { background: var(--bg) !important; }
.bg-white-sg { background: var(--bg-white) !important; }
.text-accent { color: var(--accent) !important; }
.text-primary-sg { color: var(--primary) !important; }
.border-gold { border-color: var(--border) !important; }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET  (≤992px)
══════════════════════════════════════ */
@media (max-width: 992px) {

  /* ── Navbar mobile panel ── */
  .sg-navbar .container {
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .sg-navbar .navbar-brand { font-size: 1.25rem; }

  /* Collapsed menu slides open below navbar */
  #navbarMenu {
    width: 100%;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 8px 24px rgba(92,15,30,0.1);
    padding: 12px 0 16px;
    max-height: 80vh;
    overflow-y: auto;
  }
  #navbarMenu .navbar-nav {
    gap: 0 !important;
    align-items: stretch !important;
  }
  #navbarMenu .nav-item { width: 100%; }
  #navbarMenu .nav-link {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    border-radius: 0;
    width: 100%;
  }
  #navbarMenu .nav-link::after { display: none !important; }
  #navbarMenu .nav-link:hover {
    background: rgba(139,26,47,0.05);
    padding-left: 26px !important;
  }

  /* CTA button in mobile menu */
  #navbarMenu .nav-cta-btn {
    margin: 10px 20px 0 !important;
    width: calc(100% - 40px) !important;
    border-radius: var(--radius-sm) !important;
    text-align: center;
    padding: 11px 20px !important;
  }

  /* Vendors dropdown — full width accordion on mobile */
  .sg-navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    min-width: 100% !important;
    width: 100%;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid var(--border-light) !important;
    border-radius: 0 !important;
    padding: 8px 20px 12px !important;
    background: var(--bg) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: none;
    transition: none !important;
  }
  .sg-navbar .dropdown-menu.show { display: block !important; }

  /* Stack dropdown columns vertically */
  .sg-navbar .dropdown-menu .row { flex-direction: column; }
  .sg-navbar .dropdown-menu .col-lg-4 {
    border-right: none !important;
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0 !important;
  }
  .sg-navbar .dropdown-menu .col-lg-4:last-child { border-bottom: none; }
  .dropdown-item-custom { white-space: normal !important; padding: 7px 8px !important; }

  /* Grids */
  .wedding-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .wedding-grid .wc-main { grid-row: span 1; }
  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(4, 180px);
  }
  .gallery-item.gi-span2 { grid-column: span 1; }
  .gallery-item.gi-row2  { grid-row: span 1; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE  (≤768px)
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hero */
  .hero-section {
    min-height: 100svh;
    padding-top: 64px;
    align-items: flex-start;
  }
  .hero-content {
    padding: 40px 0 50px !important;
    text-align: center;
  }
  .hero-title { font-size: 2.1rem; }
  .hero-sub-italic { font-size: 1rem; }
  .hero-desc { font-size: 0.9rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.65rem; padding: 5px 13px; }

  /* Search bar — stack vertically */
  .hero-search {
    flex-direction: column;
    gap: 8px !important;
    padding: 12px !important;
  }
  .hero-search .form-select,
  .hero-search .form-control {
    flex: none !important;
    width: 100% !important;
    font-size: 0.88rem !important;
  }
  .hero-search .btn-search {
    width: 100% !important;
    padding: 12px !important;
    font-size: 0.9rem !important;
  }

  /* Stats — 2 per row */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
    margin-top: 32px;
    text-align: center;
  }
  .hero-stat strong { font-size: 1.7rem; }
  .hero-stat span   { font-size: 0.68rem; }

  /* Wedding & gallery grids */
  .wedding-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .wedding-card { height: 210px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  /* Section padding */
  .sg-section    { padding: 60px 0; }
  .sg-section-sm { padding: 44px 0; }
  .section-title { font-size: 1.65rem; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤480px)
══════════════════════════════════════ */
@media (max-width: 480px) {

  /* Navbar */
  .sg-navbar .navbar-brand { font-size: 1.15rem; }

  /* Hero */
  .hero-title { font-size: 1.85rem; line-height: 1.2; }
  .hero-sub-italic { font-size: 0.9rem; }
  .hero-desc { font-size: 0.85rem; }
  .hero-badge { display: none; }

  /* Stats — keep 2 columns but tighter */
  .hero-stats { gap: 14px 20px; margin-top: 24px; }
  .hero-stat strong { font-size: 1.55rem; }

  /* Category grid — 2 columns */
  .row-cols-2 > * { flex: 0 0 50%; max-width: 50%; }

  /* Footer — single column */
  .footer-bottom-links { justify-content: flex-start; gap: 14px; }
  .footer-bottom-text  { font-size: 0.73rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item { height: 180px; }

  /* Vendor CTA */
  .vendor-cta-section .cta-actions { flex-direction: column; }
  .btn-primary-custom,
  .btn-outline-custom,
  .btn-accent-custom { width: 100%; text-align: center; }
}

/* ── User nav avatar ── */
.user-av-nav {
  width:32px; height:32px; border-radius:50%;
  background:var(--primary); color:#fff;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:0.75rem; font-weight:700; flex-shrink:0;
  border:2px solid var(--accent);
}
/* ── User dropdown menu ── */
.user-dropdown-menu {
  min-width:220px !important;
  border:1px solid var(--border) !important;
  border-radius:var(--radius-md) !important;
  box-shadow:var(--shadow-lg) !important;
  padding:8px !important;
  background:var(--bg-white) !important;
  margin-top:8px !important;
}
.user-dd-header {
  display:flex; align-items:center; gap:10px;
  padding:10px 12px 8px;
}
.user-av-lg {
  width:40px; height:40px; border-radius:50%;
  background:var(--primary); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:0.9rem; font-weight:700; flex-shrink:0;
}
.user-dd-name { font-weight:600; font-size:0.84rem; color:var(--text); }
.user-dd-role {
  font-size:0.7rem; color:var(--accent-dk);
  text-transform:uppercase; letter-spacing:1px; font-weight:500;
}
.user-dd-item {
  display:flex; align-items:center; gap:9px;
  padding:9px 12px; border-radius:var(--radius-sm);
  font-size:0.84rem; color:var(--text) !important;
  text-decoration:none; transition:background 0.15s;
}
.user-dd-item i { color:var(--accent-dk); font-size:0.9rem; width:16px; }
.user-dd-item:hover { background:rgba(139,26,47,0.06); color:var(--primary) !important; }
.user-dd-item:hover i { color:var(--primary); }
.user-dd-logout { color:#dc3545 !important; }
.user-dd-logout i { color:#dc3545 !important; }
.user-dd-logout:hover { background:rgba(220,53,69,0.07) !important; }