/* ==========================================================================
   SAI ASTROLOGY & PALMIST - GAURAV GURUJI
   Premium Vedic Astrology & Palmistry Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-main: #0B0E17;
  --bg-surface: #121826;
  --bg-card: #182032;
  --bg-card-hover: #1E283F;
  --bg-glass: rgba(18, 24, 38, 0.85);
  
  --gold-primary: #E5A93C;
  --gold-light: #F7D070;
  --gold-dark: #B37D1E;
  --gold-glow: rgba(229, 169, 60, 0.25);
  
  --crimson-sacred: #B91C1C;
  --saffron-sacred: #EA580C;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #20BA5A;
  --call-blue: #0284C7;
  --call-blue-hover: #0369A1;

  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  --border-subtle: rgba(229, 169, 60, 0.18);
  --border-strong: rgba(229, 169, 60, 0.45);
  
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 10px 30px rgba(229, 169, 60, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(229, 169, 60, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(185, 28, 28, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(229, 169, 60, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #182032 0%, #1c263d 50%, #182032 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

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

.gold-badge {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #0B0E17;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: rgba(11, 14, 23, 0.96);
}

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
  background: #000;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition);
  border-radius: var(--radius-full);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(2, 132, 199, 0.4);
  color: #38BDF8;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-header-call:hover {
  background: var(--call-blue);
  color: #fff;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp-green);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-header-wa:hover {
  background: var(--whatsapp-green-hover);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(229, 169, 60, 0.08);
  border: 1px solid var(--border-subtle);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: var(--transition);
}

.mobile-menu-toggle:hover, .mobile-menu-toggle:focus-visible {
  background: rgba(229, 169, 60, 0.18);
  border-color: var(--gold-primary);
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 7, 13, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   BUTTONS & UI CONTROLS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 60%, var(--gold-dark) 100%);
  color: #0B0E17;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(229, 169, 60, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 169, 60, 0.5);
}

.btn-outline-gold {
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-light);
  background: rgba(229, 169, 60, 0.08);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #0B0E17;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 169, 60, 0.3);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-call {
  background: var(--call-blue);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
}

.btn-call:hover {
  background: var(--call-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 169, 60, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(40px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 169, 60, 0.1);
  border: 1px solid var(--border-strong);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-title .gold-accent {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(229, 169, 60, 0.3);
}

.hero-astrologer-tag {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #F8FAFC;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-astrologer-tag span {
  color: var(--gold-primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 580px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 35px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-box h4 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.hero-stat-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-media-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 2px solid var(--border-strong);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.hero-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-card-frame:hover .hero-image {
  transform: scale(1.03);
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 14, 23, 0.95) 80%);
  padding: 30px 24px 20px;
  text-align: center;
}

.hero-overlay-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.hero-overlay-sub {
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.hero-floating-badge {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--bg-surface);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero-floating-badge .badge-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
}

.hero-floating-badge .badge-text h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.hero-floating-badge .badge-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section {
  padding: 85px 0;
  position: relative;
}

.section-bg-alt {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.title-ornament::before, .title-ornament::after {
  content: '';
  width: 45px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.5;
}

.title-ornament-symbol {
  color: var(--gold-light);
  font-size: 1rem;
}

/* ==========================================================================
   SERVICE CARDS (GRID & CARD DESIGN)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}

.service-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #000;
}

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

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

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 14, 23, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-strong);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.service-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0 16px;
  border-top: 1px dashed rgba(229, 169, 60, 0.25);
  margin-bottom: 16px;
}

.price-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.service-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-buy-now {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 70%, var(--gold-dark) 100%);
  color: #0B0E17;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(229, 169, 60, 0.25);
  transition: var(--transition);
}

.btn-buy-now:hover {
  box-shadow: 0 6px 20px rgba(229, 169, 60, 0.45);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.service-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-card-call {
  background: rgba(2, 132, 199, 0.12);
  border: 1px solid rgba(2, 132, 199, 0.35);
  color: #38BDF8;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-card-call:hover {
  background: var(--call-blue);
  color: #fff;
  border-color: var(--call-blue);
}

.btn-card-wa {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #4ADE80;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-card-wa:hover {
  background: var(--whatsapp-green);
  color: #fff;
  border-color: var(--whatsapp-green);
}

/* Filter controls for services page */
.services-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-primary);
  color: #0B0E17;
  border-color: var(--gold-primary);
  font-weight: 600;
}

