/*
 * Shambavi Peetam — Elementor Widgets CSS v2.0
 * ✅ Mobile Responsive (480 / 768 / 1024 / 1280px)
 * ✅ Scroll-reveal animations
 * ✅ Hover effects (lift, glow, shimmer, icon-spin)
 * ✅ Icon-base circles — uniform across all widgets
 */

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --sp-maroon:      #5C0A0A;
  --sp-maroon-dk:   #3E0606;
  --sp-gold:        #C9963C;
  --sp-gold-lt:     #E2B45A;
  --sp-gold-pale:   #F5DFA0;
  --sp-ivory:       #F7F0E3;
  --sp-dark:        #120700;
  --sp-font-d:      'Cormorant Garamond', Georgia, serif;
  --sp-font-b:      'Jost', system-ui, sans-serif;
  --sp-radius:      8px;
  --sp-radius-lg:   14px;
  --sp-trans:       all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  --sp-shadow:      0 8px 32px rgba(0,0,0,0.35);
  --sp-shadow-gold: 0 6px 24px rgba(201,150,60,0.25);
}

/* ═══════════════════════════════════════════════
   SCROLL-REVEAL SYSTEM
═══════════════════════════════════════════════ */
.sp-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.sp-reveal.from-left  { transform: translateX(-40px); }
.sp-reveal.from-right { transform: translateX(40px); }
.sp-reveal.scale-in   { transform: scale(0.88); }
.sp-reveal.is-visible {
  opacity: 1 !important;
  transform: translate(0,0) scale(1) !important;
}
.sp-reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.sp-reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.sp-reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.sp-reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }
.sp-reveal-stagger > *:nth-child(5) { transition-delay: 0.45s; }
.sp-reveal-stagger > *:nth-child(6) { transition-delay: 0.55s; }

/* ═══════════════════════════════════════════════
   SHARED EYEBROW LABEL
═══════════════════════════════════════════════ */
.sp-inv-eyebrow,
.sp-exp-eyebrow,
.sp-alc-eyebrow,
.sp-kad-eyebrow,
.sp-quote-eyebrow,
.sp-cs-eyebrow {
  font-family: var(--sp-font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--sp-gold);
  display: block;
  margin: 0 0 10px;
}

/* ═══════════════════════════════════════════════
   HERO WIDGET
═══════════════════════════════════════════════ */
.sp-hero-wrap {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.sp-hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%,
    rgba(201,150,60,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
  animation: sp-hero-glow 6s ease-in-out infinite alternate;
}
@keyframes sp-hero-glow {
  from { opacity: 0.5; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.04); }
}
.sp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.sp-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 80px;
}
.sp-hero-content {
  flex: 0 0 52%;
  padding: 140px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sp-hero-content > * {
  opacity: 0;
  animation: sp-hero-fadein 0.8s ease forwards;
}
.sp-hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.sp-hero-content > *:nth-child(2) { animation-delay: 0.45s; }
.sp-hero-content > *:nth-child(3) { animation-delay: 0.65s; }
.sp-hero-content > *:nth-child(4) { animation-delay: 0.8s; }
.sp-hero-content > *:nth-child(5) { animation-delay: 0.95s; }
@keyframes sp-hero-fadein {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sp-hero-heading {
  font-family: var(--sp-font-d);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700;
  color: #C9963C;
  line-height: 1.08;
  margin: 0 0 20px;
}
.sp-hero-sub {
  font-family: var(--sp-font-b);
  font-size: 15px;
  line-height: 1.78;
  color: rgba(247,240,227,.82);
  max-width: 420px;
  margin: 0 0 20px;
}
.sp-hero-ornament {
  font-size: 13px;
  color: var(--sp-gold);
  letter-spacing: 6px;
  margin: 0 0 28px;
  opacity: .65;
  animation: sp-ornament-pulse 3s ease-in-out infinite;
}
@keyframes sp-ornament-pulse {
  0%,100% { opacity: 0.5; letter-spacing: 6px; }
  50%      { opacity: 0.9; letter-spacing: 9px; }
}
.sp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sp-font-b);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 6px;
  background: #8B1A1A;
  color: var(--sp-ivory);
  border: 1px solid var(--sp-gold);
  transition: var(--sp-trans);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.sp-hero-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}
