/* ==========================================================================
   JG GROUP — EVENT TESTING VERSION STYLESHEET
   Premium High-End UI/UX Design | Custom Creative Carousel | Tab Filters
   ========================================================================== */

#jget-events-page *,
#jget-events-page *::before,
#jget-events-page *::after {
  box-sizing: border-box;
}

/* ── Custom Properties & Tokens ── */
:root {
  --jget-primary:      #1C3F67;      /* Branding Deep Navy */
  --jget-primary-rgb:  28, 63, 103;
  --jget-gold:         #75a4dd;      /* Branding Gold-Lime Hover Accent */
  --jget-gold-rgb:     205, 213, 90;
  --jget-accent:       #75A4DD;      /* Classic Gold Accent */
  --jget-accent-rgb:   201, 169, 110;
  --jget-navy-dark:    #11253E;
  --jget-bg-light:     #F8F9FA;      /* Sleek light background */
  --jget-bg-card:      #FFFFFF;
  --jget-text-dark:    #1A1A1A;
  --jget-text-muted:   #6C757D;
  --jget-border:       #EAECEF;
  --jget-glass-bg:     rgba(255, 255, 255, 0.7);
  --jget-glass-border: rgba(255, 255, 255, 0.4);
  --jget-shadow-sm:    0 4px 10px rgba(0, 0, 0, 0.03);
  --jget-shadow-md:    0 16px 36px rgba(28, 63, 103, 0.08);
  --jget-shadow-lg:    0 24px 48px rgba(28, 63, 103, 0.12);
  --jget-ease:         cubic-bezier(0.25, 1, 0.5, 1);
  --jget-transition:   all 0.4s var(--jget-ease);
}

/* ── Page Layout ── */
#jget-events-page {
  background: var(--jget-bg-light);
  color: var(--jget-text-dark);
  font-family: 'Inter', 'Switzer', sans-serif;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* ── Typography & Section Headers ── */
.jget-title-xl {
  font-family: 'Outfit', 'Involve', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--jget-primary);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.jget-title-xl span {
  background: linear-gradient(135deg, var(--jget-primary) 0%, var(--jget-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jget-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--jget-accent);
  margin-bottom: 16px;
}

.jget-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: var(--jget-accent);
}

.jget-sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--jget-primary);
  margin-top: 0;
  margin-bottom: 16px;
}

.jget-sec-desc {
  color: var(--jget-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── Scroll Reveal ── */
.jget-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--jget-ease), transform 0.8s var(--jget-ease);
}

.jget-reveal.jget-visible {
  opacity: 1;
  transform: none;
}

.jget-delay-1 { transition-delay: 0.15s; }
.jget-delay-2 { transition-delay: 0.3s; }
.jget-delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   HERO SECTION — Premium Glassmorphic Split Layout
   ========================================================================== */
.jget-hero {
  position: relative;
  min-height: 90vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #FFFFFF;
}

/* Background glows */
.jget-hero-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(205, 213, 90, 0.15) 0%, transparent 70%);
  z-index: 1;
  filter: blur(80px);
  pointer-events: none;
}

.jget-hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(28, 63, 103, 0.08) 0%, transparent 70%);
  z-index: 1;
  filter: blur(80px);
  pointer-events: none;
}

.jget-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

.jget-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.jget-hero-content {
  position: relative;
}

.jget-hero-desc {
  font-size: 1.15rem;
  color: var(--jget-text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}

.jget-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Custom premium buttons */
.jget-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--jget-transition);
  cursor: pointer;
  border: none;
}

.jget-btn--primary {
  background-color: var(--jget-primary);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(28, 63, 103, 0.15);
}

.jget-btn--primary:hover {
  background-color: var(--jget-accent);
  color: var(--jget-primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(201, 169, 110, 0.25);
  text-decoration: none;
}

.jget-btn--primary svg {
  transition: transform 0.3s var(--jget-ease);
}

.jget-btn--primary:hover svg {
  transform: translateX(4px);
}

.jget-btn--outline {
  background-color: transparent;
  color: var(--jget-primary);
  border: 2px solid var(--jget-primary);
}

.jget-btn--outline:hover {
  background-color: var(--jget-primary);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(28, 63, 103, 0.15);
  text-decoration: none;
}

/* Hero Media - Premium layered visual */
.jget-hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.jget-media-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--jget-shadow-lg);
  border: 1px solid var(--jget-border);
}

.jget-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--jget-ease);
}

.jget-media-frame:hover img {
  transform: scale(1.06);
}

