/* ==========================================================================
   TechSavvy IT Ltd. — WORLD-CLASS MAXIMALIST DESIGN SYSTEM
   Theme: Logo-Inspired Dark Luxury (Coral Red #ff4d5a, Warm Gold #ffd166, Space Charcoal)
   ========================================================================== */

/* ─── Root Design Tokens ─── */
:root {
  /* Brand Palette (Strictly matched to tslogo.png) */
  --brand-coral:       #ff4d5a;
  --brand-coral-glow:  rgba(255, 77, 90, 0.4);
  --brand-gold:        #ffd166;
  --brand-gold-glow:   rgba(255, 209, 102, 0.3);
  --cyan-accent:       #00f2fe;
  --cyan-glow:         rgba(0, 242, 254, 0.35);
  --violet-accent:     #8b5cf6;

  /* Canvas & Dark Surfaces */
  --bg-deep:           #080c14;
  --bg-surface:        #0e1526;
  --bg-card:           #141d30;
  --bg-card-hover:     #1a263d;
  --bg-input:          #0f172a;

  /* Typography Colors */
  --text-primary:      #ffffff;
  --text-secondary:    #94a3b8;
  --text-muted:        #64748b;
  --text-highlight:    #fff0c2;

  /* Glassmorphism & Borders */
  --border-subtle:     rgba(255, 255, 255, 0.08);
  --border-coral:      rgba(255, 77, 90, 0.3);
  --border-gold:       rgba(255, 209, 102, 0.3);
  --glass-backdrop:    rgba(14, 21, 38, 0.75);
  --glass-blur:        20px;

  /* Typography Fonts */
  --font-display:      'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body:         'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:         'JetBrains Mono', monospace;

  /* Transitions & Easing */
  --ease-elastic:      cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --ease-out-expo:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:       cubic-bezier(0.4, 0, 0.2, 1);

  /* Container Widths */
  --container-max:     1280px;
  --section-padding:   clamp(4.5rem, 9vw, 8.5rem);
}

/* ─── Global Reset & Body Setup ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Animated Holographic Cyber Grid Background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 20%, rgba(255, 77, 90, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 209, 102, 0.05) 0%, transparent 45%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
  pointer-events: none;
  z-index: -2;
}

/* Subtle Film Noise Texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

::selection {
  background: var(--brand-coral);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul { list-style: none; }

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

/* ─── Form Inputs & Dropdowns (Strict Contrast Bugfix) ─── */
input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary) !important;
  background-color: var(--bg-input) !important;
  border: 1.5px solid var(--border-subtle) !important;
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--brand-coral) !important;
  box-shadow: 0 0 15px var(--brand-coral-glow) !important;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23ff4d5a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1.2rem center !important;
  padding-right: 2.8rem;
}

/* Ensure Select Options are 100% Visible & Dark Backed */
select option {
  background-color: #0f172a !important;
  color: #ffffff !important;
  padding: 10px;
}

textarea { resize: vertical; }

.mono { font-family: var(--font-mono); }

/* ─── Layout Utility ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.2rem);
}

/* ─── Section Common ─── */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-coral);
  background: rgba(255, 77, 90, 0.1);
  border: 1px solid var(--border-coral);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 20px rgba(255, 77, 90, 0.15);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--text-highlight) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__desc {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Dynamic Buttons & Magnetic Effects ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.95rem 2rem;
  border-radius: 14px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 52px;
  z-index: 1;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-coral), #e03845);
  color: #ffffff;
  box-shadow: 0 6px 25px var(--brand-coral-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-coral));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px var(--brand-coral-glow);
  color: #080c14;
  font-weight: 700;
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1.5px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn--outline:hover {
  border-color: var(--brand-gold);
  background: rgba(255, 209, 102, 0.1);
  color: var(--brand-gold);
  box-shadow: 0 0 25px var(--brand-gold-glow);
  transform: translateY(-3px);
}

.btn__arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(5px);
}

