/* ==========================================================================
   THE GAMES CARNIVAL - DESIGN SYSTEM & STYLESHEET (FIXED STICKY HEADER)
   ========================================================================== */

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

:root {
  /* Brand Palette */
  --primary-pink: #ff0066;
  --primary-pink-hover: #e0005a;
  --neon-pink: #ff2a8d;
  --neon-purple: #7928ca;
  --accent-cyan: #00f0ff;
  --accent-gold: #ffb703;
  --accent-orange: #fb8500;

  /* Card Colors */
  --badge-no1-bg: linear-gradient(135deg, #ff4e50, #f9d423);
  --badge-10yr-bg: linear-gradient(135deg, #11998e, #38ef7d);
  --badge-nofee-bg: linear-gradient(135deg, #00c6ff, #0072ff);
  --badge-wow-bg: linear-gradient(135deg, #8a2387, #e94057, #f27121);

  --testi-pink: #ff2a70;
  --testi-green: #22c55e;
  --testi-purple: #a855f7;

  /* Neutral Spectrum */
  --bg-dark: #0a0a12;
  --bg-card: #131322;
  --bg-card-hover: #1c1c33;
  --bg-light-gray: #f8f9fa;
  --text-dark: #0f172a;
  --text-muted-dark: #475569;
  --text-white: #ffffff;
  --text-light-muted: #94a3b8;
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-light: #e2e8f0;

  /* Shadows & Effects */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 30px rgba(255, 0, 102, 0.35);
  --shadow-cyan: 0 0 30px rgba(0, 240, 255, 0.35);
  --glass-bg: rgba(19, 19, 34, 0.75);
  --glass-border: rgba(255, 255, 255, 0.12);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  /* Layout Max Width */
  --container-max: 1600px;
  --header-height: 80px;

  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Smooth Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #080811;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-pink), var(--neon-purple));
  border-radius: 5px;
}

/* Reset & Fluid Typography */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  padding-top: 118px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  word-break: break-word;
  overflow-wrap: break-word;
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.75rem;
  box-sizing: border-box;
}

/* ==========================================================================
   100% FIXED STICKY HEADER (BULLETPROOF ACROSS ALL BROWSERS & DEVICES)
   ========================================================================== */

#global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.top-bar {
  background: #080811;
  color: var(--text-light-muted);
  font-size: 0.88rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
  overflow: hidden;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-info {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-info i {
  color: var(--primary-pink);
}

.top-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  color: var(--text-light-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-normal);
}

.social-links a:hover {
  background: var(--primary-pink);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
}

.header {
  width: 100%;
  height: var(--header-height);
  background: #ffffff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  height: 70px;
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff0066, #7928ca);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 6px 20px rgba(255, 0, 102, 0.45);
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.brand-logo:hover .logo-badge {
  transform: rotate(12deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.logo-text .title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ff0066, #7928ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.logo-text .tagline {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-pink), var(--neon-purple));
  border-radius: 2px;
  transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-pink);
}

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

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-normal);
  z-index: 100;
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: #fff0f5;
  color: var(--primary-pink);
  padding-left: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-pink), #e0005a);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 0, 102, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 0, 102, 0.5);
  background: linear-gradient(135deg, #ff1a75, #c7004c);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--neon-purple), #5b1aa5);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(121, 40, 202, 0.35);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(121, 40, 202, 0.5);
}

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

.btn-outline:hover {
  background: var(--primary-pink);
  color: #ffffff;
  transform: translateY(-3px);
}

.mobile-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--text-dark);
  background: transparent;
  flex-shrink: 0;
  padding: 0.25rem;
}

/* HERO SLIDER */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 620px;
  background: #080812;
  overflow: hidden;
}

.hero-slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(8, 8, 18, 0.94) 0%,
      rgba(8, 8, 18, 0.65) 50%,
      rgba(8, 8, 18, 0.25) 100%);
  display: flex;
  align-items: center;
}

