/* SnapBook - Premium Booking Website Styles */
/* Light theme: white background, black text, orange accents */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');
@import url('mobile.css');
@import url('footer.css');

:root {
  /* SnapBook palette - white, black, orange */
  --bg-dark: #FFFFFF;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --primary-indigo: #000000;
  --gold: #FF8C00;
  --gold-light: #FFA726;
  --gold-dark: #E67E22;
  --gold-border: rgba(255, 140, 0, 0.4);
  --white: #000000;
  --white-muted: #333333;
  --success: #2ecc71;
  --success-hover: #27ae60;
  --primary-blue: #000000;
  --primary-blue-hover: #333333;
  --danger: #e74c3c;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --header-bg: rgba(255, 255, 255, 0.95);
  --sticky-cta-bg: rgba(255, 255, 255, 0.98);
  --text-on-gold: #000000;
}

/* Dark mode override (when user toggles) */
body:not(.light-mode) {
  --bg-dark: #0d0a08;
  --bg-card: #1a1512;
  --bg-card-hover: #231d18;
  --gold: #B8A9E8;
  --gold-light: #C4B5FD;
  --gold-dark: #9B8ED4;
  --gold-border: rgba(184, 169, 232, 0.5);
  --white: #f5f5f5;
  --white-muted: #c8c8c8;
  --primary-indigo: #C4B5FD;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --header-bg: rgba(13, 10, 8, 0.95);
  --sticky-cta-bg: rgba(13, 10, 8, 0.98);
  --text-on-gold: #0d0a08;
}


html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Soft gradient background - SnapBook style */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body:not(.light-mode)::before {
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(184, 169, 232, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(196, 181, 253, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(184, 169, 232, 0.05) 0%, transparent 70%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-border);
  padding: 1rem 2rem;
}


.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  font-size: 1.1rem;
  cursor: pointer;
  margin-right: 1rem;
  transition: var(--transition);
}
.theme-toggle-btn:hover {
  background: var(--gold-border);
  opacity: 0.9;
}

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

.logo {
  display: inline-block;
  width: 210px;
  height: 48px;
  background: url('../assets/snapbook-logo-dark.png') center / contain no-repeat;
  text-decoration: none;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--white-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.header-contact {
  display: none; /* Phone removed from nav bar */
}

.header-contact:hover {
  color: var(--gold-light);
}

.header-contact svg {
  width: 18px;
  height: 18px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(13, 10, 8, 0.9) 0%, rgba(13, 10, 8, 0.7) 100%),
    url('https://images.unsplash.com/photo-1606216794074-2d72d421e7d2?w=1920') center/cover;
}

body.light-mode .hero-bg:not(.hero-bg-npr) {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(245, 245, 245, 0.6) 100%),
    url('https://images.unsplash.com/photo-1606216794074-2d72d421e7d2?w=1920') center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-profile {
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  text-align: left;
  max-width: 1200px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--white-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== HERO NPR PATTERN ========== */
.hero-bg-npr {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.4) 100%),
    url('https://images.unsplash.com/photo-1606216794074-2d72d421e7d2?w=1920') center/cover !important;
}

.hero-content-npr {
  width: 100%;
  max-width: 680px;
}

.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem) !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #fff !important;
  letter-spacing: -0.02em;
}