/* ─── Scroll Reveal Animations ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(45px) scale(0.97);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ═══════════════════════════════════════════
   1. PRELOADER (Logo Red Glowing Engine)
   ═══════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease-out-expo), visibility 0.7s;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader__logo {
  width: 100px;
  filter: drop-shadow(0 0 25px var(--brand-coral-glow));
  animation: preloaderFloat 2s ease-in-out infinite alternate;
}

@keyframes preloaderFloat {
  0% { transform: scale(0.96) translateY(0); filter: drop-shadow(0 0 15px var(--brand-coral-glow)); }
  100% { transform: scale(1.05) translateY(-8px); filter: drop-shadow(0 0 35px var(--brand-coral)); }
}

.preloader__text {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--brand-coral);
  min-height: 1.5em;
  letter-spacing: 0.05em;
}

.preloader__cursor-blink {
  animation: blink 0.7s step-end infinite;
  color: var(--brand-gold);
}

@keyframes blink { 50% { opacity: 0; } }

.preloader__bar-track {
  width: 240px;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.preloader__bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-coral), var(--brand-gold));
  box-shadow: 0 0 15px var(--brand-coral-glow);
  border-radius: 10px;
  transition: width 0.15s linear;
}

.preloader__percent {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   CUSTOM CURSOR (Desktop Glow Rings)
   ═══════════════════════════════════════════ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-coral);
  box-shadow: 0 0 10px var(--brand-coral-glow);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-ring {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--brand-coral-glow);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), border-color 0.3s;
}

.cursor-dot.hover {
  width: 16px;
  height: 16px;
  background: var(--brand-gold);
  box-shadow: 0 0 20px var(--brand-gold-glow);
}

.cursor-ring.hover {
  width: 65px;
  height: 65px;
  border-color: var(--brand-gold);
}

@media (hover: none) and (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ═══════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-coral), var(--brand-gold), var(--cyan-accent));
  box-shadow: 0 0 12px var(--brand-coral);
  z-index: 10001;
  transition: width 0.05s linear;
}

/* ═══════════════════════════════════════════
   2. NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 1.2rem 0;
  transition: all 0.4s var(--ease-out-expo);
  background: transparent;
}

.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo-img {
  height: 44px;
  transition: height 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.navbar.scrolled .navbar__logo-img {
  height: 38px;
}

.navbar__nav { display: none; }
@media (min-width: 1025px) { .navbar__nav { display: block; } }

.navbar__list {
  display: flex;
  gap: 0.4rem;
}

.navbar__link {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  position: relative;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--text-primary);
}

.navbar__link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--brand-coral), var(--brand-gold));
  border-radius: 4px;
  box-shadow: 0 0 10px var(--brand-coral);
}

.navbar__cta {
  display: none;
  font-size: 0.88rem;
  padding: 0.7rem 1.4rem;
}
@media (min-width: 1025px) { .navbar__cta { display: inline-flex; } }

.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 2;
  padding: 4px 0;
}
@media (min-width: 1025px) { .navbar__hamburger { display: none; } }

.navbar__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-coral);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out-expo);
}

.navbar__hamburger.open .navbar__hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open .navbar__hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open .navbar__hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
}

.mobile-drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-drawer.open .mobile-drawer__overlay { opacity: 1; }

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-coral);
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.mobile-drawer.open .mobile-drawer__panel { transform: translateX(0); }

.mobile-drawer__link {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.mobile-drawer__link:hover {
  color: var(--brand-coral);
  background: rgba(255, 77, 90, 0.08);
}

/* ═══════════════════════════════════════════
   3. HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__gradient-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.3;
  animation: blobFloat 22s ease-in-out infinite;
}

.hero__blob--cyan {
  width: 550px;
  height: 550px;
  background: var(--brand-coral);
  top: -10%;
  right: -5%;
}

.hero__blob--violet {
  width: 500px;
  height: 500px;
  background: var(--brand-gold);
  bottom: -10%;
  left: -5%;
  animation-delay: -7s;
  opacity: 0.25;
}

.hero__blob--amber {
  width: 350px;
  height: 350px;
  background: var(--cyan-accent);
  top: 35%;
  left: 35%;
  animation-delay: -14s;
  opacity: 0.15;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -40px) scale(1.08); }
  66% { transform: translate(-30px, 30px) scale(0.92); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-gold);
  background: rgba(255, 209, 102, 0.08);
  border: 1px solid var(--border-gold);
  padding: 0.45rem 1.3rem;
  border-radius: 100px;
  margin-bottom: 1.6rem;
  box-shadow: 0 0 25px var(--brand-gold-glow);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 5.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
}

.hero__title-line { display: block; }

.hero__title-line--gradient {
  background: linear-gradient(90deg, var(--brand-coral) 0%, var(--brand-gold) 35%, var(--cyan-accent) 70%, var(--brand-coral) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: liquidGradient 5s linear infinite;
  filter: drop-shadow(0 0 30px rgba(255, 77, 90, 0.45));
}

@keyframes liquidGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.hero__rotator {
  display: inline-block;
  transition: transform 0.45s var(--ease-out-expo), opacity 0.45s ease;
  transform-origin: center bottom;
}

.hero__rotator.swapping {
  transform: translateY(-20px) rotateX(-45deg);
  opacity: 0;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 2.8rem;
  line-height: 1.7;
}

.hero__subtitle strong {
  color: #ffffff;
  font-weight: 600;
  background: rgba(255, 77, 90, 0.12);
  border-bottom: 1.5px solid var(--brand-coral);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 2px;
  height: 50px;
  background: var(--border-subtle);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.hero__scroll-dot {
  width: 100%;
  height: 14px;
  background: var(--brand-coral);
  box-shadow: 0 0 10px var(--brand-coral);
  position: absolute;
  top: 0;
  animation: scrollBounce 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 0; opacity: 0.2; }
  50% { top: 70%; opacity: 1; }
}

/* ═══════════════════════════════════════════
   4. PROBLEM & STATS CARDS
   ═══════════════════════════════════════════ */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.stat-card {
  background: var(--glass-backdrop);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-coral);
  box-shadow: 0 15px 40px rgba(255, 77, 90, 0.15);
}