.slide-content {
  color: #ffffff;
  max-width: 750px;
  z-index: 2;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 0, 102, 0.2);
  border: 1px solid var(--primary-pink);
  color: #ff66a3;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  letter-spacing: 1.2px;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
}

.slide-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.12;
}

.slide-title span {
  background: linear-gradient(135deg, #ff0066, #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-desc {
  font-size: clamp(0.95rem, 2vw, 1.18rem);
  color: #e2e8f0;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.slide-btns {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition-normal);
}

.slider-arrow:hover {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
  transform: scale(1.08);
  box-shadow: var(--shadow-glow);
}

.slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-normal);
}

.dot.active {
  width: 36px;
  border-radius: 8px;
  background: var(--primary-pink);
}

/* GOLDEN PARCHMENT CARDS */
.parchment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
  margin: 4rem 0;
}

.parchment-grid-full {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.parchment-card {
  position: relative;
  background: linear-gradient(145deg, #fff3d1 0%, #f7e2a9 60%, #e8ca84 100%);
  border-radius: 18px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(184, 134, 11, 0.35);
  border: 3px solid #d4af37;
  color: #2c1a04;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.parchment-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(255, 183, 3, 0.4), inset 0 0 30px rgba(184, 134, 11, 0.5);
  border-color: #ff0066;
}

.parchment-header {
  border-bottom: 2px dashed #b8860b;
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.parchment-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: #4a2c00;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.parchment-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  color: #382104;
  line-height: 1.5;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.parchment-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.parchment-list li i {
  color: #b8860b;
  margin-top: 4px;
}

.parchment-footer {
  border-top: 2px dashed #b8860b;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.parchment-price {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #7a0026;
}

/* Feature Showcase Sections */
.feature-section {
  padding: 5.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.feature-section:nth-child(even) {
  background-color: #fafbfc;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.feature-grid.reverse {
  direction: rtl;
}

.feature-grid.reverse>* {
  direction: ltr;
}

.feature-header {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #0f172a;
}

.feature-header i {
  color: var(--primary-pink);
  font-size: 1.8rem;
}

.feature-text {
  font-size: 1.08rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.feature-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #1e293b;
  font-size: 1rem;
}

.feature-highlights li i {
  color: #10b981;
  font-size: 1.15rem;
}

.feature-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transition: var(--transition-normal);
}

.feature-img-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(255, 0, 102, 0.22);
}

.feature-img-wrapper img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-img-wrapper:hover img {
  transform: scale(1.05);
}

/* Category Grid */
.category-section {
  padding: 6rem 0;
  background: #ffffff;
  text-align: center;
}

.section-title-wrap {
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.section-title i {
  color: var(--primary-pink);
}

.section-subtitle {
  font-size: 1.15rem;
  color: #64748b;
  max-width: 750px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.category-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.4s ease;
}

.category-overlay i {
  font-size: 2.5rem;
  color: #ffffff;
  transition: transform 0.4s ease;
}

.category-title {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
  transition: transform 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card:hover .category-overlay {
  background: linear-gradient(180deg, rgba(255, 0, 102, 0.35) 0%, rgba(0, 0, 0, 0.92) 100%);
}

.category-card:hover .category-overlay i {
  transform: translateY(-6px) scale(1.15);
  color: var(--accent-cyan);
}

.category-card:hover .category-title {
  transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 6rem 0;
  background: #f8fafc;
  text-align: center;
}

.why-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.badge-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.5rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-pink);
}

.badge-icon-box {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  position: relative;
}

.badge-no1 {
  background: var(--badge-no1-bg);
  clip-path: polygon(50% 0%, 63% 12%, 80% 6%, 83% 23%, 98% 28%, 91% 45%, 100% 59%, 88% 71%, 91% 88%, 74% 89%, 66% 100%, 50% 93%, 34% 100%, 26% 89%, 9% 88%, 12% 71%, 0% 59%, 9% 45%, 2% 28%, 17% 23%, 20% 6%, 37% 12%);
}

.badge-10yr {
  background: var(--badge-10yr-bg);
  clip-path: polygon(50% 0%, 63% 12%, 80% 6%, 83% 23%, 98% 28%, 91% 45%, 100% 59%, 88% 71%, 91% 88%, 74% 89%, 66% 100%, 50% 93%, 34% 100%, 26% 89%, 9% 88%, 12% 71%, 0% 59%, 9% 45%, 2% 28%, 17% 23%, 20% 6%, 37% 12%);
}

.badge-nofee {
  background: var(--badge-nofee-bg);
  clip-path: polygon(50% 0%, 63% 12%, 80% 6%, 83% 23%, 98% 28%, 91% 45%, 100% 59%, 88% 71%, 91% 88%, 74% 89%, 66% 100%, 50% 93%, 34% 100%, 26% 89%, 9% 88%, 12% 71%, 0% 59%, 9% 45%, 2% 28%, 17% 23%, 20% 6%, 37% 12%);
}

.badge-wow {
  background: var(--badge-wow-bg);
  clip-path: polygon(50% 0%, 63% 12%, 80% 6%, 83% 23%, 98% 28%, 91% 45%, 100% 59%, 88% 71%, 91% 88%, 74% 89%, 66% 100%, 50% 93%, 34% 100%, 26% 89%, 9% 88%, 12% 71%, 0% 59%, 9% 45%, 2% 28%, 17% 23%, 20% 6%, 37% 12%);
}

.badge-icon-box .big-num {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.badge-icon-box .sub-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.badge-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* What We Offer Section */
.what-we-offer-section {
  position: relative;
  padding: 6.5rem 0;
  background: linear-gradient(rgba(10, 10, 18, 0.93), rgba(10, 10, 18, 0.96)),
    url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
  color: #ffffff;
  text-align: center;
}

.what-we-offer-section .section-title {
  color: #ffffff;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-top: 4rem;
}

.offer-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  text-align: left;
}

.offer-box:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--primary-pink);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 0, 102, 0.3);
}