.hero-services {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.hero-search-bar {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  max-width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #666;
  flex-shrink: 0;
}

.search-input {
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: #333;
  width: 100%;
  outline: none;
}

.search-input::placeholder {
  color: #888;
}

.search-divider {
  width: 1px;
  height: 24px;
  background: #ddd;
  margin: 0 0.5rem;
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border: none;
  background: transparent;
  color: #555;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}

.location-btn:hover {
  color: #e74c3c;
}

.location-icon {
  width: 18px;
  height: 18px;
  color: #e74c3c;
}

.profile-btn {
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: #555;
  cursor: pointer;
  border-radius: 8px;
}

.profile-btn:hover {
  background: rgba(0,0,0,0.05);
}

.profile-btn svg {
  width: 22px;
  height: 22px;
}

.hero-buttons-npr {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-instant-booking {
  background: linear-gradient(135deg, #C4B5FD 0%, #9B8ED4 100%) !important;
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-instant-booking:hover {
  background: linear-gradient(135deg, #9B8ED4 0%, #7C6BC7 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245,124,0,0.4);
}

.btn-browse-creators {
  background: #e8e8e8 !important;
  color: #333 !important;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid #ccc !important;
  transition: all 0.2s;
}

.btn-browse-creators:hover {
  background: #ddd !important;
  border-color: #bbb !important;
  transform: translateY(-2px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.proof-icon {
  width: 18px;
  height: 18px;
}

.proof-icon.star {
  color: #ffd700;
}

.proof-icon.heart {
  color: #ffd700;
}

.proof-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .hero-search-bar {
    flex-wrap: wrap;
  }
  .search-input-wrap {
    flex: 1 1 100%;
    order: 1;
  }
  .hero-search-bar .search-divider:first-of-type {
    display: none;
  }
  .location-btn {
    order: 2;
  }
  .hero-search-bar .search-divider:last-of-type {
    order: 3;
    margin: 0 0.5rem;
  }
  .profile-btn {
    order: 4;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--success);
  color: white;
}

.btn-primary:hover {
  background: var(--success-hover);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #FF8C00 0%, #E67E22 100%);
  color: #000000;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FFA726 0%, #FF8C00 100%);
  transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
  border-color: #FF8C00;
  background: rgba(255, 140, 0, 0.1);
}
.btn-icon {
  width: 18px;
  height: 18px;
  vertical-align: -0.25em;
  margin-right: 0.35rem;
}

/* ========== HERO NPR PATTERN ========== */
.hero-bg-npr {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 50%, rgba(20,15,10,0.85) 100%),
    url('https://images.unsplash.com/photo-1606216794074-2d72d421e7d2?w=1920') center left/cover,
    url('https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?w=1920') center right/cover !important;
  background-blend-mode: overlay;
}

.hero-content-npr {
  max-width: 700px;
}

.hero-headline {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem) !important;
  font-weight: 700;
  color: var(--white) !important;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-services {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero-services::before { content: none; }

/* Search bar */
.hero-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #666;
  flex-shrink: 0;
  margin-right: 0.75rem;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: #333;
  outline: none;
}

.search-input::placeholder {
  color: #888;
}

.search-divider {
  width: 1px;
  height: 24px;
  background: #ddd;
  margin: 0 0.75rem;
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #555;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.5rem;
}

.location-btn:hover { color: #e74c3c; }

.location-icon {
  width: 18px;
  height: 18px;
  color: #e74c3c;
}

.profile-btn {
  background: #333;
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.profile-btn svg { width: 22px; height: 22px; }

.hero-buttons-npr {
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-instant-booking {
  background: #e67e22 !important;
  color: white !important;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
}

.btn-instant-booking:hover {
  background: #d35400 !important;
  transform: translateY(-2px);
}

.btn-browse-creators {
  background: #ecf0f1 !important;
  color: #2c3e50 !important;
  border: 1px solid #bdc3c7 !important;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
}

.btn-browse-creators:hover {
  background: #dfe6e9 !important;
  border-color: #95a5a6 !important;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
}

.proof-icon {
  width: 20px;
  height: 20px;
}

.proof-icon.star { color: #f1c40f; }

.proof-icon.heart { color: #f1c40f; }

.proof-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.4);
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.section-title .decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.section-title .line {
  width: 80px;
  height: 2px;
  background: var(--gold);
}

.section-title p {
  color: var(--white-muted);
  font-size: 1.1rem;
}

/* ========== CARDS ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

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

.card-link {
  text-decoration: none;
  color: inherit;
}

.card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

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

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--white-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Add-on & Post Work service cards (2x2 grid, clean layout) */
.addon-postwork-section {
  margin-bottom: 2rem;
}
.addon-postwork-section h4 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.addon-postwork-section .section-desc {
  color: var(--white-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.addon-service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 640px) {
  .addon-service-cards {
    grid-template-columns: 1fr;
  }
}
.addon-service-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
}
.addon-service-card:hover {
  border-color: var(--gold);
}
.addon-service-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.addon-service-card .card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.15);
  border-radius: var(--radius);
  font-size: 1.25rem;
}
.addon-service-card .card-title {
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
}
.addon-service-card .card-price {
  color: var(--gold);
  font-size: 0.95rem;
  margin: 0;
}
.addon-service-card .card-select {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.addon-service-card .card-select label {
  color: var(--white-muted);
  font-size: 0.9rem;
}
.addon-service-card select.form-control {
  width: auto;
  min-width: 100px;
}
.events-selected-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.events-selected-card .card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.15);
  border-radius: var(--radius);
  font-size: 1.25rem;
}
.events-selected-card .events-list {
  color: var(--white-muted);
  font-size: 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.events-selected-card .events-list li::before {
  content: "• ";
  color: var(--gold);
}

/* ========== SERVICE SECTION (Home - Screenshot Style) ========== */
.service-section {
  max-width: 1200px;
  margin: 0 auto;
}

.service-section-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .service-section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-section-grid {
    grid-template-columns: 1fr;
  }
}

.service-section-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.service-section-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-section-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-section-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-section-card:hover .service-section-card-image img {
  transform: scale(1.05);
}

.service-section-card-content {
  padding: 1.25rem;
}

.service-section-card-content h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.btn-view-all {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.service-section-card:hover .btn-view-all {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.service-section-footer {
  text-align: center;
}

.service-section-footer .btn-gold {
  padding: 0.75rem 2rem;
}

/* ========== SERVICE CARDS (Quick Book) ========== */
.service-cards {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-dark);
}

.service-cards::-webkit-scrollbar {
  height: 6px;
}

.service-cards::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

.service-cards::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.service-card {
  flex: 0 0 280px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.service-card-content {
  padding: 1.25rem;
}

.service-card-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.service-card-content .price {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ========== VENDOR PROFILE HERO (Split: Details Left, Image Right) ========== */
.vendor-profile-hero {
  padding: 7rem 2rem 3rem;
  min-height: 420px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.vendor-profile-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: var(--profile-bg, linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%));
  background-position: center;
  background-size: cover;
  opacity: 0.4;
}
.vendor-profile-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 320px;
}
.vendor-profile-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vendor-profile-back {
  color: var(--white-muted);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.vendor-profile-back:hover {
  color: var(--gold);
}
.vendor-profile-details h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}
.vendor-profile-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--white);
}
.vendor-profile-rating .stars {
  color: var(--gold);
  letter-spacing: 0.1em;
}
.vendor-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--white-muted);
}
.vendor-profile-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.vendor-profile-meta svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.vendor-profile-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.vendor-profile-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.vendor-profile-image img {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}
@media (max-width: 900px) {
  .vendor-profile-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vendor-profile-hero::before {
    width: 100%;
    height: 45%;
    top: auto;
    bottom: 0;
    opacity: 0.25;
  }
  .vendor-profile-details {
    align-items: center;
  }
  .vendor-profile-back {
    align-self: flex-start;
  }
  .vendor-profile-meta {
    justify-content: center;
  }
  .vendor-profile-cta {
    justify-content: center;
  }
  .vendor-profile-image {
    order: -1;
  }
  .vendor-profile-image img {
    max-height: 280px;
  }
}

/* ========== PROFILE CARDS ========== */
.profile-card {
  text-align: center;
}

.profile-card .card-image {
  aspect-ratio: 1;
}

.profile-card .card-image img {
  object-fit: cover;
}

.profile-card .card-content {
  padding: 1.5rem;
}

.profile-card .experience {
  color: var(--white-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.profile-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.how-step {
  text-align: center;
  padding: 1.5rem;
}

.how-step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}

.how-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.how-step p {
  color: var(--white-muted);
  font-size: 0.9rem;
}

/* ========== BOOKING FLOW BANNER ========== */
.booking-flow {
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  padding: 3rem 2rem;
}

.booking-flow-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-muted);
  font-size: 0.95rem;
}

.flow-step .number {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.flow-arrow {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ========== FOOTER (legacy - new footer in footer.css) ========== */
.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.footer-feature h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.footer-feature p {
  color: var(--white-muted);
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

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

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

.footer-social {
  display: flex;
  gap: 1rem;
}

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

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

/* ========== PAGE PROGRESS ========== */
.page-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
  color: var(--white-muted);
  font-size: 0.9rem;
}

.page-progress .current {
  color: var(--gold);
  font-weight: 600;
}

/* ========== STEP INDICATOR ========== */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.step-circle {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white-muted);
}

.step-circle.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
}

.step-circle.completed {
  background: rgba(201, 162, 39, 0.3);
  border-color: var(--gold);
  color: var(--gold);
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--gold-border);
}

/* Events three-column layout (Bride | Groom | Common) */
.events-three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.events-three-columns.two-cols { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 768px) {
  .events-three-columns { grid-template-columns: 1fr; }
  .events-three-columns.two-cols { grid-template-columns: 1fr; }
}
.event-column {
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
}
.event-column-hidden { display: none !important; }
.event-column[hidden],
.event-column.multiday-hidden {
  display: none !important;
}

/* Event Services hero (image + inclusions) */
.event-services-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .event-services-hero { grid-template-columns: 1fr; }
}
.event-services-image { border-radius: var(--radius-lg); overflow: hidden; }
.event-services-inclusions { padding: 0.5rem 0; }

/* ========== FORM ELEMENTS ========== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--white-muted);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-control::placeholder {
  color: var(--white-muted);
  opacity: 0.7;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a227' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ========== CHECKBOX & RADIO ========== */
.checkbox-item, .radio-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.checkbox-item:hover, .radio-item:hover {
  border-color: var(--gold);
}

.checkbox-item.selected, .radio-item.selected {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.checkbox-item input, .radio-item input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-item .price, .radio-item .price {
  margin-left: auto;
  color: var(--gold);
  font-weight: 600;
}

/* ========== PRICE SUMMARY SIDEBAR ========== */
.price-summary {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

.price-summary h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold-border);
}

.price-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.price-summary-row.total {
  border-top: 1px solid var(--gold-border);
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.price-summary .discount {
  color: var(--success);
  font-size: 0.9rem;
}

/* ========== CALENDAR MODAL ========== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  max-width: 450px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.25rem;
}

.modal-close {
  background: none;
  border: none;
  color: var(--white-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: var(--transition);
}

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

.modal-body {
  padding: 1.5rem;
}

.calendar {
  width: 100%;
  border-collapse: collapse;
}

.calendar th, .calendar td {
  padding: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.calendar th {
  color: var(--white-muted);
  font-weight: 500;
}

.calendar td {
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}

.calendar td.available:hover {
  background: rgba(46, 204, 113, 0.2);
}

.calendar td.booked {
  color: var(--white-muted);
  opacity: 0.5;
  cursor: not-allowed;
}

.calendar td.limited {
  background: rgba(230, 126, 34, 0.2);
}

.calendar td.selected {
  background: var(--gold);
  color: var(--bg-dark);
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-nav button {
  background: var(--bg-dark);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.calendar-nav button:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.availability-legend {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--white-muted);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot.available { background: var(--success); }
.legend-dot.booked { background: var(--danger); }
.legend-dot.limited { background: #e67e22; }

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gold-border);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Model 2 - Event Type Options */
.event-type-options .radio-item {
  cursor: pointer;
}

/* Model 2 - Payment Structure (20/50/30) */
.payment-structure-model2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}

.payment-option .payment-percent {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
  min-width: 50px;
}

.payment-option .price {
  margin-left: auto;
  font-weight: 600;
  color: var(--gold);
}

/* ========== TWO COLUMN LAYOUT ========== */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .two-column-layout {
    grid-template-columns: 1fr;
  }
  
  .price-summary {
    position: static;
  }
}