.stat-card__number {
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--brand-coral);
  text-shadow: 0 0 20px var(--brand-coral-glow);
  display: block;
  margin-bottom: 0.4rem;
}

.stat-card:nth-child(2) .stat-card__number { color: var(--brand-gold); text-shadow: 0 0 20px var(--brand-gold-glow); }
.stat-card:nth-child(3) .stat-card__number { color: var(--cyan-accent); text-shadow: 0 0 20px var(--cyan-glow); }

.stat-card__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  display: block;
}

.stat-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   5. SERVICES CARDS (3D Tilt + Glowing Edge)
   ═══════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.2rem;
  transition: all 0.4s var(--ease-out-expo);
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--brand-coral), transparent 60%, var(--brand-gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--brand-coral-glow);
}

.service-card__icon {
  margin-bottom: 1.4rem;
  transition: transform 0.4s var(--ease-elastic);
}

.service-card:hover .service-card__icon {
  transform: scale(1.15) translateZ(20px);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.service-card__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-coral);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-card__link:hover {
  gap: 0.8rem;
  color: var(--brand-gold);
}

/* ═══════════════════════════════════════════
   6. WHY CHOOSE US
   ═══════════════════════════════════════════ */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.2rem;
  transition: all 0.4s var(--ease-out-expo);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px var(--brand-gold-glow);
}

.feature-card__number {
  font-family: var(--font-mono);
  font-size: 3.2rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--brand-coral);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   7. PROCESS TIMELINE
   ═══════════════════════════════════════════ */
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.process__step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.6rem;
  transition: all 0.4s ease;
}

.process__step:hover {
  border-color: var(--border-coral);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.process__step-node {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--brand-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-coral);
  box-shadow: 0 0 15px var(--brand-coral-glow);
}

.process__step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.process__step-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   8. PRICING PACKAGES
   ═══════════════════════════════════════════ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 2.6rem 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-coral);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card--featured {
  border-color: var(--brand-coral);
  background: linear-gradient(180deg, rgba(255, 77, 90, 0.08) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 40px var(--brand-coral-glow);
}

.pricing-card__badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-coral);
  background: rgba(255, 77, 90, 0.12);
  border: 1px solid var(--border-coral);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1.2rem;
  width: fit-content;
}

.pricing-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-card__price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-card__currency {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--brand-coral);
}

.pricing-card__period {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-card__features {
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pricing-card__features li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding-left: 1.6rem;
  position: relative;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-coral);
  font-weight: bold;
}