.sp-hero-btn:hover {
  background: var(--sp-gold);
  color: #140101;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,150,60,0.4);
}
.sp-hero-btn:hover::before { left: 140%; }
.sp-hero-btn:active { transform: translateY(-1px); }
.sp-hero-btn i, .sp-hero-btn svg {
  font-size: 13px;
  transition: transform 0.3s ease;
}
.sp-hero-btn:hover i,
.sp-hero-btn:hover svg { transform: translateX(4px); }
.sp-hero-right {
  flex: 0 0 44%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.sp-hero-guruji {
  max-height: 92vh;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  animation: sp-guruji-float 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}
@keyframes sp-guruji-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ═══════════════════════════════════════════════
   INVITATION WIDGET
═══════════════════════════════════════════════ */
.sp-inv-wrap { background: #1A0A00; }
.sp-inv-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.sp-inv-left {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.sp-inv-lamp {
  flex-shrink: 0;
  width: 100px;
  animation: sp-lamp-flicker 4s ease-in-out infinite;
}
@keyframes sp-lamp-flicker {
  0%,100% { opacity:1; transform:scale(1); filter:brightness(1); }
  25%     { opacity:.92; transform:scale(1.02); filter:brightness(1.08); }
  50%     { opacity:1; transform:scale(.99); filter:brightness(.95); }
  75%     { opacity:.96; transform:scale(1.01); filter:brightness(1.04); }
}
.sp-inv-lamp img { width: 100%; height: auto; }
.sp-inv-text { flex: 1; }
.sp-inv-heading {
  font-family: var(--sp-font-d);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--sp-ivory);
  margin: 0 0 16px;
}
.sp-inv-body {
  font-family: var(--sp-font-b);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(247,240,227,.7);
  margin-bottom: 28px;
}
.sp-inv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sp-font-b);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 6px;
  background: #8B1A1A;
  color: var(--sp-ivory);
  border: 1px solid rgba(201,150,60,0.4);
  transition: var(--sp-trans);
  position: relative;
  overflow: hidden;
}
.sp-inv-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.16), transparent);
  transition: left 0.5s ease;
}
.sp-inv-btn:hover {
  background: var(--sp-gold);
  color: #140101;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,150,60,0.35);
}
.sp-inv-btn:hover::before { left: 140%; }
.sp-inv-btn:active { transform: translateY(-1px); }

/* Event detail box */
.sp-inv-details {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,150,60,.22);
  border-radius: 14px;
  padding: 32px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: var(--sp-trans);
}
.sp-inv-details:hover {
  border-color: rgba(201,150,60,.45);
  box-shadow: var(--sp-shadow-gold);
}
.sp-inv-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
/* Icon circle for detail items */
.sp-inv-detail-item .sp-det-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,150,60,0.12);
  border: 1px solid rgba(201,150,60,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--sp-trans);
}
.sp-inv-details:hover .sp-det-icon {
  background: rgba(201,150,60,0.22);
  border-color: rgba(201,150,60,0.5);
  transform: scale(1.1);
}
.sp-inv-detail-item i,
.sp-inv-detail-item svg {
  font-size: 17px;
  color: var(--sp-gold);
  fill: var(--sp-gold);
}
.sp-inv-detail-item span {
  font-family: var(--sp-font-b);
  font-size: 15px;
  font-weight: 500;
  color: var(--sp-ivory);
}