.jget-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 63, 103, 0.6) 0%, transparent 60%);
}

/* Floating Glass Badges */
.jget-floating-badge {
  position: absolute;
  background: var(--jget-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--jget-glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  animation: jget-float 6s ease-in-out infinite alternate;
}

.jget-floating-badge--1 {
  bottom: 12%;
  left: -8%;
  animation-delay: 0.5s;
}

.jget-floating-badge--2 {
  top: 10%;
  right: -5%;
  animation-duration: 8s;
}

.jget-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(28, 63, 103, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jget-primary);
}

.jget-badge-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--jget-primary);
}

.jget-badge-text p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--jget-text-muted);
}

/* Animations */
@keyframes jget-float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(1.5deg); }
}

/* ==========================================================================
   STATS SECTION — Modern Minimalist Metric Bar
   ========================================================================== */
.jget-stats {
  padding: 60px 0;
  background-color: var(--jget-primary);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.jget-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.jget-stat-item {
  position: relative;
}

.jget-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -16px;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.jget-stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--jget-gold);
}

.jget-stat-lbl {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* ==========================================================================
   CREATIVE CAROUSEL SECTION — Tactile Drag/Swipe slider
   ========================================================================== */
.jget-carousel-sec {
  padding: 100px 0;
  overflow: hidden;
  background-color: var(--jget-bg-light);
  position: relative;
}

.jget-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.jget-carousel-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.jget-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid var(--jget-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jget-primary);
  cursor: pointer;
  transition: var(--jget-transition);
  box-shadow: var(--jget-shadow-sm);
}

.jget-nav-btn:hover {
  background-color: var(--jget-primary);
  color: #FFFFFF;
  border-color: var(--jget-primary);
  box-shadow: 0 8px 20px rgba(28, 63, 103, 0.15);
}

.jget-nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Slider Track & Cards */
.jget-carousel-wrapper {
  margin: 0 -24px;
  padding: 24px;
  position: relative;
  cursor: grab;
}

.jget-carousel-wrapper:active {
  cursor: grabbing;
}

.jget-carousel-track {
  display: flex;
  gap: 32px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.jget-card {
  flex: 0 0 400px;
  background-color: var(--jget-bg-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--jget-shadow-md);
  border: 1px solid var(--jget-border);
  transition: var(--jget-transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 520px;
}

.jget-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--jget-shadow-lg);
  border-color: rgba(28, 63, 103, 0.15);
}

.jget-card-img {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.jget-card-img-src {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--jget-ease);
}

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

.jget-card-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--jget-primary);
  color: #FFFFFF;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.jget-card:hover .jget-card-tag {
  background-color: var(--jget-accent);
  color: var(--jget-primary);
}

.jget-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.jget-card-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--jget-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jget-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--jget-primary);
  margin: 0 0 12px;
  line-height: 1.3;
  transition: color 0.3s;
}

.jget-card:hover .jget-card-title {
  color: var(--jget-primary);
}

.jget-card-desc {
  font-size: 14px;
  color: var(--jget-text-muted);
  line-height: 1.6;
  margin: 0 0 24px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jget-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--jget-border);
}

.jget-card-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--jget-text-muted);
  font-weight: 500;
}

.jget-card-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(28, 63, 103, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jget-primary);
  transition: var(--jget-transition);
}

.jget-card:hover .jget-card-arrow {
  background-color: var(--jget-primary);
  color: #FFFFFF;
}

/* Progress Indicator */
.jget-carousel-indicators {
  max-width: 1320px;
  margin: 40px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jget-scrollbar {
  flex-grow: 1;
  max-width: 250px;
  height: 4px;
  background-color: var(--jget-border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.jget-scrollbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: var(--jget-primary);
  border-radius: 2px;
  transition: width 0.3s var(--jget-ease);
}

.jget-dots {
  display: flex;
  gap: 8px;
}

.jget-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--jget-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--jget-transition);
}

.jget-dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--jget-primary);
}

/* ==========================================================================
   INTERACTIVE TABS SECTION — Responsive filtering
   ========================================================================== */
.jget-tabs-sec {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.jget-tabs-nav {
  display: inline-flex;
  background-color: var(--jget-bg-light);
  border-radius: 50px;
  padding: 6px;
  margin-bottom: 48px;
  border: 1px solid var(--jget-border);
}

.jget-tab-btn {
  background: transparent;
  border: none;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--jget-text-muted);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--jget-transition);
}