/* ═══════════════════════════════════════════
   9. QUOTATION CALCULATOR
   ═══════════════════════════════════════════ */
.calculator__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .calculator__wrapper { grid-template-columns: 1fr 1fr; }
}

.calculator__form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 2.4rem;
}

.calculator__field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.calculator__field input[type="range"] {
  accent-color: var(--brand-coral);
  height: 8px;
}

.calculator__range-value {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-coral);
  display: block;
  margin-top: 0.4rem;
}

.calculator__result {
  background: var(--bg-card);
  border: 2px solid var(--brand-coral);
  border-radius: 28px;
  padding: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--brand-coral-glow);
}

.calculator__result-inner { text-align: center; }

.calculator__result-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-gold);
  margin-bottom: 1.2rem;
  display: block;
}

.calculator__result-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.calculator__result-amount {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--brand-coral);
  text-shadow: 0 0 20px var(--brand-coral-glow);
}

/* ═══════════════════════════════════════════
   10. PORTFOLIO
   ═══════════════════════════════════════════ */
.portfolio__filters {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.portfolio__filter {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  border: 1.5px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all 0.3s ease;
  min-height: 44px;
}

.portfolio__filter:hover {
  border-color: var(--brand-coral);
  color: var(--text-primary);
}

.portfolio__filter.active {
  background: var(--brand-coral);
  border-color: var(--brand-coral);
  color: #ffffff;
  box-shadow: 0 0 20px var(--brand-coral-glow);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.portfolio__item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.portfolio__item:hover {
  transform: translateY(-6px);
  border-color: var(--border-coral);
  box-shadow: 0 18px 45px rgba(0,0,0,0.4);
}

.portfolio__item-visual { 
  height: 210px; 
  overflow: hidden; 
  position: relative;
  background: var(--bg-surface);
}

.portfolio__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}

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

.portfolio__item-info { padding: 1.6rem; }

.portfolio__item-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.portfolio__item-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.portfolio__item-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.portfolio__item-tags span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: rgba(255, 77, 90, 0.1);
  color: var(--brand-coral);
  border: 1px solid rgba(255, 77, 90, 0.2);
}

/* ═══════════════════════════════════════════
   11. TESTIMONIALS (Ultra-Luxurious 3D Glass)
   ═══════════════════════════════════════════ */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials__carousel {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.testimonials__track {
  display: flex;
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  background: var(--bg-card);
  border: 1.5px solid var(--border-coral);
  border-radius: 32px;
  padding: 2.8rem 2.4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px var(--brand-coral-glow);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 30px;
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brand-coral);
  opacity: 0.05;
  pointer-events: none;
}

.testimonial-card__stars {
  color: var(--brand-gold);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.4rem;
  text-shadow: 0 0 15px var(--brand-gold-glow);
  display: flex;
  gap: 4px;
}

.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.8;
  color: #ffffff;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--bg-deep), var(--bg-surface));
  color: var(--brand-gold);
  border: 2px solid var(--brand-coral);
  box-shadow: 0 0 20px var(--brand-coral-glow);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.testimonial-card__author span {
  font-size: 0.85rem;
  color: var(--brand-gold);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2.2rem;
}

.testimonials__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--border-coral);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-coral);
  box-shadow: 0 0 15px var(--brand-coral-glow);
  transition: all 0.3s ease;
}

.testimonials__btn:hover {
  background: var(--brand-coral);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--brand-coral);
}

.testimonials__dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.testimonials__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.3s ease;
  padding: 0;
}

.testimonials__dots button.active {
  background: var(--brand-coral);
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 0 12px var(--brand-coral);
}


/* ═══════════════════════════════════════════
   12. TECH STACK MARQUEE (Cyber Holographic)
   ═══════════════════════════════════════════ */
.tech-stack {
  overflow: hidden;
  position: relative;
}

.tech-stack::before,
.tech-stack::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.tech-stack::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-deep), transparent);
}

.tech-stack::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-deep), transparent);
}

.marquee {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1rem 0;
}