/* ========== PACKAGE CARDS ========== */
.package-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.package-card .btn {
  margin-top: auto;
  align-self: stretch;
}

.package-card:hover {
  border-color: var(--gold);
}

.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
}

.package-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.package-title-row h4 {
  margin: 0;
  font-size: 1.25rem;
}

.package-dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.package-card h4 {
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.package-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.package-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gold-border);
  font-size: 0.95rem;
  color: var(--white-muted);
}

.package-features li:last-child {
  border-bottom: none;
}

/* ========== EVENT CARDS ========== */
.event-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.event-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 4/5;
}

.event-card:hover,
.event-card.selected {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.event-card.selected::after {
  content: '✓';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.event-card-image {
  position: absolute;
  inset: 0;
}

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

.event-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.event-card-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.event-card-overlay p {
  font-size: 0.9rem;
  color: var(--white-muted);
}

/* ========== ADD-ONS LIST ========== */
.addons-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.addon-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  box-sizing: border-box;
}

.addon-item:hover {
  border-color: var(--gold);
}

.addon-item input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
  cursor: pointer;
}

.addon-item span:first-of-type {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  line-height: 1.35;
}

.addon-item .price {
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}

.addon-item input[type="number"] {
  flex-shrink: 0;
  width: 52px;
  max-width: 64px;
}