/* ═══════════════════════════════════════════════
   EXPERIENCE WIDGET
═══════════════════════════════════════════════ */
.sp-exp-wrap { background: #1A0800; }
.sp-exp-header { text-align: center; margin-bottom: 60px; }
.sp-exp-heading {
  font-family: var(--sp-font-d);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--sp-ivory);
  margin: 0;
}
.sp-exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sp-exp-item {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(201,150,60,.13);
  border-radius: var(--sp-radius-lg);
  padding: 40px 20px 32px;
  text-align: center;
  transition: var(--sp-trans);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.sp-exp-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--sp-gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.sp-exp-item:hover {
  background: rgba(201,150,60,.08);
  border-color: rgba(201,150,60,.35);
  transform: translateY(-6px);
  box-shadow: var(--sp-shadow-gold);
}
.sp-exp-item:hover::before { transform: scaleX(1); }

/* Icon circle — exp */
.sp-exp-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(201,150,60,0.10);
  border: 1px solid rgba(201,150,60,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--sp-trans);
}
.sp-exp-item:hover .sp-exp-icon {
  background: rgba(201,150,60,0.22);
  border-color: rgba(201,150,60,0.55);
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 0 24px rgba(201,150,60,0.3);
}
.sp-exp-icon i, .sp-exp-icon svg {
  font-size: 36px;
  color: var(--sp-gold);
  fill: var(--sp-gold);
  transition: transform 0.4s ease;
}
.sp-exp-item:hover .sp-exp-icon i,
.sp-exp-item:hover .sp-exp-icon svg { transform: scale(1.15); }
.sp-exp-icon img {
  width: 52%; height: 52%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.sp-exp-item:hover .sp-exp-icon img { transform: scale(1.15); }
.sp-exp-item-title {
  font-family: var(--sp-font-d);
  font-size: 18px;
  font-weight: 600;
  color: var(--sp-ivory);
  margin: 0;
  line-height: 1.35;
  transition: color 0.3s ease;
}
.sp-exp-item:hover .sp-exp-item-title { color: var(--sp-gold-lt); }

/* ═══════════════════════════════════════════════
   ALCHEMY WIDGET
═══════════════════════════════════════════════ */
.sp-alc-wrap { background: #150800; }
.sp-alc-header { text-align: center; margin-bottom: 56px; }
.sp-alc-heading {
  font-family: var(--sp-font-d);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--sp-ivory);
  margin: 0;
}
.sp-alc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.sp-alc-item {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--sp-radius-lg);
  border: 1px solid transparent;
  transition: var(--sp-trans);
  cursor: default;
  position: relative;
}
.sp-alc-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--sp-radius-lg);
  background: rgba(201,150,60,0.05);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.sp-alc-item:hover {
  border-color: rgba(201,150,60,0.22);
  transform: translateY(-5px);
}
.sp-alc-item:hover::after { opacity: 1; }

/* Icon circle — alchemy with spinning ring */
.sp-alc-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(201,150,60,0.10);
  border: 1px solid rgba(201,150,60,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--sp-trans);
  position: relative;
}
.sp-alc-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(201,150,60,0.35);
  opacity: 0;
  animation: sp-ring-spin 8s linear infinite;
  transition: opacity 0.35s ease;
}
@keyframes sp-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.sp-alc-item:hover .sp-alc-icon {
  background: rgba(201,150,60,0.2);
  border-color: rgba(201,150,60,0.5);
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(201,150,60,0.28);
}
.sp-alc-item:hover .sp-alc-icon::after { opacity: 1; }
.sp-alc-icon i, .sp-alc-icon svg {
  font-size: 34px;
  color: var(--sp-gold);
  fill: var(--sp-gold);
  transition: transform 0.4s ease;
}
.sp-alc-item:hover .sp-alc-icon i,
.sp-alc-item:hover .sp-alc-icon svg { transform: scale(1.18) rotate(-5deg); }
.sp-alc-icon img {
  width: 52%; height: 52%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.sp-alc-item:hover .sp-alc-icon img { transform: scale(1.15); }
.sp-alc-item-title {
  font-family: var(--sp-font-d);
  font-size: 20px; font-weight: 600;
  color: var(--sp-ivory);
  margin: 0 0 8px;
  line-height: 1.3;
  transition: color 0.3s;
}
.sp-alc-item:hover .sp-alc-item-title { color: var(--sp-gold-lt); }
.sp-alc-item-desc {
  font-family: var(--sp-font-b);
  font-size: 13px; line-height: 1.7;
  color: rgba(247,240,227,.58);
  margin: 0;
  transition: color 0.3s;
}
.sp-alc-item:hover .sp-alc-item-desc { color: rgba(247,240,227,.8); }

/* ═══════════════════════════════════════════════
   KADGAMALA WIDGET
═══════════════════════════════════════════════ */
.sp-kad-wrap { background: #120700; }
.sp-kad-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.95fr;
  gap: 44px;
  align-items: start;
}
.sp-kad-heading {
  font-family: var(--sp-font-d);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 600;
  color: var(--sp-ivory);
  line-height: 1.2;
  margin: 0 0 16px;
}
.sp-kad-desc {
  font-family: var(--sp-font-b);
  font-size: 14px; line-height: 1.8;
  color: rgba(247,240,227,.62);
}
.sp-kad-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-kad-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,150,60,.14);
  border-radius: var(--sp-radius);
  transition: var(--sp-trans);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.sp-kad-list-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--sp-gold);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  border-radius: 0 2px 2px 0;
}
.sp-kad-list-item:hover {
  background: rgba(201,150,60,.09);
  border-color: rgba(201,150,60,.35);
  transform: translateX(4px);
}
.sp-kad-list-item:hover::before { transform: scaleY(1); }