.marquee__track {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee__track:hover .marquee__content {
  animation-play-state: paused;
}

.marquee__content {
  display: flex;
  gap: 1.2rem;
  padding-right: 1.2rem;
  animation: marqueeScroll 25s linear infinite;
  flex-shrink: 0;
}

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

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.95rem 1.8rem;
  background: rgba(20, 29, 48, 0.85);
  border: 1.5px solid var(--border-coral);
  border-radius: 16px;
  color: #ffffff;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 77, 90, 0.2);
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
}

.tech-badge:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  background: rgba(255, 77, 90, 0.15);
  box-shadow: 0 0 35px var(--brand-coral-glow), 0 0 15px var(--brand-gold-glow);
  transform: translateY(-6px) scale(1.08);
}

.tech-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--brand-coral);
  filter: drop-shadow(0 0 8px var(--brand-coral-glow));
  transition: transform 0.3s ease, color 0.3s ease;
}

.tech-badge:hover svg {
  transform: scale(1.2) rotate(6deg);
  color: var(--brand-gold);
  filter: drop-shadow(0 0 14px var(--brand-gold));
}


/* ═══════════════════════════════════════════
   12.5 SLA MATRIX (Service Level Agreement)
   ═══════════════════════════════════════════ */
.sla__table-wrapper {
  overflow-x: auto;
  margin-bottom: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.sla__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

.sla__table th {
  background: var(--bg-surface);
  color: var(--brand-gold);
  padding: 1.2rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.sla__table td {
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
  color: var(--text-primary);
}

.sla__table tbody tr:hover {
  background: rgba(255, 77, 90, 0.04);
}

.sla__priority {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  display: inline-block;
}

.sla__priority--p1 {
  background: rgba(255, 77, 90, 0.15);
  color: var(--brand-coral);
  border: 1px solid var(--border-coral);
}

.sla__priority--p2 {
  background: rgba(255, 209, 102, 0.15);
  color: var(--brand-gold);
  border: 1px solid var(--border-gold);
}

.sla__priority--p3 {
  background: rgba(0, 242, 254, 0.15);
  color: var(--cyan-accent);
  border: 1px solid rgba(0, 242, 254, 0.3);
}

.sla__extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.sla__extra-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all 0.4s var(--ease-out-expo);
}

.sla__extra-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-coral);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.sla__extra-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.sla__extra-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   13. FAQ ACCORDION (Cyber Neon Accordion)
   ═══════════════════════════════════════════ */
.faq__list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.faq__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-coral);
  opacity: 0;
  box-shadow: 0 0 15px var(--brand-coral);
  transition: opacity 0.3s ease;
}

.faq__item.open::before {
  opacity: 1;
}

.faq__item.open {
  border-color: var(--border-coral);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px var(--brand-coral-glow);
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-primary);
  min-height: 64px;
}

.faq__chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out-expo);
  color: var(--text-muted);
}

.faq__item.open .faq__chevron {
  transform: rotate(180deg);
  background: var(--brand-coral);
  color: #ffffff;
  border-color: var(--brand-coral);
  box-shadow: 0 0 15px var(--brand-coral);
}

.faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), opacity 0.4s ease, padding 0.4s ease;
}

.faq__item.open .faq__answer {
  max-height: 500px;
  opacity: 1;
}

.faq__answer p {
  padding: 0 1.8rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
}


/* ═══════════════════════════════════════════
   13.5 CONTACT FORM & INFO GRID
   ═══════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 850px) {
  .contact__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

@media (min-width: 481px) {
  .contact__form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group__error {
  font-size: 0.75rem;
  color: var(--brand-coral);
  min-height: 1rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact__info-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.4rem 1.6rem;
  transition: all 0.3s ease;
}

.contact__info-card:hover {
  border-color: var(--border-coral);
  transform: translateX(4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.contact__info-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.contact__info-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact__map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.contact__map-placeholder {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact__socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact__social {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.contact__social:hover {
  border-color: var(--brand-coral);
  color: var(--brand-coral);
  box-shadow: 0 0 20px var(--brand-coral-glow);
  transform: translateY(-3px);
}


/* ═══════════════════════════════════════════
   14. FOOTER (Ultra-Premium Dark Glass)
   ═══════════════════════════════════════════ */
.footer {
  background: var(--bg-surface);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--brand-coral) 30%, var(--brand-gold) 70%, transparent) 1;
  padding: 4.5rem 0 0;
  position: relative;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 769px) {
  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  }
}