/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================================================== */
.about-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 50px;
}

.about-photo-wrapper {
  position: relative;
  text-align: center;
}

.about-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), var(--shadow-gold);
  background: #000;
}

.about-photo-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.about-badge-gold {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #0B0E17;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.about-content-block h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.about-subtitle-gold {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

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

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.value-icon {
  font-size: 1.4rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.value-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.value-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   REVIEWS / TESTIMONIALS
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}

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

.review-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-quote {
  font-size: 0.95rem;
  color: #E2E8F0;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--saffron-sacred));
  color: #0B0E17;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.review-author-info h5 {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
}

.review-author-info p {
  font-size: 0.78rem;
  color: var(--gold-light);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-heading {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.contact-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-links-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-row-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(11, 14, 23, 0.6);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.contact-row-item:hover {
  border-color: var(--gold-primary);
  background: rgba(229, 169, 60, 0.05);
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-icon-box.gold {
  background: rgba(229, 169, 60, 0.15);
  color: var(--gold-light);
}

.contact-icon-box.green {
  background: rgba(37, 211, 102, 0.15);
  color: #4ADE80;
}

.contact-icon-box.blue {
  background: rgba(2, 132, 199, 0.15);
  color: #38BDF8;
}

.contact-details h6 {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details a, .contact-details p {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

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

.contact-action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(229, 169, 60, 0.2);
}

/* ==========================================================================
   MODALS (CALL SELECTION & QUICK ACTIONS)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--shadow-gold);
  position: relative;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px;
}

.modal-close-btn:hover {
  color: #fff;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-phone-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-choice-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.phone-choice-btn:hover {
  border-color: var(--call-blue);
  background: rgba(2, 132, 199, 0.15);
  transform: translateX(4px);
}

.phone-choice-btn .choice-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (MOBILE OPTIMIZED)
   ========================================================================== */
.floating-contact-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 990;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  color: #fff;
  font-size: 1.4rem;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

.float-btn.float-wa {
  background: var(--whatsapp-green);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.float-btn.float-call {
  background: var(--call-blue);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #07090F;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 25px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 45px;
}

.footer-brand h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.footer-brand h5 {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
  display: inline-block;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.82rem;
}

.footer-bottom-copy {
  color: var(--text-dim);
}

.footer-bottom-badges {
  display: flex;
  gap: 15px;
  color: var(--text-muted);
}

/* ==========================================================================
   MOBILE DRAWER ENHANCEMENTS
   ========================================================================== */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 310px;
  max-width: 85vw;
  height: 100vh;
  background: #0E1422;
  border-left: 1.5px solid var(--border-strong);
  padding: 24px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1050;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.7);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 4px;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-drawer-logo {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-primary);
  object-fit: cover;
}

.mobile-drawer-titles h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-light);
  line-height: 1.1;
}

.mobile-drawer-titles p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.mobile-drawer-close:hover {
  background: rgba(229, 169, 60, 0.15);
  color: var(--gold-light);
  border-color: var(--gold-primary);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(229, 169, 60, 0.12);
  color: var(--gold-light);
  padding-left: 18px;
}

.mobile-nav-link .link-arrow {
  color: var(--gold-primary);
  opacity: 0.6;
  font-size: 0.85rem;
}

.drawer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 0;
}

.mobile-drawer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-drawer-contact-info a {
  color: #fff;
  font-weight: 500;
}

.mobile-drawer-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   INTERACTIVE HOROSCOPE FEATURE (VEDIC RASHIFAL)
   ========================================================================== */
.horoscope-section {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(24, 32, 50, 0.9) 0%, rgba(11, 14, 23, 0.98) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.horoscope-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

/* 12 Zodiac Sign Selection Grid */
.horoscope-signs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.horoscope-sign-btn {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.horoscope-sign-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: var(--transition);
}

.horoscope-sign-btn:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.horoscope-sign-btn.active {
  background: linear-gradient(180deg, rgba(229, 169, 60, 0.15) 0%, var(--bg-card) 100%);
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(229, 169, 60, 0.25);
}

.horoscope-sign-btn.active::before {
  background: linear-gradient(90deg, var(--gold-light), var(--gold-primary));
}

.sign-glyph {
  font-size: 1.85rem;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--gold-light);
  transition: var(--transition);
}

.horoscope-sign-btn.active .sign-glyph {
  transform: scale(1.15);
  color: #fff;
  text-shadow: 0 0 10px rgba(229, 169, 60, 0.8);
}

.sign-name-en {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.sign-name-hi {
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-top: 2px;
  font-weight: 500;
}

.sign-dates-sub {
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 3px;
  white-space: nowrap;
}

/* Timeframe Selection Tabs (Daily / Weekly / Monthly) */
.horoscope-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.horoscope-tabs {
  display: inline-flex;
  background: rgba(18, 24, 38, 0.8);
  border: 1px solid var(--border-strong);
  padding: 5px;
  border-radius: var(--radius-full);
  gap: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.horoscope-tab-btn {
  padding: 9px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.horoscope-tab-btn:hover {
  color: #fff;
}

.horoscope-tab-btn.active {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 80%);
  color: #0B0E17;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(229, 169, 60, 0.35);
}

/* Active Horoscope Display Card */
.horoscope-result-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--shadow-gold);
}

.horoscope-card-ambient {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 169, 60, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  filter: blur(50px);
}

/* Sign Header Banner inside Card */
.horoscope-header-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 28px;
}