.jget-tab-btn.active {
  background-color: var(--jget-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(28, 63, 103, 0.15);
}

.jget-tab-content {
  display: none;
}

.jget-tab-content.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  animation: jget-fade-in 0.6s var(--jget-ease) forwards;
}

@keyframes jget-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   ASYMMETRIC EVENT SHOWCASE — High End Grid
   ========================================================================== */
.jget-showcase-sec {
  padding: 100px 0;
  background-color: var(--jget-bg-light);
}

.jget-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.jget-showcase-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  aspect-ratio: 1/1;
  position: relative;
}

.jget-collage-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--jget-shadow-md);
  border: 1px solid var(--jget-border);
}

.jget-collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jget-collage-img--1 {
  grid-column: 1 / 8;
  grid-row: 1 / 9;
  z-index: 3;
}

.jget-collage-img--2 {
  grid-column: 6 / 13;
  grid-row: 5 / 13;
  z-index: 2;
  border: 8px solid #FFFFFF;
}

.jget-collage-badge {
  grid-column: 2 / 6;
  grid-row: 9 / 12;
  z-index: 4;
  background-color: var(--jget-gold);
  color: var(--jget-primary);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--jget-shadow-md);
}

.jget-collage-badge h3 {
  margin: 0 0 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.jget-collage-badge p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jget-showcase-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--jget-primary);
  margin-top: 0;
  margin-bottom: 24px;
}

.jget-showcase-text {
  color: var(--jget-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.jget-showcase-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.jget-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.jget-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(28, 63, 103, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jget-primary);
  flex-shrink: 0;
}

.jget-feature-text h5 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--jget-primary);
}

.jget-feature-text p {
  margin: 0;
  font-size: 13px;
  color: var(--jget-text-muted);
}

/* ==========================================================================
   NEWSLETTER SECTION — Premium Glassmorphic Subscription Card
   ========================================================================== */
.jget-nl-sec {
  padding: 120px 0;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Background ambient orbs */
.jget-cta-bg-glow {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(205, 213, 90, 0.12) 0%, transparent 60%);
  z-index: 0;
  filter: blur(80px);
  pointer-events: none;
}

.jget-nl-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.jget-nl-orb--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(28, 63, 103, 0.18) 0%, transparent 70%);
}
.jget-nl-orb--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.14) 0%, transparent 70%);
}

/* ── Inner Card ── */
.jget-nl-inner {
  display: flex;
  flex-direction: column;
  align-items: center;      /* default — overridden by Elementor badge_align control */
  background: linear-gradient(135deg, var(--jget-primary) 0%, var(--jget-navy-dark) 100%);
  border-radius: 40px;
  padding: 80px 80px 72px;
  text-align: center;       /* default — overridden by Elementor content_align control */
  color: #FFFFFF;
  position: relative;
  z-index: 5;
  box-shadow: var(--jget-shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
}

.jget-nl-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 75% 15%, rgba(205, 213, 90, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

/* ── Badge ── */
.jget-nl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--jget-gold);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Heading & Body ── */
.jget-nl-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.2;
  color: #FFFFFF;
  width: 100%;   /* fill flex container so text-align applies */
}

.jget-nl-inner > p {
  font-size: 1.1rem;
  max-width: 560px;
  width: 100%;   /* fill container; text-align set by Elementor */
  margin: 0 0 40px;   /* use 0 sides so left/right align actually shows */
  opacity: 0.82;
  line-height: 1.7;
}

/* ── Form ── */
.jget-nl-form {
  max-width: 560px;
  width: 100%;   /* fills flex container; Elementor form_align controls margin */
  margin-left: auto;
  margin-right: auto;
}

.jget-nl-form-row {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.jget-nl-form-row:focus-within {
  border-color: rgba(205, 213, 90, 0.55);
  box-shadow: 0 0 0 4px rgba(205, 213, 90, 0.12);
}

.jget-nl-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.jget-nl-input-icon {
  flex-shrink: 0;
  opacity: 0.45;
  color: #FFFFFF;
}

.jget-nl-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 0.975rem;
  font-family: inherit;
  min-width: 0;
  line-height: 1.5;
}

.jget-nl-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* ── Submit Button ── */
.jget-nl-submit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--jget-gold);
  color: var(--jget-primary);
  border: none;
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.jget-nl-submit:hover {
  background: #d4de5f;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.jget-nl-submit:active {
  transform: translateY(0);
}

.jget-nl-submit.is-loading .jget-nl-submit-text,
.jget-nl-submit.is-loading .jget-nl-submit-icon {
  opacity: 0;
}