.footer__logo {
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 15px var(--brand-coral-glow));
}

.footer__tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-coral);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.footer__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.footer__links a:hover {
  color: var(--brand-coral);
  transform: translateX(4px);
}

.footer__newsletter-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.footer__newsletter {
  display: flex;
  gap: 0.6rem;
}

.footer__newsletter input {
  flex: 1;
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  font-size: 0.9rem;
}

.footer__newsletter .btn {
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  min-height: auto;
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 769px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 1.8rem;
}

.footer__bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
  color: var(--brand-coral);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════
   14. DOMAIN REGISTRATION & SEARCH WIDGET
   ═══════════════════════════════════════════ */
.domain-search__box {
  max-width: 900px;
  margin: 0 auto 3.5rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-coral);
  border-radius: 28px;
  padding: 2.2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--brand-coral-glow);
}

.domain-search__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 769px) {
  .domain-search__form {
    grid-template-columns: 2fr 1.2fr auto;
    align-items: center;
  }
}

.domain-search__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.domain-search__input-wrap svg {
  position: absolute;
  left: 1.2rem;
  pointer-events: none;
}

.domain-search__input-wrap input {
  padding-left: 3rem !important;
  height: 54px;
}

.domain-search__form select {
  height: 54px;
}

.domain-search__btn {
  height: 54px;
  padding: 0 1.8rem;
}

.domain-result {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.2rem 1.6rem;
  background: rgba(255, 77, 90, 0.08);
  border: 1px solid var(--border-coral);
  border-radius: 16px;
  animation: fadeInUp 0.4s ease forwards;
}

.domain-result.active {
  display: flex;
}

.domain-result__badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

.domain-result__info strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: block;
  color: #ffffff;
}

.domain-result__info span {
  font-size: 0.85rem;
  color: var(--brand-gold);
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.domain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

.domain-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-coral);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.domain-card--featured {
  border-color: var(--brand-coral);
  background: linear-gradient(180deg, rgba(255, 77, 90, 0.08) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 35px var(--brand-coral-glow);
}

.domain-card__badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-coral);
  background: rgba(255, 77, 90, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.8rem;
}

.domain-card__tld {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.domain-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-coral);
  margin-bottom: 0.8rem;
}

.domain-card__price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.domain-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.6rem;
  flex: 1;
}

.domain-card__buy {
  width: 100%;
}

/* ═══════════════════════════════════════════
   15. FLOATING ELEMENTS & LIVE CHAT WIDGET
   ═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-coral);
  color: var(--brand-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--brand-coral-glow);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-expo);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  background: var(--brand-coral);
  color: #ffffff;
  box-shadow: 0 0 30px var(--brand-coral);
}

.chat-widget {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 9991;
}

.chat-widget__trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-coral), #d93845);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 25px var(--brand-coral-glow);
  position: relative;
  transition: transform 0.3s var(--ease-out-expo);
}

.chat-widget__trigger::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--brand-coral);
  animation: chatPulse 2s cubic-bezier(0.1, 0.7, 0.1, 1) infinite;
}

@keyframes chatPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.chat-widget__trigger:hover {
  transform: scale(1.1);
}

.chat-widget__icon-close {
  display: none;
}

.chat-widget.open .chat-widget__icon-open {
  display: none;
}

.chat-widget.open .chat-widget__icon-close {
  display: block;
}

.chat-widget__window {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 2.5rem);
  background: var(--bg-surface);
  border: 2px solid var(--border-coral);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px var(--brand-coral-glow);
  transform: scale(0.9) translateY(15px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: bottom right;
}

.chat-widget.open .chat-widget__window {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

.chat-widget__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
}

.chat-widget__avatar {
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  border-radius: 50% !important;
  object-fit: contain !important;
  background: var(--bg-deep) !important;
  padding: 3px !important;
  border: 1px solid var(--brand-coral) !important;
}

.chat-widget__header strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  display: block;
  color: #ffffff;
}

.chat-widget__status {
  font-size: 0.72rem;
  color: #4ade80;
  font-weight: 600;
}

.chat-widget__body {
  padding: 1.2rem;
  min-height: 220px;
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.chat-widget__msg p {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.chat-widget__msg--bot p {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px 16px 16px 4px;
  color: var(--text-secondary);
}

.chat-widget__msg--user p {
  background: var(--brand-coral);
  color: #ffffff;
  border-radius: 16px 16px 4px 16px;
}

.chat-widget__footer {
  display: flex;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.chat-widget__input {
  flex: 1;
  background: var(--bg-surface) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 10px !important;
  padding: 0.6rem 0.9rem !important;
  font-size: 0.88rem !important;
  color: #ffffff !important;
}

.chat-widget__send {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-coral);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.chat-widget__send:hover {
  background: #e03845;
  box-shadow: 0 0 15px var(--brand-coral-glow);
}

/* Mobile Bottom CTA Bar */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  z-index: 9989;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.mobile-cta-bar.visible {
  transform: translateY(0);
}