/* Icon circle inside list item */
.sp-kad-list-item .sp-kad-licon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(201,150,60,.12);
  border: 1px solid rgba(201,150,60,.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--sp-trans);
}
.sp-kad-list-item:hover .sp-kad-licon {
  background: rgba(201,150,60,.25);
  border-color: rgba(201,150,60,.5);
  transform: scale(1.12) rotate(-5deg);
}
.sp-kad-list-item i,
.sp-kad-list-item svg {
  font-size: 14px;
  color: var(--sp-gold);
  fill: var(--sp-gold);
  transition: transform 0.3s ease;
}
.sp-kad-list-item span {
  font-family: var(--sp-font-b);
  font-size: 14px; line-height: 1.55;
  color: rgba(247,240,227,.84);
  transition: color 0.3s;
}
.sp-kad-list-item:hover span { color: var(--sp-ivory); }

.sp-kad-image {
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 12px;
}
.sp-kad-image img {
  width: 100%; display: block;
  object-fit: cover; aspect-ratio: 4/3;
  border-radius: 12px;
  transition: transform 0.5s ease;
}
.sp-kad-image:hover img { transform: scale(1.04); }

.sp-kad-prep {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,150,60,.22);
  border-radius: 10px;
  padding: 20px;
  transition: var(--sp-trans);
}
.sp-kad-prep:hover {
  border-color: rgba(201,150,60,.45);
  box-shadow: var(--sp-shadow-gold);
}
.sp-kad-prep-title {
  font-family: var(--sp-font-d);
  font-size: 18px; font-weight: 600;
  color: var(--sp-gold-lt);
  margin: 0 0 12px;
}
.sp-kad-prep ul {
  list-style: none;
  padding: 0; margin: 0 0 18px;
}
.sp-kad-prep li {
  font-family: var(--sp-font-b);
  font-size: 13px; line-height: 1.75;
  color: rgba(247,240,227,.74);
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative;
}
.sp-kad-prep li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--sp-gold);
}
.sp-kad-prep-btn {
  display: block; text-align: center;
  font-family: var(--sp-font-b);
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  background: #8B1A1A;
  color: var(--sp-ivory);
  border: 1px solid rgba(201,150,60,.35);
  transition: var(--sp-trans);
  position: relative; overflow: hidden;
}
.sp-kad-prep-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.14), transparent);
  transition: left 0.5s ease;
}
.sp-kad-prep-btn:hover {
  background: var(--sp-gold);
  color: #140101;
  transform: translateY(-2px);
}
.sp-kad-prep-btn:hover::before { left: 140%; }