.jget-nl-spinner {
  display: none;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(28, 63, 103, 0.3);
  border-top-color: var(--jget-primary);
  border-radius: 50%;
  animation: jget-spin 0.7s linear infinite;
}

.jget-nl-submit.is-loading .jget-nl-spinner {
  display: block;
}

@keyframes jget-spin {
  to { transform: rotate(360deg); }
}

/* ── Feedback messages ── */
.jget-nl-feedback {
  min-height: 20px;
  margin-top: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.2px;
  transition: opacity 0.3s;
}

.jget-nl-feedback.success {
  color: var(--jget-gold);
}

.jget-nl-feedback.error {
  color: #ff8080;
}

/* ── Privacy Note ── */
.jget-nl-privacy {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  margin: 18px auto 48px !important;
  font-size: 0.8rem !important;
  opacity: 0.52 !important;
  max-width: none !important;
  color: #FFFFFF !important;
}

/* ── Trust Stats Row ── */
.jget-nl-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  margin-top: 0;
}

.jget-nl-stat {
  flex: 1;
  max-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}

.jget-nl-stat + .jget-nl-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.jget-nl-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--jget-gold);
  line-height: 1;
}

.jget-nl-stat-lbl {
  font-size: 0.8rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 1200px) {
  .jget-hero-grid {
    gap: 40px;
  }
  .jget-tab-content.active {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .jget-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  .jget-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .jget-hero-actions {
    justify-content: center;
  }
  .jget-media-frame {
    max-width: 380px;
  }
  .jget-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .jget-stat-item:nth-child(2)::after {
    display: none;
  }
  .jget-showcase-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .jget-showcase-content {
    order: -1;
  }
  .jget-nl-inner {
    padding: 60px 40px;
  }
  .jget-nl-form-row {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px;
    gap: 12px;
  }
  .jget-nl-submit {
    width: 100%;
    justify-content: center;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .jget-tab-content.active {
    grid-template-columns: 1fr;
  }
  .jget-card {
    flex: 0 0 310px;
    height: 480px;
  }
  .jget-card-img {
    height: 180px;
  }
  .jget-card-body {
    padding: 24px;
  }
  .jget-carousel-indicators {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .jget-scrollbar {
    max-width: 100%;
  }
  .jget-stat-item::after {
    display: none !important;
  }
  .jget-stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .jget-floating-badge--1 {
    left: -4%;
  }
  .jget-floating-badge--2 {
    right: -2%;
  }
}

/* RTL overrides — General */
[dir="rtl"] .jget-label::before {
  display: none;
}
[dir="rtl"] .jget-label::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: var(--jget-accent);
  margin-right: 8px;
}
[dir="rtl"] .jget-stat-item::after {
  right: auto;
  left: -16px;
}

/* ==========================================================================
   NEWSLETTER — RTL / Arabic Overrides
   ========================================================================== */

/* Text alignment */
[dir="rtl"] .jget-nl-inner {
  text-align: right;
}

/* Badge — flip icon gap */
[dir="rtl"] .jget-nl-badge {
  flex-direction: row-reverse;
}

/* Form row — reverse order so email input is first in reading order */
[dir="rtl"] .jget-nl-form-row {
  flex-direction: row-reverse;
  padding: 6px 20px 6px 6px;  /* swap padding: icon on right */
}

/* Input icon — move to right side */
[dir="rtl"] .jget-nl-input-wrap {
  flex-direction: row-reverse;
}

/* Email input — always LTR regardless of page dir (emails are LTR) */
[dir="rtl"] .jget-nl-input {
  text-align: left;
  direction: ltr;
}

/* Privacy note — flip icon order */
[dir="rtl"] .jget-nl-privacy {
  flex-direction: row-reverse !important;
}

/* Stat separator — flip to right side */
[dir="rtl"] .jget-nl-stat + .jget-nl-stat::before {
  left: auto;
  right: 0;
}

/* Arabic typography refinements */
[dir="rtl"] .jget-nl-inner h2,
[dir="rtl"] .jget-nl-inner > p,
[dir="rtl"] .jget-nl-badge,
[dir="rtl"] .jget-nl-submit-text,
[dir="rtl"] .jget-nl-stat-lbl,
[dir="rtl"] .jget-nl-privacy {
  font-family: 'Tajawal', 'Cairo', 'Noto Sans Arabic', 'Segoe UI', sans-serif;
  letter-spacing: 0;
}

[dir="rtl"] .jget-nl-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.4;
}

[dir="rtl"] .jget-nl-stat-num {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  direction: ltr;  /* numbers always LTR */
  unicode-bidi: embed;
}