/* ========== STICKY CTA ========== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sticky-cta-bg);
  border-top: 1px solid var(--gold-border);
  padding: 1rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .how-it-works {
    grid-template-columns: 1fr 1fr;
  }
  
  .booking-flow-inner {
    flex-direction: column;
  }
  
  .event-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .package-cards {
    grid-template-columns: 1fr;
  }
  
  .hero-profile {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .platform-assurances {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .addons-list {
    gap: 0.5rem;
  }

  .addon-item {
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
  }

  .addon-item input[type="checkbox"] {
    flex-shrink: 0;
  }

  .addon-item span:first-of-type {
    font-size: 0.88rem;
  }

  .addon-item .price {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .how-it-works {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }

  .addon-item {
    padding: 0.55rem 0.65rem;
    gap: 0.45rem;
  }

  .addon-item span:first-of-type {
    font-size: 0.82rem;
  }

  .addon-item .price {
    font-size: 0.82rem;
  }
}

/* Multiday layout */
.multiday-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 400px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1200px) {
  .multiday-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== HERO NPR PATTERN (Home Page) ========== */
.hero-bg-npr {
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.6) 100%),
    url('https://images.unsplash.com/photo-1606216794074-2d72d421e7d2?w=1920') center/cover !important;
}

.hero-content-npr {
  width: 100%;
  max-width: 700px;
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #fff !important;
}