/* ═══════════════════════════════════════════════
   GURUJI QUOTE WIDGET
═══════════════════════════════════════════════ */
.sp-quote-wrap { background: #100500; }
.sp-quote-inner { display: flex; align-items: stretch; gap: 0; }
.sp-quote-image {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.sp-quote-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: 0 12px 12px 0;
  transition: transform 0.6s ease;
}
.sp-quote-image:hover img { transform: scale(1.04); }
.sp-quote-img-overlay {
  position: absolute; inset: 0;
  background: rgba(10,3,0,.55);
  border-radius: inherit;
  pointer-events: none;
}
.sp-quote-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
}
.sp-quote-heading {
  font-family: var(--sp-font-d);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--sp-ivory);
  margin: 0 0 24px;
}
.sp-quote-text {
  font-family: var(--sp-font-d);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-style: italic;
  line-height: 1.85;
  color: rgba(247,240,227,.82);
  margin: 0 0 20px;
  padding: 0; border: none;
  position: relative;
}
.sp-quote-text::before {
  content: '\201C';
  font-size: 5rem;
  font-family: var(--sp-font-d);
  color: rgba(201,150,60,0.18);
  position: absolute;
  top: -20px; left: -24px;
  line-height: 1;
  pointer-events: none;
}
.sp-quote-ornament {
  font-size: 14px;
  color: var(--sp-gold);
  letter-spacing: 6px;
  margin: 0; opacity: .65;
  animation: sp-ornament-pulse 4s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   CONTACT STRIP WIDGET
═══════════════════════════════════════════════ */
.sp-cs-wrap { background: #120700; }
.sp-cs-header { text-align: center; margin-bottom: 48px; }
.sp-cs-heading {
  font-family: var(--sp-font-d);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--sp-ivory);
  margin: 0;
}
.sp-cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sp-cs-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,150,60,.14);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--sp-trans);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.sp-cs-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,150,60,.06), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.sp-cs-card:hover {
  border-color: rgba(201,150,60,.38);
  box-shadow: var(--sp-shadow-gold);
  transform: translateY(-5px);
}
.sp-cs-card:hover::after { opacity: 1; }