.horoscope-banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.horoscope-large-glyph {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(229, 169, 60, 0.2), rgba(18, 24, 38, 0.9));
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: var(--gold-light);
  box-shadow: 0 0 20px var(--gold-glow);
  flex-shrink: 0;
}

.horoscope-banner-title h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #fff;
  line-height: 1.2;
}

.horoscope-banner-title h3 span {
  color: var(--gold-light);
}

.horoscope-banner-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.horoscope-meta-tag {
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.horoscope-time-badge {
  background: rgba(229, 169, 60, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Cosmic Overview Paragraph */
.horoscope-overview-box {
  background: rgba(18, 24, 38, 0.6);
  border-left: 3px solid var(--gold-primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 28px;
}

.horoscope-overview-box h5 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  margin-bottom: 6px;
  font-weight: 700;
}

.horoscope-overview-text {
  font-size: 1.02rem;
  color: #F1F5F9;
  line-height: 1.7;
}

/* 3 Key Life Aspect Cards (Love, Career, Health) */
.horoscope-aspects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.horoscope-aspect-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.horoscope-aspect-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.aspect-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.aspect-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aspect-icon {
  font-size: 1.25rem;
}

.aspect-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.aspect-rating-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: rgba(229, 169, 60, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(229, 169, 60, 0.3);
}

.aspect-score-bar-bg {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}

.aspect-score-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  transition: width 0.6s ease;
}

.aspect-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

/* Cosmic Highlights Bar (Lucky #, Color, Shubh Muhurat, Upay) */
.horoscope-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.horoscope-metric-item {
  background: rgba(11, 14, 23, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}

.metric-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.metric-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.3;
}

.horoscope-upay-box {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, rgba(229, 169, 60, 0.1) 0%, rgba(18, 24, 38, 0.7) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.upay-icon {
  font-size: 1.6rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.upay-text h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.upay-text p {
  font-size: 0.92rem;
  color: #fff;
  line-height: 1.5;
}

/* Personalized Kundli CTA inside Horoscope */
.horoscope-consult-cta {
  background: linear-gradient(135deg, rgba(24, 32, 50, 0.95) 0%, rgba(18, 24, 38, 0.95) 100%);
  border: 1.5px dashed var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.horoscope-cta-text h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 4px;
}

.horoscope-cta-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 580px;
}

.horoscope-cta-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Astrological Legal & Vedic Disclaimer Box */
.horoscope-disclaimer-box {
  background: rgba(11, 14, 23, 0.8);
  border: 1px solid rgba(229, 169, 60, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.disclaimer-icon {
  font-size: 1.1rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Home Horoscope Teaser Card */
.home-teaser-card {
  background: linear-gradient(135deg, rgba(24, 32, 50, 0.95) 0%, rgba(14, 20, 34, 0.98) 100%);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.home-teaser-badge {
  display: inline-block;
  background: rgba(229, 169, 60, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.home-teaser-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.home-teaser-desc {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 24px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.home-teaser-signs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 860px;
  margin: 0 auto 26px;
}

.home-teaser-sign-btn {
  padding: 8px 14px;
  font-size: 0.84rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-teaser-sign-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(229, 169, 60, 0.15);
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* About Page Creed Card */
.creed-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-gold);
}

.creed-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

.creed-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 2px solid var(--gold-primary);
  object-fit: cover;
  flex-shrink: 0;
}

.creed-title-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 4px;
}

.creed-title-wrap p {
  font-size: 0.9rem;
  color: #fff;
}

.creed-quote {
  font-size: 1.05rem;
  color: #E2E8F0;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 24px;
}

.creed-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.creed-author h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
}

.creed-author p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.creed-actions {
  display: flex;
  gap: 10px;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN (FIXES MOBILE ME SEHI NAHI LAGE RAHE)
   Tested across 320px, 360px, 375px, 390px, 430px, 768px, 1024px+
   ========================================================================== */

/* Large Tablets & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid, .about-hero-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-card-frame {
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .horoscope-signs-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .horoscope-aspects-grid {
    grid-template-columns: 1fr;
  }

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

/* Tablets & Mobile Screens (<= 768px) - CORE MOBILE FIXES */
@media (max-width: 768px) {
  /* Strict Viewport & Container Boundary Protection */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .container {
    padding: 0 16px;
  }

  /* Fix Top Announcement Bar on Mobile */
  .top-bar {
    padding: 6px 0;
    font-size: 0.78rem;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
  }

  .top-bar-left {
    display: none; /* Hide lengthy slogan on phone to keep top bar tight */
  }

  .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    width: 100%;
    font-size: 0.8rem;
  }

  .top-bar-right a {
    white-space: nowrap;
  }

  .top-bar-right span[style*="opacity"] {
    display: inline;
    opacity: 0.4;
  }

  #top-email {
    display: none; /* Email is in footer; phone links take priority on mobile */
  }

  /* Fix Header & Brand on Mobile */
  .site-header {
    background: rgba(11, 14, 23, 0.98);
  }

  .header-inner {
    padding: 8px 0;
    gap: 10px;
  }

  .brand-logo-wrap {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
  }

  .brand-title {
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .brand-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.8px;
    white-space: nowrap;
  }

  .main-nav, .header-actions {
    display: none; /* Replaced with mobile toggle and drawer */
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Fix Hero Section on Mobile */
  .hero-section {
    padding: 24px 0 36px;
  }

  .hero-bg-glow {
    width: 100vw;
    max-width: 100%;
  }

  /* Keep content first, then Guruji's photo, then CTAs */
  .hero-content-col {
    order: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-media-wrap {
    order: 2;
    margin: 14px 0 18px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-badge-row {
    justify-content: center;
    margin-bottom: 10px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 5px 12px;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
    margin-bottom: 8px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-astrologer-tag {
    font-size: 1.12rem;
    justify-content: center;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 auto 16px;
    text-align: center;
  }

  /* Compact Hero Image on Mobile */
  .hero-card-frame {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-md);
  }

  .hero-image {
    height: 270px;
    width: 100%;
    object-fit: cover;
  }

  .hero-image-overlay {
    padding: 14px 12px 10px;
  }

  .hero-overlay-name {
    font-size: 1.12rem;
  }

  .hero-overlay-sub {
    font-size: 0.74rem;
  }

  .hero-floating-badge {
    display: none; /* Avoid awkward overlaps on mobile */
  }

  /* Stats in a neat 3-column row on mobile */
  .hero-highlights {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 10px 4px;
    margin: 16px 0 20px;
    background: rgba(18, 24, 38, 0.5);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-stat-box {
    text-align: center;
    padding: 4px 2px;
  }

  .hero-stat-box h4 {
    font-size: 1.2rem;
  }

  .hero-stat-box p {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  /* Full-width Stacked Hero Action Buttons on Mobile */
  .hero-cta-group {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .hero-cta-group .btn {
    width: 100%;
    min-height: 48px;
    font-size: 0.94rem;
    padding: 12px 16px;
    white-space: normal;
    text-align: center;
  }

  /* Section Spacing & Typography on Mobile */
  .section {
    padding: 40px 0;
  }

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

  .section-title {
    font-size: 1.75rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .section-desc {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }

  /* Fix Services Grid & Cards on Mobile - Strictly 1 Card Per Row */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .service-card {
    width: 100%;
    border-radius: var(--radius-md);
  }

  .service-img-wrap {
    height: 195px;
    width: 100%;
  }

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

  .service-content {
    padding: 18px 16px;
  }

  .service-name {
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 8px;
    word-break: break-word;
  }

  .service-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .service-price-row {
    padding: 10px 0 14px;
    margin-bottom: 14px;
  }

  .service-price {
    font-size: 1.3rem;
  }

  .btn-buy-now {
    width: 100%;
    min-height: 48px;
    font-size: 0.94rem;
    font-weight: 700;
    padding: 12px 14px;
    white-space: normal;
    text-align: center;
  }

  .service-contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .btn-card-call, .btn-card-wa {
    min-height: 42px;
    font-size: 0.82rem;
    padding: 8px 6px;
    white-space: normal;
    text-align: center;
  }

  /* Horizontally Scrollable Category Filters Bar on Mobile */
  .services-filter-bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding: 4px 2px 12px;
    justify-content: flex-start;
    margin-bottom: 22px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .services-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  /* Home Teaser Card Mobile */
  .home-teaser-card {
    padding: 24px 16px;
  }

  .home-teaser-title {
    font-size: 1.5rem;
  }

  .home-teaser-desc {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }

  .home-teaser-signs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 20px;
  }

  .home-teaser-sign-btn {
    padding: 8px 4px;
    font-size: 0.76rem;
    text-align: center;
    white-space: normal;
    word-break: break-word;
  }

  #btn-open-interactive-horoscope {
    width: 100%;
    min-height: 48px;
    font-size: 0.92rem;
    white-space: normal;
    text-align: center;
  }

  /* Horoscope Feature on Mobile */
  .horoscope-signs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }

  .horoscope-sign-btn {
    padding: 10px 4px;
  }

  .sign-glyph {
    font-size: 1.45rem;
    margin-bottom: 4px;
  }

  .sign-name-en {
    font-size: 0.82rem;
  }

  .sign-name-hi {
    font-size: 0.72rem;
  }

  .sign-dates-sub {
    display: none; /* Hide date ranges on small buttons for clean layout */
  }

  .horoscope-tabs {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 4px;
  }

  .horoscope-tab-btn {
    padding: 9px 8px;
    font-size: 0.78rem;
    flex: 1;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  .horoscope-result-card {
    padding: 20px 14px;
  }

  .horoscope-header-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .horoscope-large-glyph {
    width: 50px;
    height: 50px;
    font-size: 1.85rem;
  }

  .horoscope-banner-title h3 {
    font-size: 1.35rem;
  }

  .horoscope-overview-box {
    padding: 14px 14px;
    margin-bottom: 18px;
  }

  .horoscope-overview-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .horoscope-aspects-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .horoscope-aspect-card {
    padding: 14px;
  }

  .horoscope-highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }

  .horoscope-highlight-box {
    padding: 12px 10px;
  }

  .highlight-value {
    font-size: 0.95rem;
  }

  .horoscope-upay-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 12px;
    gap: 8px;
    margin-bottom: 18px;
  }

  .horoscope-consult-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 14px;
    gap: 14px;
  }

  .horoscope-cta-btns {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .horoscope-cta-btns .btn {
    width: 100%;
    min-height: 46px;
    white-space: normal;
    text-align: center;
  }

  .horoscope-disclaimer-box {
    padding: 12px 14px;
    font-size: 0.78rem;
  }

  /* About Page Mobile Layout */
  .about-hero-grid {
    gap: 22px;
  }

  .about-photo-wrapper {
    order: 1;
    margin-bottom: 12px;
    width: 100%;
  }

  .about-content-block {
    order: 2;
    text-align: center;
  }

  .about-content-block h1 {
    font-size: 2rem !important;
  }

  .about-photo-frame {
    max-width: 270px;
    margin: 0 auto;
  }

  .about-photo-img {
    max-height: 290px;
  }

  .about-badge-gold {
    font-size: 0.72rem;
    padding: 6px 12px;
    white-space: normal;
    line-height: 1.3;
    max-width: 90%;
    width: auto;
    bottom: -12px;
    text-align: center;
  }

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

  .value-item {
    padding: 14px;
  }

  /* Creed Card on Mobile */
  .creed-card {
    padding: 22px 16px;
  }

  .creed-header {
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .creed-logo {
    width: 48px;
    height: 48px;
  }

  .creed-title-wrap h3 {
    font-size: 1.2rem;
  }

  .creed-title-wrap p {
    font-size: 0.8rem;
  }

  .creed-quote {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .creed-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .creed-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .creed-actions .btn {
    width: 100%;
    min-height: 44px;
  }

  /* Reviews / Testimonials Mobile */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 18px 16px;
  }

  .review-quote {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  /* Contact Page & Section Mobile */
  .contact-info-card, .contact-form-card {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }

  .contact-heading {
    font-size: 1.4rem;
  }

  .contact-row-item {
    padding: 10px 12px;
    gap: 12px;
    min-height: 48px;
  }

  .contact-icon-box {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .contact-details h6 {
    font-size: 0.72rem;
  }

  .contact-details a, .contact-details p {
    font-size: 0.9rem;
    word-break: break-word;
  }

  .contact-action-buttons {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-action-buttons .btn {
    width: 100%;
    min-height: 48px;
  }

  .form-control {
    font-size: 16px !important; /* Prevents auto-zoom on iOS mobile browsers */
    padding: 11px 14px;
    min-height: 46px;
  }

  #submit-inquiry-btn {
    min-height: 48px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  /* Call Modal on Mobile */
  .modal-overlay {
    padding: 14px;
  }

  .modal-card {
    padding: 22px 16px;
    width: 100%;
    max-width: 380px;
    margin: 0;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .phone-choice-btn {
    padding: 12px 14px;
    font-size: 0.92rem;
    min-height: 50px;
  }

  /* Floating Contact Buttons on Mobile */
  .floating-contact-bar {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: 14px;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  /* Footer on Mobile */
  .site-footer {
    padding: 36px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 26px;
  }

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

  .footer-bottom-badges {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.74rem;
  }
}

/* Medium Phones (<= 480px, e.g. iPhone 14/15/16 Pro Max, Pixel) */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-astrologer-tag {
    font-size: 1.05rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .service-img-wrap {
    height: 185px;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

/* Compact Phones (<= 380px, e.g. iPhone SE, iPhone 8/X, small Androids) */
@media (max-width: 380px) {
  .container {
    padding: 0 12px;
  }

  .brand-logo-wrap {
    width: 36px;
    height: 36px;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    font-size: 0.64rem;
  }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-title {
    font-size: 1.55rem;
  }

  .hero-card-frame {
    max-width: 250px;
  }

  .hero-image {
    height: 240px;
  }

  .hero-highlights {
    gap: 4px;
    padding: 8px 2px;
  }

  .hero-stat-box h4 {
    font-size: 1.08rem;
  }

  .hero-stat-box p {
    font-size: 0.65rem;
  }

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

  .horoscope-signs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .horoscope-sign-btn {
    padding: 8px 2px;
  }

  .sign-name-en {
    font-size: 0.74rem;
  }

  .sign-name-hi {
    font-size: 0.66rem;
  }

  .sign-glyph {
    font-size: 1.3rem;
  }

  .horoscope-highlights-grid {
    grid-template-columns: 1fr;
  }

  .service-contact-split {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .btn-card-call, .btn-card-wa {
    width: 100%;
  }

  .service-img-wrap {
    height: 175px;
  }
}

/* Ultra Small Screens (<= 330px, e.g. iPhone SE 1st gen - 320px) */
@media (max-width: 330px) {
  .top-bar-right {
    font-size: 0.74rem;
    gap: 4px 8px;
  }

  .brand-title {
    font-size: 0.88rem;
  }

  .brand-subtitle {
    font-size: 0.6rem;
  }

  .hero-title {
    font-size: 1.45rem;
  }

  .hero-astrologer-tag {
    font-size: 0.95rem;
  }

  .hero-stat-box h4 {
    font-size: 1rem;
  }

  .hero-stat-box p {
    font-size: 0.62rem;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .home-teaser-signs {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   GURUJI PHOTO EDITOR & VICTRIX AWARD PRESENTATION
   ========================================================================== */
.hero-card-frame, .about-photo-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
}

.guruji-edit-badge-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11, 14, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.guruji-edit-badge-btn:hover {
  background: var(--gold);
  color: #0b0e17;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

.victrix-ribbon-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(11, 14, 23, 0) 0%, rgba(11, 14, 23, 0.95) 40%, rgba(15, 20, 32, 1) 100%);
  padding: 16px 14px 14px;
  text-align: center;
  z-index: 5;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.victrix-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #996515 0%, #D4AF37 50%, #F5E086 100%);
  color: #0b0e17;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
  margin-bottom: 4px;
}

.victrix-sub {
  font-size: 0.78rem;
  color: #e5e7eb;
  margin: 0;
  font-weight: 500;
}

/* Photo Editor Modal */
.photo-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.photo-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.photo-modal-container {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
}

.photo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-subtle);
}

.photo-modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.photo-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.photo-modal-close:hover {
  color: #fff;
}

.photo-modal-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.photo-upload-dropzone {
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  background: rgba(212, 175, 55, 0.04);
  cursor: pointer;
  transition: all 0.2s ease;
}

.photo-upload-dropzone:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
}

.photo-upload-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.photo-upload-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.photo-crop-preview-wrap {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.photo-crop-preview-wrap.active {
  display: flex;
}

.photo-crop-canvas-box {
  width: 260px;
  height: 320px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  background: #000;
}

.photo-crop-canvas-box canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slider-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(0,0,0,0.3);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.photo-slider-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.photo-slider-row label {
  min-width: 90px;
}

.photo-slider-row input[type="range"] {
  flex: 1;
  accent-color: var(--gold);
}

.photo-filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.photo-filter-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
}

.photo-filter-chip.active, .photo-filter-chip:hover {
  background: var(--gold);
  color: #0b0e17;
  border-color: var(--gold);
  font-weight: 600;
}

.photo-modal-footer {
  padding: 16px 22px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.toast-message {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #10b981;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 100000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-message.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