.offer-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-pink), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(255, 0, 102, 0.45);
}

.offer-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.offer-desc {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.65;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: #ffffff;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.testi-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.testi-card.pink {
  background: linear-gradient(135deg, #ff2a70, #e0005a);
}

.testi-card.green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.testi-card.purple {
  background: linear-gradient(135deg, #9333ea, #7e22ce);
}

.stars {
  color: #fde047;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.testi-quote {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.client-info {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 1.2rem;
}

.client-name {
  font-weight: 800;
  font-size: 1.1rem;
}

.client-loc {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Callout Banners */
.help-banner-section {
  padding: 4rem 0;
  background: #f1f5f9;
}

.help-banner-box {
  background: linear-gradient(90deg, #0f172a 0%, #1e1b4b 100%);
  border-radius: var(--radius-md);
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.help-banner-text h3 {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.help-banner-text p {
  color: #cbd5e1;
  font-size: 1.15rem;
}

.ready-start-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(rgba(10, 10, 18, 0.94), rgba(10, 10, 18, 0.94)),
    url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #ffffff;
}

.ready-start-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.ready-start-text {
  text-align: left;
  flex: 1;
  min-width: 320px;
}

.ready-start-text h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  text-align: left;
}

.ready-start-text p {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  max-width: 750px;
  margin: 0;
  text-align: left;
}

.ready-start-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: #080811;
  color: #94a3b8;
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about p {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-pink);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-pink);
  padding-left: 6px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1rem;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-contact-info i {
  color: var(--primary-pink);
  margin-top: 4px;
}

.footer-bottom {
  padding: 1.75rem 0;
  text-align: center;
  font-size: 0.95rem;
  color: #64748b;
}

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.65rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: var(--transition-normal);
}

.float-btn:hover {
  transform: scale(1.12) translateY(-4px);
}

.float-whatsapp {
  background: #25d366;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.float-call {
  background: var(--primary-pink);
  box-shadow: 0 10px 25px rgba(255, 0, 102, 0.45);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  padding: 1.25rem;
}

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

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 580px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(25px);
  transition: var(--transition-normal);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #475569;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--primary-pink);
  color: #ffffff;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: #334155;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 4px rgba(255, 0, 102, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Page Hero */
.page-hero {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, rgba(8, 8, 18, 0.52) 0%, rgba(10, 10, 25, 0.68) 100%),
    url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #ffffff;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(1.5rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 0.85rem;
  word-break: break-word;
  overflow-wrap: break-word;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.page-hero p {
  color: #f1f5f9;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  max-width: 750px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Filterable Catalog Tabs */
.catalog-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 3.5rem 0 3rem;
}

.filter-btn {
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  color: #475569;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-pink);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 0, 102, 0.35);
}

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

.game-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-pink);
}