/* Icon circle — contact */
.sp-cs-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(201,150,60,.1);
  border: 1px solid rgba(201,150,60,.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--sp-trans);
}
.sp-cs-card:hover .sp-cs-icon {
  background: rgba(201,150,60,.22);
  border-color: rgba(201,150,60,.55);
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 0 18px rgba(201,150,60,.28);
}
.sp-cs-icon i, .sp-cs-icon svg {
  font-size: 20px;
  color: var(--sp-gold);
  fill: var(--sp-gold);
  transition: transform 0.3s ease;
}
.sp-cs-card:hover .sp-cs-icon i,
.sp-cs-card:hover .sp-cs-icon svg { transform: scale(1.15); }
.sp-cs-card-text {
  flex: 1;
  font-family: var(--sp-font-b);
  font-size: 15px; line-height: 1.65;
  color: rgba(247,240,227,.84);
}
.sp-cs-card-text a {
  color: #E2B45A;
  text-decoration: none;
  transition: color .25s;
}
.sp-cs-card-text a:hover { color: var(--sp-gold-pale); }
.sp-cs-label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(247,240,227,.4);
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 1280px
═══════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .sp-hero-inner { padding: 0 48px; }
  .sp-hero-content { flex: 0 0 56%; padding: 120px 0 90px; }
  .sp-hero-right { flex: 0 0 42%; }
  .sp-kad-grid { grid-template-columns: 1fr 1.2fr 1fr; gap: 32px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 1024px (Tablet Landscape)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sp-hero-inner { padding: 0 36px; }
  .sp-hero-content { flex: 0 0 60%; padding: 110px 0 80px; }
  .sp-hero-right { flex: 0 0 38%; }

  .sp-inv-inner { grid-template-columns: 1fr; gap: 32px; }
  .sp-inv-details {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    min-width: 0;
    padding: 24px;
  }
  .sp-inv-detail-item { flex: 1 1 160px; }

  .sp-exp-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sp-alc-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .sp-kad-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .sp-kad-right {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }
  .sp-kad-image { margin-bottom: 0; }

  .sp-quote-content { padding-left: 40px; }
  .sp-cs-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 768px (Tablet Portrait / Mobile)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  .sp-hero-wrap { min-height: auto; background-position: center center; }
  .sp-hero-inner { flex-direction: column; padding: 0; align-items: flex-start; }
  .sp-hero-content { flex: none; width: 100%; padding: 100px 24px 60px; }
  .sp-hero-heading { font-size: clamp(2.2rem, 9.5vw, 3rem); }
  .sp-hero-sub { font-size: 14px; max-width: 100%; }
  .sp-hero-right { display: none; }

  /* Invitation */
  .sp-inv-left { flex-direction: column; gap: 20px; }
  .sp-inv-lamp { width: 70px; }
  .sp-inv-details { flex-direction: column; gap: 18px; }
  .sp-inv-detail-item { flex: none; }

  /* Experience — 2 col */
  .sp-exp-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .sp-exp-item { padding: 28px 14px 24px; }
  .sp-exp-icon { width: 64px; height: 64px; }
  .sp-exp-icon i, .sp-exp-icon svg { font-size: 28px; }
  .sp-exp-item-title { font-size: 15px; }

  /* Alchemy — 2 col */
  .sp-alc-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .sp-alc-icon { width: 66px; height: 66px; }
  .sp-alc-icon i, .sp-alc-icon svg { font-size: 28px; }
  .sp-alc-item-title { font-size: 17px; }
  .sp-alc-item-desc { font-size: 12px; }

  /* Kadgamala — single col */
  .sp-kad-grid { grid-template-columns: 1fr; gap: 32px; }
  .sp-kad-right { grid-column: auto; grid-template-columns: 1fr; }
  .sp-kad-image { margin-bottom: 0; }

  /* Quote — stack */
  .sp-quote-inner { flex-direction: column; }
  .sp-quote-image {
    width: 100% !important;
    max-height: 260px;
    overflow: hidden;
    border-radius: 0 !important;
  }
  .sp-quote-image img {
    height: 260px;
    border-radius: 0 !important;
    object-position: top center;
  }
  .sp-quote-content { padding-left: 0 !important; padding-top: 28px; }
  .sp-quote-text::before { display: none; }

  /* Contact — single col */
  .sp-cs-grid { grid-template-columns: 1fr; }
  .sp-cs-card { padding: 20px 18px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 480px (Small Mobile)
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero */
  .sp-hero-content { padding: 88px 18px 50px; }
  .sp-hero-heading { font-size: clamp(1.9rem, 8.5vw, 2.4rem); }
  .sp-hero-sub { font-size: 13.5px; }
  .sp-hero-btn { padding: 13px 24px; font-size: 13px; width: 100%; justify-content: center; }

  /* Invitation */
  .sp-inv-heading { font-size: 1.7rem; }
  .sp-inv-btn { width: 100%; justify-content: center; }

  /* Experience — 2 col tight */
  .sp-exp-grid { gap: 10px; }
  .sp-exp-item { padding: 20px 10px 18px; }
  .sp-exp-icon { width: 52px; height: 52px; }
  .sp-exp-icon i, .sp-exp-icon svg { font-size: 22px; }
  .sp-exp-item-title { font-size: 13px; }

  /* Alchemy — 2 col tight */
  .sp-alc-grid { gap: 12px; }
  .sp-alc-icon { width: 58px; height: 58px; }
  .sp-alc-icon i, .sp-alc-icon svg { font-size: 24px; }
  .sp-alc-item-title { font-size: 15px; }
  .sp-alc-item { padding: 18px 10px; }

  /* Kadgamala */
  .sp-kad-list-item { padding: 12px 14px; gap: 10px; }
  .sp-kad-list-item span { font-size: 12.5px; }
  .sp-kad-list-item .sp-kad-licon { width: 28px; height: 28px; }
  .sp-kad-list-item i, .sp-kad-list-item svg { font-size: 12px; }

  /* Contact */
  .sp-cs-icon { width: 44px; height: 44px; }
  .sp-cs-icon i, .sp-cs-icon svg { font-size: 17px; }
  .sp-cs-card-text { font-size: 13.5px; }
  .sp-cs-card { padding: 18px 14px; gap: 14px; }

  /* Quote */
  .sp-quote-heading { font-size: 1.6rem; }
  .sp-quote-text { font-size: 0.95rem; }
}