.hero-services {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  max-width: 100%;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  padding: 0.9rem 1.25rem;
  min-width: 0;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #666;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  background: transparent;
  color: #333;
}

.search-input::placeholder {
  color: #999;
}

.search-divider {
  width: 1px;
  height: 24px;
  background: #ddd;
}

.location-btn, .profile-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: #555;
  transition: background 0.2s;
}

.location-btn:hover, .profile-btn:hover {
  background: #f5f5f5;
}

.location-icon {
  width: 18px;
  height: 18px;
  color: #e74c3c;
}

.profile-btn svg {
  width: 22px;
  height: 22px;
}

.hero-buttons-npr {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-instant-booking {
  background: #e67e22 !important;
  color: #fff !important;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-instant-booking:hover {
  background: #d35400 !important;
  transform: translateY(-2px);
}

.btn-browse-creators {
  background: #e8e8e8 !important;
  color: #333 !important;
  border: 1px solid #ccc !important;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-browse-creators:hover {
  background: #ddd !important;
  transform: translateY(-2px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
}

.proof-icon {
  width: 20px;
  height: 20px;
  color: #ffd700;
}

.proof-icon.heart {
  color: #ffd700;
}

.proof-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .hero-search-bar {
    flex-direction: column;
  }
  .search-divider {
    width: 100%;
    height: 1px;
  }
  .search-input-wrap {
    border-bottom: 1px solid #eee;
  }
}

/* ========== HERO NPR PATTERN (Home Page) ========== */
.hero-bg-npr {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.5) 50%, rgba(20,15,10,0.7) 100%),
    url('https://images.unsplash.com/photo-1606216794074-2d72d421e7d2?w=1920') center/cover !important;
}

