/* ==========================================================================
   Saloni marketing site — custom sections (homepage, /features, /pricing)
   Kept separate from the vendor template's style.css. Uses the same
   CSS variables (--theme-color, --title-color, --secondary-color) so it
   stays in sync with the brand theme.
   ========================================================================== */

/* ---- Mobile menu toggle ---- */
.sn-mobile-toggle {
  background: none; border: none; font-size: 1.4rem; color: var(--title-color);
  padding: .25rem .5rem; line-height: 1; cursor: pointer;
}
.sn-mobile-toggle:hover { color: var(--theme-color); }

/* ---- Language switcher ---- */
.sn-lang-switcher { display: flex; align-items: center; gap: .5rem; margin-right: .75rem; }
.sn-lang-switcher a { font-size: .8rem; font-weight: 600; color: var(--title-color); text-decoration: none; letter-spacing: .04em; transition: color .15s; }
.sn-lang-switcher a:hover, .sn-lang-active { color: var(--theme-color) !important; }
.sn-lang-switcher span { color: #ccc; }

/* ---- Floating WhatsApp button ---- */
.sn-whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.45);
  transition: transform .15s, box-shadow .15s;
  animation: sn-wa-pulse 2.4s infinite;
}
.sn-whatsapp-btn:hover { color: #fff; transform: scale(1.08); box-shadow: 0 10px 26px rgba(37,211,102,.55); }
.sn-whatsapp-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--title-color); color: #fff; font-size: .8rem; font-weight: 600;
  padding: .45rem .9rem; border-radius: 6px; white-space: nowrap;
  opacity: 0; visibility: hidden; transition: opacity .15s, visibility .15s;
}
.sn-whatsapp-btn:hover .sn-whatsapp-tooltip { opacity: 1; visibility: visible; }
@keyframes sn-wa-pulse {
  0% { box-shadow: 0 8px 22px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 8px 22px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 22px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 575px) {
  .sn-whatsapp-btn { width: 50px; height: 50px; font-size: 1.5rem; bottom: 18px; right: 18px; }
  .sn-whatsapp-tooltip { display: none; }
}

.sn-section { padding: 100px 0; position: relative; }
.sn-section-tight { padding: 60px 0; }
.sn-eyebrow {
  display: inline-block;
  color: var(--theme-color);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: .9rem;
  padding: .3rem .9rem;
  background: var(--secondary-color);
  border-radius: 99px;
}
.sn-title { color: var(--title-color); font-family: var(--title-font); margin-bottom: 1rem; letter-spacing: -.01em; }
.sn-lead { color: #666; font-size: 1.08rem; max-width: 640px; line-height: 1.7; }
.sn-center { text-align: center; margin-left: auto; margin-right: auto; }
.sn-grad-text {
  background: linear-gradient(100deg, var(--theme-color) 10%, var(--title-color) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- Hero ---- */
.sn-hero {
  position: relative;
  background: linear-gradient(180deg, var(--secondary-color) 0%, #fff 75%);
  padding: 100px 0 50px;
  overflow: hidden;
}
.sn-hero::before, .sn-hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0;
}
.sn-hero::before { width: 420px; height: 420px; background: radial-gradient(circle, rgba(232,94,147,.30), transparent 70%); top: -160px; right: -120px; }
.sn-hero::after { width: 380px; height: 380px; background: radial-gradient(circle, rgba(63,28,81,.18), transparent 70%); bottom: -180px; left: -140px; }
.sn-hero-grid { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; position: relative; z-index: 1; }
.sn-hero-copy { flex: 1 1 440px; }
.sn-hero-copy h1 { font-size: 2.85rem; line-height: 1.18; color: var(--title-color); margin-bottom: 1.1rem; letter-spacing: -.01em; }
.sn-hero-copy .sn-lead { margin-bottom: 1.5rem; }
.sn-hero-badges { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.sn-hero-badge {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600;
  color: var(--title-color); background: #fff; border: 1px solid rgba(63,28,81,.12);
  padding: .4rem .8rem; border-radius: 99px; box-shadow: 0 4px 12px rgba(63,28,81,.06);
}
.sn-hero-badge i { color: var(--theme-color); font-size: .85rem; }
.sn-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.sn-hero-img { flex: 1 1 460px; text-align: center; position: relative; }
.sn-hero-img img { max-width: 100%; filter: drop-shadow(0 30px 50px rgba(63, 28, 81, .22)); position: relative; z-index: 1; }
.sn-hero-img-glow {
  position: absolute; inset: 8% 8% 8% 8%; background: radial-gradient(closest-side, rgba(232,94,147,.25), transparent);
  border-radius: 50%; z-index: 0;
}
.sn-btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.75rem; border-radius: 8px; font-weight: 600;
  border: 1.5px solid var(--title-color); color: var(--title-color);
  text-decoration: none; transition: background .15s, color .15s, transform .15s;
}
.sn-btn-outline:hover { background: var(--title-color); color: #fff; transform: translateY(-2px); }
.sn-hero-actions .vs-btn { box-shadow: 0 10px 25px rgba(232,94,147,.35); transition: transform .15s, box-shadow .15s; }
.sn-hero-actions .vs-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(232,94,147,.45); }

/* ---- Feature grid ---- */
.sn-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 2.5rem; }
@media (max-width: 991px) { .sn-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .sn-feature-grid { grid-template-columns: 1fr; } }
.sn-feature-card {
  background: #fff; border: 1px solid #f0eef2; border-radius: 16px;
  padding: 1.85rem; transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.sn-feature-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--theme-color), var(--title-color));
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.sn-feature-card:hover { box-shadow: 0 18px 38px rgba(63,28,81,.1); transform: translateY(-5px); border-color: transparent; }
.sn-feature-card:hover::before { transform: scaleX(1); }
.sn-feature-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: linear-gradient(135deg, var(--secondary-color), #ffffff);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; box-shadow: 0 6px 16px rgba(232,94,147,.14);
}
.sn-feature-icon img { width: 28px; height: 28px; }
.sn-feature-icon i { font-size: 1.35rem; color: var(--theme-color); }
.sn-feature-card h3 { font-size: 1.12rem; color: var(--title-color); margin-bottom: .55rem; font-weight: 700; }
.sn-feature-card p { color: #666; font-size: .92rem; margin-bottom: 0; line-height: 1.6; }

/* ---- Feature detail list (used on /features) ---- */
.sn-feature-detail { border-top: 1px solid #eee; padding: 2.75rem 0; }
.sn-feature-detail:first-of-type { border-top: none; }
.sn-feature-detail-head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.25rem; }
.sn-feature-detail-head .sn-feature-icon { margin-bottom: 0; flex-shrink: 0; }
.sn-feature-detail-head h2 { font-size: 1.45rem; color: var(--title-color); margin: 0; font-weight: 700; }
.sn-feature-items { columns: 2; column-gap: 2rem; list-style: none; padding: 0; margin: 0; }
@media (max-width: 767px) { .sn-feature-items { columns: 1; } }
.sn-feature-items li {
  position: relative; padding-left: 1.7rem; margin-bottom: .75rem; color: #444; font-size: .95rem;
  break-inside: avoid;
}
.sn-feature-items li::before {
  content: "\2713"; position: absolute; left: 0; top: -1px; width: 18px; height: 18px;
  background: var(--secondary-color); border-radius: 50%; font-size: .65rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--theme-color); font-weight: 700;
}

/* ---- GCC highlights band ---- */
.sn-gulf-band {
  background: linear-gradient(135deg, var(--title-color) 0%, #2a1338 100%);
  padding: 80px 0; color: #fff; position: relative; overflow: hidden;
}
.sn-gulf-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5;
}
.sn-gulf-band .sn-eyebrow { color: var(--title-color); background: var(--secondary-color); }
.sn-gulf-band .sn-title { color: #fff; }
.sn-gulf-band .sn-lead { color: rgba(255,255,255,.75); }
.sn-gulf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; position: relative; z-index: 1; }
@media (max-width: 991px) { .sn-gulf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .sn-gulf-grid { grid-template-columns: 1fr; } }
.sn-gulf-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 1.75rem 1.5rem; text-align: center;
  transition: background .2s, transform .2s;
}
.sn-gulf-item:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.sn-gulf-item .sn-gulf-icon {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto .9rem;
  background: linear-gradient(135deg, var(--theme-color), #c2487a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.sn-gulf-item i { font-size: 1.3rem; color: #fff; }
.sn-gulf-item span { font-size: .92rem; color: #fff; font-weight: 600; }

/* ---- Screenshot showcase ---- */
.sn-shot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; margin-top: 2.5rem; }
@media (max-width: 767px) { .sn-shot-grid { grid-template-columns: 1fr; } }
.sn-shot-frame {
  border-radius: 14px; background: #fff; border: 1px solid #eee;
  box-shadow: 0 16px 36px rgba(63,28,81,.08); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.sn-shot-frame:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(63,28,81,.13); }
.sn-shot-frame-bar { display: flex; align-items: center; gap: 6px; padding: .7rem .9rem; background: #f6f4f7; border-bottom: 1px solid #eee; }
.sn-shot-frame-bar span { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.sn-shot-frame-bar span:nth-child(1) { background: #f0696f; }
.sn-shot-frame-bar span:nth-child(2) { background: #f5bd57; }
.sn-shot-frame-bar span:nth-child(3) { background: #59c46e; }
.sn-shot-placeholder {
  aspect-ratio: 16 / 10; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #b9aec0; gap: .6rem; background: linear-gradient(160deg, #faf7fb 0%, #f3eef5 100%);
}
.sn-shot-placeholder i { font-size: 2.1rem; }
.sn-shot-placeholder span { font-size: .85rem; font-weight: 600; }
.sn-shot-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; display: block; }
.sn-shot-caption { text-align: center; margin-top: .85rem; color: var(--title-color); font-weight: 700; font-size: .95rem; }

/* ---- Pricing ---- */
.sn-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 2.5rem; }
@media (max-width: 991px) { .sn-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
.sn-price-card {
  background: #fff; border: 1px solid #f0eef2; border-radius: 18px; padding: 2.4rem 1.85rem;
  text-align: center; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s; box-shadow: 0 8px 24px rgba(63,28,81,.05);
}
.sn-price-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(63,28,81,.1); }
.sn-price-card.is-highlight {
  border-color: var(--theme-color); box-shadow: 0 20px 45px rgba(232,94,147,.2); position: relative;
  background: linear-gradient(160deg, #fff 0%, var(--secondary-color) 140%);
}
.sn-price-card.is-highlight::before {
  content: "Most Popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--theme-color), #c2487a); color: #fff; font-size: .72rem; font-weight: 700;
  padding: 5px 16px; border-radius: 99px; letter-spacing: .03em; box-shadow: 0 6px 14px rgba(232,94,147,.35);
}
.sn-price-name { font-size: 1.25rem; font-weight: 700; color: var(--title-color); margin-bottom: .6rem; }
.sn-price-value { font-size: 1.7rem; font-weight: 700; color: var(--theme-color); margin-bottom: 1.4rem; }
.sn-price-value small { font-size: .85rem; font-weight: 500; color: #999; }
.sn-price-items { list-style: none; padding: 0; margin: 0 0 1.85rem; text-align: left; flex-grow: 1; }
.sn-price-items li { position: relative; padding-left: 1.7rem; margin-bottom: .7rem; color: #555; font-size: .9rem; }
.sn-price-items li::before {
  content: "\2713"; position: absolute; left: 0; top: 0; width: 18px; height: 18px;
  background: var(--secondary-color); border-radius: 50%; font-size: .62rem;
  display: flex; align-items: center; justify-content: center; color: var(--theme-color); font-weight: 700;
}
.sn-pricing-note {
  text-align: center; max-width: 560px; margin: 2.75rem auto 0; padding: 1.1rem 1.6rem;
  background: var(--secondary-color); border-radius: 12px; color: var(--title-color); font-size: .9rem;
}

/* ---- Testimonials ---- */
.sn-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 991px) { .sn-testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.sn-testimonial-card { background: #fff; border: 1px solid #f0eef2; border-radius: 14px; padding: 1.85rem; box-shadow: 0 8px 20px rgba(63,28,81,.05); }
.sn-testimonial-quote { color: #444; font-size: .95rem; margin-bottom: 1.25rem; line-height: 1.6; }
.sn-testimonial-author { display: flex; align-items: center; gap: .75rem; }
.sn-testimonial-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.sn-testimonial-author strong { display: block; color: var(--title-color); font-size: .9rem; }
.sn-testimonial-author span { color: #999; font-size: .8rem; }

/* ==========================================================================
   RTL overrides — applied only when dir="rtl" is set on <html>
   ========================================================================== */
[dir="rtl"] { font-family: 'DM Sans', 'Segoe UI', Tahoma, sans-serif; }
[dir="rtl"] .sn-hero-grid { flex-direction: row-reverse; }
[dir="rtl"] .sn-hero-copy h1 { text-align: right; }
[dir="rtl"] .sn-hero-copy .sn-lead,
[dir="rtl"] .sn-hero-copy .sn-eyebrow { text-align: right; }
[dir="rtl"] .sn-hero-badges { justify-content: flex-start; flex-direction: row-reverse; }
[dir="rtl"] .sn-hero-actions { flex-direction: row-reverse; }
[dir="rtl"] .sn-hero-badge { flex-direction: row-reverse; }
[dir="rtl"] .sn-feature-card { text-align: right; }
[dir="rtl"] .sn-feature-card::before { transform-origin: right; }
[dir="rtl"] .sn-feature-items { direction: rtl; }
[dir="rtl"] .sn-feature-items li { padding-left: 0; padding-right: 1.7rem; }
[dir="rtl"] .sn-feature-items li::before { left: auto; right: 0; }
[dir="rtl"] .sn-feature-detail-head { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .sn-gulf-band .sn-title,
[dir="rtl"] .sn-gulf-band .sn-lead,
[dir="rtl"] .sn-gulf-band .sn-eyebrow { text-align: center; }
[dir="rtl"] .sn-price-items { direction: rtl; text-align: right; }
[dir="rtl"] .sn-price-items li { padding-left: 0; padding-right: 1.7rem; }
[dir="rtl"] .sn-price-items li::before { left: auto; right: 0; }
[dir="rtl"] .sn-lang-switcher { margin-right: 0; margin-left: .75rem; flex-direction: row-reverse; }
[dir="rtl"] .sn-whatsapp-tooltip { right: auto; left: 70px; }
[dir="rtl"] .footer-wrapper { direction: rtl; text-align: right; }
[dir="rtl"] .footer-wrapper .footer-menu { direction: rtl; }
[dir="rtl"] .vs-header .main-menu ul { flex-direction: row-reverse; }
[dir="rtl"] .header-icons { flex-direction: row-reverse; gap: .35rem; }
[dir="rtl"] .vs-header .main-menu ul li a { font-size: .88rem; }
[dir="rtl"] .vs-header .gx-60 { --bs-gutter-x: 1.5rem; }
[dir="rtl"] .vs-header .vs-btn { padding: .55rem 1rem; font-size: .8rem; }
[dir="rtl"] .header-logo { max-width: 180px; overflow: visible; }
[dir="rtl"] .header-logo img { max-width: 100%; width: 100%; }
[dir="rtl"] .sn-shot-frame-bar { flex-direction: row-reverse; }
[dir="rtl"] .sn-shot-caption { text-align: center; }