.game-card-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

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

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

.game-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.game-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #0f172a;
}

.game-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.game-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.2rem;
}

.game-card-footer .btn {
  width: 100%;
  text-align: center;
}

.game-price {
  display: none;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-pink);
}

/* Contact Page Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  margin: 4.5rem 0;
}

.contact-info-card {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 3rem;
  border: 1px solid #e2e8f0;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-pink);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* Accordion FAQs */
.faq-accordion {
  margin: 3.5rem 0;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 1.5rem 1.75rem;
  background: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.75rem 1.5rem;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-pink);
}

/* ==========================================================================
   GLOBAL GALLERY GRID & LIGHTBOX COMPONENT
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin: 2.5rem 0 1rem 0;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 3px solid var(--primary-pink);
  transition: var(--transition-normal);
  height: 320px;
  background: #0f172a;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 0, 102, 0.35);
  border-color: #ff0066;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay-title {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  padding: 1.25rem 1rem 1rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 18, 0.92) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: color var(--transition-fast);
}

.gallery-card:hover .gallery-overlay-title {
  color: #ff66a3;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 18, 0.92);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}

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

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-modal img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--primary-pink);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--primary-pink);
}

/* MEDIA QUERIES */
@media (max-width: 1400px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .parchment-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-grid.reverse {
    direction: ltr;
  }

  .feature-img-wrapper img {
    height: 380px;
  }

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

  .testi-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background: #ffffff;
    flex-direction: column;
    padding: 2.5rem 1.75rem;
    gap: 1.5rem;
    transition: var(--transition-normal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
    align-items: flex-start;
    z-index: 9998;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 0.5rem 1rem;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    display: none;
  }

  .nav-item.dropdown.active .dropdown-menu {
    display: block;
  }

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

  .parchment-list[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .gallery-card {
    height: 270px;
  }
}

/* Mobile Screens (Width <= 600px) */
@media (max-width: 600px) {
  body {
    padding-top: 68px;
  }

  .header {
    height: 68px;
  }

  .header.scrolled {
    height: 64px;
  }

  .header .container {
    padding: 0 1rem;
  }

  .brand-logo {
    gap: 0.5rem;
  }

  .logo-badge {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .logo-text .title {
    font-size: 1.1rem;
    letter-spacing: -0.3px;
  }

  .logo-text .tagline {
    font-size: 0.52rem;
    letter-spacing: 1.2px;
  }

  .top-bar {
    display: none;
  }

  .hero-slider-section {
    height: 500px;
  }

  .slide-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.85rem;
    white-space: nowrap;
    width: fit-content;
    max-width: 100%;
  }

  .slider-controls {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .slider-dots {
    bottom: 0.65rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .slide-btns {
    margin-bottom: 2.2rem;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }

  .feature-section {
    padding: 3rem 0;
  }

  .feature-img-wrapper img {
    height: 260px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 240px;
  }

  .why-badges-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .parchment-card {
    padding: 1.75rem 1.2rem;
  }

  .help-banner-box {
    flex-direction: column;
    text-align: center;
    padding: 2.25rem 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .floating-buttons {
    bottom: 1.25rem;
    right: 1.25rem;
    gap: 0.65rem;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.35rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  /* Catalog Filter Bar Mobile 2-Column Grid */
  .catalog-filter-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 2rem;
    width: 100%;
  }

  .filter-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.65rem 0.5rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  #gameSearchInput {
    padding: 0.75rem 1.1rem !important;
    font-size: 0.88rem !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-card {
    height: 240px;
  }
}

/* Extra Small Mobile (<= 380px) */
@media (max-width: 380px) {
  .logo-badge {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  .logo-text .title {
    font-size: 0.98rem;
  }

  .logo-text .tagline {
    font-size: 0.48rem;
  }

  .header .container {
    padding: 0 0.75rem;
  }
}

/* ==========================================================================
   OUR CLIENTS CAROUSEL SECTION (INFINITE LOOPING MARQUEE)
   ========================================================================== */

.our-clients-section {
  position: relative;
  padding: 5.5rem 0 5rem;
  background: radial-gradient(circle at 15% 50%, rgba(255, 0, 102, 0.08) 0%, transparent 45%),
              radial-gradient(circle at 85% 50%, rgba(0, 240, 255, 0.07) 0%, transparent 45%),
              linear-gradient(180deg, #090a12 0%, #101124 50%, #090a12 100%);
  color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.clients-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 0, 102, 0.15);
  border: 1px solid rgba(255, 0, 102, 0.4);
  color: #ff66a3;
  padding: 0.45rem 1.3rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.1rem;
}

.our-clients-section .section-title {
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 1rem;
}

.our-clients-section .section-title i {
  color: var(--primary-pink);
}

.our-clients-section .section-subtitle {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.65;
}

.our-clients-section .section-subtitle strong {
  color: #ffffff;
}

/* Marquee Carousel Container */
.clients-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 3.25rem 0 2.25rem;
  padding: 0.75rem 0 1.25rem;
}

.clients-marquee-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  will-change: transform;
  animation: clientsLoopScroll 70s linear infinite;
}

.clients-marquee-wrapper:hover .clients-marquee-track {
  animation-play-state: paused;
}

@keyframes clientsLoopScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Individual Client Card */
.client-logo-card {
  flex: 0 0 215px;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  border: 2px solid transparent;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease;
  cursor: pointer;
  user-select: none;
}

.client-logo-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 35px rgba(255, 0, 102, 0.35);
  border-color: var(--primary-pink);
}

.client-logo-box {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  padding: 0.35rem;
}

.client-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.client-logo-card:hover .client-logo-box img {
  transform: scale(1.08);
}

.client-card-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
}

.client-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.client-card-category {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Trust Stats Bar */
.clients-stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.6rem 2.25rem;
  margin-top: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.client-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(255, 183, 3, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 600;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
}

/* Responsive Styles for Clients Section */
@media (max-width: 991px) {
  .our-clients-section {
    padding: 4.5rem 0 4rem;
  }
  .client-logo-card {
    flex: 0 0 190px;
    padding: 1.15rem 1rem;
  }
  .client-logo-box {
    height: 62px;
  }
}

@media (max-width: 768px) {
  .our-clients-section {
    padding: 3.5rem 0;
  }
  .clients-marquee-wrapper {
    margin: 2.25rem 0 1.5rem;
  }
  .client-logo-card {
    flex: 0 0 165px;
    padding: 1rem 0.85rem;
    border-radius: 14px;
  }
  .client-logo-box {
    height: 52px;
  }
  .client-card-name {
    font-size: 0.92rem;
  }
  .client-card-category {
    font-size: 0.68rem;
  }
  .stat-divider {
    display: none;
  }
  .clients-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 1.25rem 1rem;
  }
  .stat-num {
    font-size: 1.6rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
}