.hero-content-npr {
  max-width: 700px;
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--white) !important;
}

.hero-services {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-services::before,
.hero-services::after { content: none; }

.hero-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 0 1rem;
  margin-bottom: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #666;
  flex-shrink: 0;
}

.search-input {
  border: none;
  background: none;
  font-size: 0.95rem;
  color: #333;
  flex: 1;
  min-width: 0;
}

.search-input::placeholder {
  color: #999;
}

.search-divider {
  width: 1px;
  height: 24px;
  background: #ddd;
}

.location-btn,
.profile-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: #555;
  transition: opacity 0.2s;
}

.location-btn:hover,
.profile-btn:hover {
  opacity: 0.8;
}

.location-icon {
  width: 18px;
  height: 18px;
  color: #e74c3c;
}

.profile-btn svg {
  width: 22px;
  height: 22px;
  color: #555;
}

.hero-buttons-npr {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-instant-booking {
  background: #e67e22 !important;
  color: white !important;
  padding: 1rem 2rem !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
}

.btn-instant-booking:hover {
  background: #d35400 !important;
  transform: translateY(-2px);
}

.btn-browse-creators {
  background: rgba(255,255,255,0.9) !important;
  color: #333 !important;
  border: 1px solid #ccc !important;
  padding: 1rem 2rem !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
}

.btn-browse-creators:hover {
  background: white !important;
  border-color: #999 !important;
  transform: translateY(-2px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.95);
}

.proof-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.proof-icon.star {
  color: #ffd700;
}

.proof-icon.heart {
  color: #ffd700;
}

.proof-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .hero-search-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .search-divider { display: none; }
  .search-input-wrap { border-bottom: 1px solid #eee; }
  .location-btn, .profile-btn { justify-content: center; }
}

/* ========== HERO NPR PATTERN (Home Page) ========== */
.hero-bg-npr {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.5) 50%, rgba(20,15,10,0.7) 100%),
    url('https://images.unsplash.com/photo-1606216794074-2d72d421e7d2?w=1920') center/cover !important;
}

.hero-content-npr {
  width: 100%;
  max-width: 700px;
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white) !important;
}