.mobile-cta-bar__btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  .chat-widget { bottom: 5rem; }
  .back-to-top { bottom: 8.5rem; }
}

/* ═══════════════════════════════════════════
   100% AUTHENTIC REAL SSLCOMMERZ GATEWAY UI
   ═══════════════════════════════════════════ */
.ssl-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.ssl-gateway-window {
  background: #ffffff;
  color: #334155;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  border-radius: 16px;
  width: 100%;
  max-width: 980px;
  min-height: 580px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(14, 165, 233, 0.15);
  overflow: hidden;
  display: grid;
  grid-template-columns: 380px 1fr;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ssl-modal-overlay.active .ssl-gateway-window {
  transform: scale(1);
}

/* Close button on modal top right */
.ssl-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #64748b;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.15s;
}

.ssl-close-btn:hover {
  color: #ef4444;
}

/* LEFT PANE: Merchant Order & Amount Summary */
.ssl-left-pane {
  background: #ffffff;
  border-right: 1px solid #e2e8f0;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ssl-merchant-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.ssl-merchant-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ssl-merchant-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: contain;
  border: 1px solid #e2e8f0;
  background: #0f172a;
  padding: 4px;
}

.ssl-merchant-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.2;
}

.ssl-trx-id {
  font-size: 0.72rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ssl-timer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
}

/* Paying Amount Blue Box */
.ssl-pay-box {
  background: #f0f7ff;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e0f2fe;
}

.ssl-pay-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 4px;
}

.ssl-pay-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.ssl-qr-badge {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #047857;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

/* Breakdown rows */
.ssl-breakdown {
  margin-bottom: 1.5rem;
}

.ssl-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #475569;
  padding: 8px 0;
}

.ssl-breakdown-row.total {
  border-top: 1px solid #e2e8f0;
  margin-top: 6px;
  padding-top: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.ssl-offers-box {
  border-top: 1px solid #e2e8f0;
  padding-top: 1.2rem;
  margin-bottom: 1rem;
}

.ssl-offers-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #1e293b;
}

.ssl-offers-sub {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.ssl-no-offers {
  text-align: center;
  padding: 1.2rem 0;
  color: #94a3b8;
  font-size: 0.82rem;
}

.ssl-left-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #0284c7;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.ssl-left-footer a {
  color: #0284c7;
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT PANE: Payment Options & Forms */
.ssl-right-pane {
  padding: 1.8rem 2rem 1rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ssl-right-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.ssl-welcome-txt {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.ssl-login-btn {
  color: #0284c7;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 4 Large Tab Selectors */
.ssl-tab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 1.5rem;
}

.ssl-tab-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #475569;
}

.ssl-tab-card:hover {
  border-color: #0284c7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.1);
}

.ssl-tab-card.active {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
}

.ssl-tab-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 6px;
}

.ssl-tab-label {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.ssl-section-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 1rem;
}

/* Input Fields for Card Form */
.ssl-card-form {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.ssl-field-row {
  display: flex;
  border-bottom: 1px solid #cbd5e1;
}

.ssl-field-row:last-child {
  border-bottom: none;
}

.ssl-form-input {
  width: 100%;
  border: none;
  padding: 13px 16px;
  font-size: 0.88rem;
  color: #0f172a;
  outline: none;
  background: #ffffff;
}

.ssl-form-input::placeholder {
  color: #94a3b8;
}

/* Mobile & Net Banking Logos Grid */
.ssl-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-height: 220px;
  overflow-y: auto;
  padding: 4px;
  margin-bottom: 1.2rem;
}

.ssl-logo-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.ssl-logo-btn:hover, .ssl-logo-btn.active {
  border-color: #0284c7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
  transform: translateY(-2px);
}

.ssl-logo-img {
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}

/* Bangla QR Container */
.ssl-qr-container {
  text-align: center;
  padding: 1rem 0;
}

.ssl-qr-img {
  width: 190px;
  height: 190px;
  margin: 0 auto 10px;
  display: block;
}

.ssl-bill-no {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 8px;
}

/* Pay Button */
.ssl-submit-btn {
  width: 100%;
  background: #0284c7;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
  margin-bottom: 1rem;
}

.ssl-submit-btn:hover {
  background: #0369a1;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.45);
}

.ssl-terms-txt {
  font-size: 0.72rem;
  color: #64748b;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.ssl-terms-txt a {
  color: #0284c7;
  text-decoration: none;
}

/* SSLCommerz Gateway Footer Logos */
.ssl-right-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.8rem;
  font-size: 0.72rem;
  color: #64748b;
}