.hero-services {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero-services .dot {
  color: rgba(255,255,255,0.5);
  margin: 0 0.5rem;
}

.hero-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.search-icon {
  width: 22px;
  height: 22px;
  color: #888;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: #333;
  outline: none;
}

.search-input::placeholder {
  color: #999;
}

.search-divider {
  width: 1px;
  height: 24px;
  background: #ddd;
  margin: 0 0.5rem;
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}

.location-btn:hover {
  color: #e74c3c;
}

.location-icon {
  width: 18px;
  height: 18px;
  color: #e74c3c;
}

.profile-btn {
  background: #2d2d2d;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}

.profile-btn:hover {
  background: #444;
}

.profile-btn svg {
  width: 22px;
  height: 22px;
  color: white;
}

.hero-buttons-npr {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-instant-booking {
  background: #e67e22 !important;
  color: white !important;
  padding: 1rem 2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
}

.btn-instant-booking:hover {
  background: #d35400 !important;
  transform: translateY(-2px);
}

.btn-browse-creators {
  background: rgba(255,255,255,0.9) !important;
  color: #333 !important;
  border: 1px solid #ccc !important;
  padding: 1rem 2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
}

.btn-browse-creators:hover {
  background: white !important;
  border-color: #aaa !important;
  transform: translateY(-2px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.proof-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.proof-icon.star {
  color: #ffd700;
}

.proof-icon.heart {
  color: #ffd700;
}

.proof-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .hero-search-bar {
    flex-direction: column;
    border-radius: 16px;
  }
  .search-divider {
    width: 100%;
    height: 1px;
    margin: 0.25rem 0;
  }
  .hero-buttons-npr {
    flex-direction: column;
  }
  .hero-buttons-npr .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== HERO NPR PATTERN (Home) ========== */
.hero-bg-npr {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.6) 100%),
    url('https://images.unsplash.com/photo-1606216794074-2d72d421e7d2?w=1920') center/cover !important;
}

.hero-content-npr {
  width: 100%;
  max-width: 700px;
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #fff !important;
  letter-spacing: -0.02em;
}

.hero-services {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.hero-search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #999;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #333;
  background: transparent;
}

.search-input::placeholder {
  color: #999;
}

.search-divider {
  width: 1px;
  height: 24px;
  background: #ddd;
  margin: 0 0.5rem;
}

.location-btn,
.profile-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  color: #555;
  transition: color 0.2s;
}

.location-btn:hover,
.profile-btn:hover {
  color: #e74c3c;
}

.location-icon {
  width: 18px;
  height: 18px;
  color: #e74c3c;
}

.profile-btn svg {
  width: 22px;
  height: 22px;
  color: #555;
}

.hero-buttons-npr {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-instant-booking {
  background: #e67e22 !important;
  color: white !important;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
}

.btn-instant-booking:hover {
  background: #d35400 !important;
  transform: translateY(-2px);
}

.btn-browse-creators {
  background: #f0f0f0 !important;
  color: #333 !important;
  border: 1px solid #ccc !important;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
}

.btn-browse-creators:hover {
  background: #e5e5e5 !important;
  border-color: #999 !important;
  transform: translateY(-2px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.proof-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.proof-icon.star {
  color: #ffd700;
}

.proof-icon.heart {
  color: #ffd700;
}

.proof-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .hero-search-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .search-divider {
    display: none;
  }
  .location-btn, .profile-btn {
    justify-content: center;
    padding: 0.75rem;
  }
  .hero-buttons-npr {
    flex-direction: column;
  }
  .btn-instant-booking, .btn-browse-creators {
    width: 100%;
    justify-content: center;
  }
}

/* ========== HERO NPR PATTERN (Home Page) ========== */
.hero-bg-npr {
  background: 
    linear-gradient(180deg, rgba(13, 10, 8, 0.85) 0%, rgba(13, 10, 8, 0.75) 50%, rgba(20, 15, 10, 0.9) 100%),
    url('https://images.unsplash.com/photo-1606216794074-2d72d421e7d2?w=1920') center/cover !important;
}

body.light-mode .hero-bg-npr {
  background: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(245, 245, 245, 0.7) 100%),
    url('https://images.unsplash.com/photo-1606216794074-2d72d421e7d2?w=1920') center/cover !important;
}

body.light-mode .hero-headline,
body.light-mode .hero h1 {
  color: #1a1a1a !important;
}

body.light-mode .hero-services,
body.light-mode .hero-subtitle {
  color: #444 !important;
}

.hero-content-npr {
  width: 100%;
  max-width: 700px;
}

.hero-headline {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem) !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white) !important;
}

.hero-services {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.hero-services::before,
.hero-services::after {
  display: none;
}

.hero-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #888;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  color: #333;
  min-width: 0;
}

.search-input::placeholder {
  color: #999;
}

.search-divider {
  width: 1px;
  height: 24px;
  background: rgba(0, 0, 0, 0.15);
  margin: 0 0.5rem;
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: none;
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
}

.location-btn:hover {
  color: #333;
}

.location-icon {
  width: 18px;
  height: 18px;
  color: #e74c3c;
  flex-shrink: 0;
}

.profile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e0e0e0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}

.profile-btn svg {
  width: 22px;
  height: 22px;
  color: #555;
}

.profile-btn:hover {
  background: #d0d0d0;
}

.hero-buttons-npr {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-instant-booking {
  background: #e67e22 !important;
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}

.btn-instant-booking:hover {
  background: #d35400 !important;
  transform: translateY(-2px);
}

.btn-browse-creators {
  background: #e8e8e8 !important;
  color: #333 !important;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid #ccc;
}

.btn-browse-creators:hover {
  background: #ddd !important;
  border-color: #999;
  transform: translateY(-2px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}

.proof-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.proof-icon.star {
  color: #ffd700;
}

.proof-icon.heart {
  color: #ffd700;
}

.proof-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  .hero-search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  
  .search-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  
  .location-btn,
  .profile-btn {
    justify-content: center;
  }
}