.ssl-brand-logo {
  height: 20px;
  object-fit: contain;
}

@media (max-width: 860px) {
  .ssl-gateway-window {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
  .ssl-left-pane {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }
}

/* ═══════════════════════════════════════════
   TRUSTED PARTNERS & CLIENT ECOSYSTEM
   ═══════════════════════════════════════════ */
.partners {
  background: radial-gradient(circle at 50% 0%, rgba(244, 63, 94, 0.06), transparent 70%), var(--bg-surface);
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partners__featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.partner-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-coral), var(--brand-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 63, 94, 0.5);
  box-shadow: 0 15px 35px rgba(244, 63, 94, 0.15), 0 0 20px rgba(0,0,0,0.5);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.partner-card__icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.partner-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.3;
}

.partner-card__url {
  font-size: 0.78rem;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  word-break: break-all;
}

.partner-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 100px;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 0.6rem;
}

/* Marquee Ticker */
.partners__marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.partners__marquee-wrap::before,
.partners__marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.partners__marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(8, 11, 20, 0.95), transparent);
}

.partners__marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(8, 11, 20, 0.95), transparent);
}

.partners__marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
}

.partners__marquee-track:hover {
  animation-play-state: paused;
}

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

.marquee-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
  transition: all 0.2s ease;
}

.marquee-item:hover {
  background: rgba(244, 63, 94, 0.15);
  border-color: var(--brand-coral);
  color: #ffffff;
}

/* Mini Partner Brand Cards */
.partner-mini-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.partner-mini-card img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
}

.partner-mini-card:hover {
  border-color: var(--brand-coral);
  background: rgba(244, 63, 94, 0.12);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ═══════════════════════════════════════════
   MEET OUR EXCELLENT TEAM SECTION
   ═══════════════════════════════════════════ */
.team {
  background: radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.08), transparent 70%), var(--bg-main);
  padding: 5.5rem 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  background: rgba(13, 21, 39, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-coral), #6366f1);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.team-card--ceo::before {
  background: linear-gradient(90deg, #ff4d5a, #ffd166, #ff4d5a);
  height: 5px;
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 77, 90, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 77, 90, 0.15);
}

.team-card__avatar-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, rgba(255, 77, 90, 0.6), rgba(99, 102, 241, 0.6));
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  position: relative;
}

.team-card__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #0f172a;
  display: block;
}

.team-card__monogram {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.8rem;
  color: #ffffff;
  font-family: var(--font-display);
}

.team-card__badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffd166;
}

.team-card__badge--ceo {
  background: rgba(255, 77, 90, 0.15);
  border-color: rgba(255, 77, 90, 0.4);
  color: #ff4d5a;
}

.team-card__name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
}

.team-card__role {
  font-size: 0.88rem;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 0.8rem;
}

.team-card__desc {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.team-card__socials {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.team-card__social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.team-card__social-link:hover {
  background: var(--brand-coral);
  color: #ffffff;
  border-color: var(--brand-coral);
  transform: translateY(-2px);
}




