/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

:root {
  --navy:   #0a0f1e;
  --navy2:  #0d1428;
  --card:   #0f1a35;
  --blue:   #1a4fd6;
  --blue-lt: #2563eb;
  --accent: #3b82f6;
  --cyan:   #60a5fa;
  --white:  #ffffff;
  --gray:   #94a3b8;
  --border: rgba(59,130,246,0.25);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo { 
  display: flex; 
  flex-direction: column; 
  line-height: 1; 
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 48px;
  width: auto;
  display: block;
}

.logo-top { 
  display: flex; 
  align-items: center; 
  gap: 6px; 
}

.logo-top svg { 
  width: 22px; 
  height: 22px; 
}

.logo-brand { 
  font-size: 20px; 
  font-weight: 800; 
  letter-spacing: .5px; 
}

.logo-brand span { 
  color: var(--cyan); 
}

.logo-sub { 
  font-size: 9px; 
  letter-spacing: 4px; 
  color: var(--gray); 
  margin-top: 2px; 
}

.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 28px; 
  font-size: 14px; 
  font-weight: 500; 
}

.nav-links a { 
  color: var(--white); 
  opacity: .85; 
  transition: opacity .2s; 
}

.nav-links a:hover { 
  opacity: 1; 
}

.nav-links a.active {
  color: var(--cyan);
  border-bottom: 2px solid var(--cyan);
  padding-bottom: 2px;
}

.btn-quote {
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.btn-quote:hover { 
  background: var(--white); 
  color: var(--navy); 
}



/* ============================================
   MOBILE MENU - WITH LOGO INSIDE
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
  transition: transform 0.2s;
}

.hamburger:hover {
  transform: scale(1.05);
}

.hamburger:active {
  transform: scale(0.95);
}

.hamburger-line {
  width: 25px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
              opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-links.mobile-open {
  right: 0 !important;
}

.nav-links.mobile-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: -1;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.nav-links.mobile-open {
  animation: slideIn 0.3s ease forwards;
}

/* Logo inside mobile menu */
.nav-links .mobile-logo {
  display: none;
}

.mobile-logo-image {
  height: 32px;
  width: auto;
  display: block;
}

/* ============================================
   HERO SECTION - PREMIUM BLENDING
   ============================================ */

/* ✅ 1. HERO BASE */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  max-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #030712;
  padding: 0;
}

/* ✅ 2. BACKGROUND LIGHT (DEPTH) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 50%, 
    rgba(59, 130, 246, 0.25), 
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

/* ✅ 3. HERO IMAGE (NOT A CARD) */
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: brightness(0.7) contrast(1.2);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* ✅ 4. 🔥 THIS IS THE MAGIC (BLENDING FADE) */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #030712 0%,
    rgba(3, 7, 18, 0.95) 25%,
    rgba(3, 7, 18, 0.6) 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* ✅ 5. CONTENT ABOVE EVERYTHING */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-content {
  max-width: 520px;
}

/* ✅ 6. OPTIONAL (BUT VERY POWERFUL - GLOW PARTICLES) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 40%, rgba(96, 165, 250, 0.8) 2px, transparent 2px),
    radial-gradient(circle at 85% 55%, rgba(96, 165, 250, 0.6) 2px, transparent 2px),
    radial-gradient(circle at 70% 65%, rgba(255, 170, 50, 0.7) 3px, transparent 3px);
  background-repeat: no-repeat;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pulse {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* TYPOGRAPHY - Bold & Premium */
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 12px;
}

.hero h1 .blue {
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 380px;
  line-height: 1.7;
}

/* BUTTONS - Premium with glow (UPGRADED) */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

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

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-outline {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px) scale(1.02);
}

.btn-outline:active {
  transform: translateY(0) scale(0.98);
}

/* ============================================
   HERO FEATURES - FIXED FOR MOBILE (2 rows, bigger icons)
   ============================================ */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 4px 0;
  transition: transform 0.3s ease;
}

.hero-feature:hover {
  transform: translateX(4px);
}

.hero-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.hero-feature:hover .hero-feature-icon {
  background: rgba(59, 130, 246, 0.25);
}

.hero-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
}

.hero-feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

/* Desktop tablet */
@media (max-width: 1024px) {
  .hero {
    min-height: 600px;
    max-height: 700px;
  }

  .hero-image {
    width: 65%;
  }

  .hero h1 {
    font-size: clamp(34px, 5vw, 48px);
  }

  .hero-content {
    max-width: 440px;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile - 2 rows, bigger icons */
@media (max-width: 768px) {
  .hero {
    min-height: 580px;
    max-height: none;
    height: auto;
    padding: 80px 0 60px;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    opacity: 0.4;
  }

  .hero-image img {
    opacity: 1;
    filter: brightness(0.5) contrast(1.2);
  }

  .hero-image::after {
    background: linear-gradient(
      180deg,
      #030712 0%,
      rgba(3, 7, 18, 0.9) 30%,
      rgba(3, 7, 18, 0.6) 60%,
      #030712 100%
    );
  }

  .hero-container {
    padding: 0 20px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(30px, 7vw, 40px);
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  .hero-btns {
    justify-content: center;
  }

  /* HERO FEATURES - 2 ROWS, BIGGER ICONS */
  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    padding-top: 28px;
  }

  .hero-feature {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .hero-feature-icon {
    width: 52px;
    height: 52px;
  }

  .hero-feature-icon svg {
    width: 26px;
    height: 26px;
  }

  .hero-feature h4 {
    font-size: 14px;
    white-space: normal;
  }

  .btn-primary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero {
    min-height: 500px;
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-feature {
    padding: 10px 8px;
  }

  .hero-feature-icon {
    width: 44px;
    height: 44px;
  }

  .hero-feature-icon svg {
    width: 22px;
    height: 22px;
  }

  .hero-feature h4 {
    font-size: 12px;
  }
}

/* ============================================
   REFERRAL BANNER - FIXED
   ============================================ */
.referral {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 0 40px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.referral-icon {
  width: 56px; 
  height: 56px;
  background: rgba(59,130,246,.15);
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  flex-shrink: 0;
}

.referral-icon svg { 
  width: 28px; 
  height: 28px; 
  stroke: var(--cyan); 
  fill: none; 
  stroke-width: 1.8; 
}

.referral-text { 
  flex: 1; 
  min-width: 180px;
}

.referral-text p { 
  font-size: 13px; 
  color: rgba(255,255,255,.7); 
  margin: 0;
}

.referral-text strong { 
  font-size: 28px; 
  font-weight: 900; 
  color: var(--white); 
  display: block; 
  line-height: 1.1; 
}

.referral-text span { 
  font-size: 13px; 
  color: rgba(255,255,255,.6); 
}

.btn-learn {
  white-space: nowrap;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex; 
  align-items: center; 
  gap: 6px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  text-decoration: none;
}

.btn-learn:hover { 
  background: rgba(255,255,255,.08);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Mobile Responsive - Referral Banner */
@media (max-width: 768px) {
  .referral {
    margin: 0 20px;
    padding: 20px 24px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 16px;
  }

  .referral-icon {
    width: 48px;
    height: 48px;
  }

  .referral-icon svg {
    width: 24px;
    height: 24px;
  }

  .referral-text {
    flex: 1 1 100%;
    text-align: center;
  }

  .referral-text strong {
    font-size: 24px;
  }

  .referral-text span {
    font-size: 12px;
  }

  .btn-learn {
    white-space: normal;
    justify-content: center;
    padding: 12px 28px;
    font-size: 14px;
    width: 100%;
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .referral {
    margin: 0 16px;
    padding: 16px 20px;
    gap: 12px;
  }

  .referral-icon {
    width: 40px;
    height: 40px;
  }

  .referral-icon svg {
    width: 20px;
    height: 20px;
  }

  .referral-text strong {
    font-size: 20px;
  }

  .btn-learn {
    font-size: 13px;
    padding: 10px 20px;
    max-width: 180px;
  }
}

/* ============================================
   ABOUT US SECTION
   ============================================ */
.about-section {
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #050c1a 0%, #0a1535 50%, #050c1a 100%);
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.12);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  width: fit-content;
}

.about-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}

.about-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--blue-lt));
  border-radius: 2px;
  margin-top: 16px;
}

.about-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin: 0;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 4px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2.5;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.about-phone {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-phone-icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.about-phone-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
}

.about-phone-label {
  display: block;
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.about-phone-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.about-btn {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.about-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.45);
}

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

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 12, 26, 0.1) 0%,
    rgba(5, 12, 26, 0.4) 50%,
    rgba(5, 12, 26, 0.8) 100%
  );
  pointer-events: none;
}

.about-image-glow {
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.15), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.about-stats {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 16px 32px;
  gap: 40px;
  z-index: 2;
  width: fit-content;
}

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

.about-stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.about-stat-label {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   ABOUT - RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }

  .about-image-wrapper img {
    height: 380px;
  }

  .about-stats {
    padding: 14px 24px;
    gap: 28px;
  }

  .about-stat-number {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .about-image-wrapper img {
    height: 300px;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
  }

  .about-feature {
    font-size: 13px;
  }

  .about-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .about-phone {
    justify-content: center;
  }

  .about-btn {
    text-align: center;
    white-space: normal;
  }

  .about-stats {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    justify-content: space-around;
    padding: 16px 20px;
    gap: 16px;
    margin-top: -10px;
    border-radius: 0 0 12px 12px;
  }

  .about-content h2::after {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 16px;
  }

  .about-image-wrapper img {
    height: 220px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-feature {
    font-size: 13px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 12px 16px;
  }

  .about-stat-number {
    font-size: 18px;
  }

  .about-stat-label {
    font-size: 10px;
  }

  .about-phone-number {
    font-size: 17px;
  }

  .about-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ============================================
   SECTION HEADER (Shared)
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header h5 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 15px;
  color: var(--gray);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 72px 40px 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px 24px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
  border-color: var(--cyan);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(59, 130, 246, 0.25);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
}

.service-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 12px;
  color: var(--gray);
}

.service-card-featured {
  background: linear-gradient(135deg, #1a4fd6 0%, #2563eb 100%);
  border-color: transparent;
}

.service-card-featured:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.service-card-featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-card-featured .service-icon svg {
  stroke: var(--white);
}

.service-card-featured h4 {
  color: var(--white);
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   PREMIUM WHY CHOOSE - UPGRADED IMAGE
   ============================================ */

/* Premium Network Visualization */
.why-image-placeholder.premium {
  background: linear-gradient(135deg, #050c1a 0%, #0a1535 50%, #06102e 100%);
  position: relative;
  overflow: hidden;
}

.premium-network {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated Rings */
.network-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.15);
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 {
  width: 180px;
  height: 180px;
  animation-delay: 0s;
}

.ring-2 {
  width: 260px;
  height: 260px;
  animation-delay: 0.8s;
}

.ring-3 {
  width: 340px;
  height: 340px;
  animation-delay: 1.6s;
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Premium Center */
.premium-center {
  width: 80px;
  height: 80px;
  background: rgba(59, 130, 246, 0.15);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 60px rgba(96, 165, 250, 0.3);
  animation: centerPulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.premium-center svg {
  stroke: var(--cyan);
  width: 40px;
  height: 40px;
}

@keyframes centerPulse {
  0%, 100% {
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 80px rgba(96, 165, 250, 0.6);
    transform: scale(1.05);
  }
}

/* Floating Particles */
.network-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
  animation: floatParticle 6s ease-in-out infinite;
}

.p1 { top: 20%; left: 15%; animation-delay: 0s; }
.p2 { top: 15%; right: 20%; animation-delay: 0.8s; }
.p3 { bottom: 25%; left: 10%; animation-delay: 1.6s; }
.p4 { bottom: 20%; right: 15%; animation-delay: 2.4s; }
.p5 { top: 45%; left: 5%; animation-delay: 3.2s; }
.p6 { top: 40%; right: 5%; animation-delay: 4s; }

@keyframes floatParticle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translate(20px, -30px) scale(1.5);
    opacity: 1;
  }
  50% {
    transform: translate(-10px, -50px) scale(0.8);
    opacity: 0.6;
  }
  75% {
    transform: translate(15px, -20px) scale(1.2);
    opacity: 0.8;
  }
}

/* ============================================
   NAV - WHATSAPP BUTTON
   ============================================ */

.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: var(--white);
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-whatsapp-nav:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

.btn-whatsapp-nav:hover::before {
  opacity: 1;
}

.btn-whatsapp-nav:active {
  transform: translateY(0) scale(0.98);
}

.btn-whatsapp-nav svg {
  flex-shrink: 0;
}

/* ============================================
   QUOTE MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 40px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--gray);
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
}

.modal-close:hover {
  color: var(--white);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-badge {
  display: inline-block;
  background: rgba(96, 165, 250, 0.08);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.modal-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 15px;
  color: var(--gray);
}

/* Modal Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-form .form-group.full-width {
  grid-column: 1 / -1;
}

.modal-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.06);
}

.modal-form input.error,
.modal-form select.error,
.modal-form textarea.error {
  border-color: #ef4444;
}

.modal-form input.success,
.modal-form select.success,
.modal-form textarea.success {
  border-color: #22c55e;
}

.modal-form .error-message {
  font-size: 12px;
  color: #ef4444;
  display: none;
}

.modal-form .error-message.visible {
  display: block;
}

.modal-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
  cursor: pointer;
}

.modal-form .checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan);
  flex-shrink: 0;
  cursor: pointer;
}

.modal-form .form-status {
  padding: 12px 16px;
  border-radius: 10px;
  display: none;
}

.modal-form .form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid #22c55e;
  color: #22c55e;
}

.modal-form .form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

.modal-form .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Inter', sans-serif;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.modal-form .submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.modal-form .submit-btn:hover::before {
  opacity: 1;
}

.modal-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.modal-form .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.modal-form .submit-btn.loading {
  pointer-events: none;
}

.modal-form .submit-btn svg {
  width: 20px;
  height: 20px;
}

.modal-form .form-security {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin-top: 4px;
}

/* Modal Success */
.modal-form .form-success {
  text-align: center;
  padding: 20px 0;
}

.modal-form .form-success .success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.modal-form .form-success h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-form .form-success p {
  color: var(--gray);
  font-size: 14px;
  max-width: 400px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.modal-form .form-success .success-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.modal-form .form-success .detail-item {
  display: flex;
  flex-direction: column;
}

.modal-form .form-success .detail-item span {
  font-size: 10px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-form .form-success .detail-item strong {
  font-size: 13px;
  color: var(--white);
}

.modal-form .form-success .btn-home {
  display: inline-block;
  padding: 10px 28px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.modal-form .form-success .btn-home:hover {
  border-color: var(--cyan);
  background: rgba(59, 130, 246, 0.05);
}

/* ============================================
   RESPONSIVE - MODAL
   ============================================ */
@media (max-width: 768px) {
  .modal-container {
    padding: 32px 24px;
    margin: 10px;
  }
  
  .modal-form .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .modal-header h2 {
    font-size: 22px;
  }
  
  .modal-form .form-success .success-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .modal-container {
    padding: 24px 16px;
  }
  
  .modal-header h2 {
    font-size: 20px;
  }
  
  .modal-form .submit-btn {
    font-size: 14px;
    padding: 14px 24px;
  }
}

/* ============================================
   WHY CHOOSE US SECTION - IT COMPANY FOCUS
   ============================================ */
.why-choose-section {
  padding: 48px 40px 72px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-left,
.why-choose-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateX(4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.why-card:hover .why-icon {
  background: rgba(59, 130, 246, 0.25);
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.why-choose-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-image-placeholder {
  width: 100%;
  height: 320px;
  border-radius: 14px;
  background: linear-gradient(135deg, #071020 0%, #0d2060 50%, #081230 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.network-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-center {
  width: 60px;
  height: 60px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
  z-index: 2;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
  }
  50% {
    box-shadow: 0 0 60px rgba(96, 165, 250, 0.6);
  }
}

.network-center svg {
  stroke: var(--cyan);
}

.network-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
  animation: pulseDot 2s ease-in-out infinite;
}

.network-dot.dot-1 { top: 15%; left: 15%; animation-delay: 0s; }
.network-dot.dot-2 { top: 15%; right: 15%; animation-delay: 0.3s; }
.network-dot.dot-3 { bottom: 15%; left: 15%; animation-delay: 0.6s; }
.network-dot.dot-4 { bottom: 15%; right: 15%; animation-delay: 0.9s; }
.network-dot.dot-5 { top: 45%; left: 8%; animation-delay: 0.45s; }

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

.network-line {
  position: absolute;
  background: rgba(96, 165, 250, 0.15);
  height: 2px;
}

.network-line.line-1 {
  width: 30%;
  top: 22%;
  left: 28%;
  transform: rotate(-15deg);
}

.network-line.line-2 {
  width: 25%;
  bottom: 28%;
  right: 25%;
  transform: rotate(20deg);
}

.network-line.line-3 {
  width: 20%;
  top: 45%;
  left: 20%;
  transform: rotate(45deg);
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries-section {
  padding: 48px 40px 72px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.12);
}

.industry-icon {
  width: 52px;
  height: 52px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.industry-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
}

.industry-card h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

.industries-cta {
  text-align: center;
  margin-top: 36px;
}

.btn-industry {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-industry:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 40px;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0a1535 0%, #0f1a4a 40%, #0a1535 100%);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 50px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.cta-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 16px;
  color: var(--gray);
  margin: 0;
}

.cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.cta-primary {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.cta-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

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

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  white-space: nowrap;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #060c1a;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 56px 40px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand p { 
  font-size: 13px; 
  color: var(--gray); 
  margin-top: 14px; 
  line-height: 1.7; 
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-image {
  height: 48px;
  width: auto;
  display: block;
}

.footer-col h4 { 
  font-size: 13px; 
  font-weight: 700; 
  margin-bottom: 18px; 
  color: var(--white); 
}

.footer-col ul { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}

.footer-col ul li a { 
  font-size: 13px; 
  color: var(--gray); 
  transition: color .2s; 
}

.footer-col ul li a:hover { 
  color: var(--white); 
}

.contact-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 10px; 
  margin-bottom: 12px; 
  font-size: 13px; 
  color: var(--gray); 
}

.contact-item svg { 
  width: 16px; 
  height: 16px; 
  stroke: var(--cyan); 
  fill: none; 
  stroke-width: 1.8; 
  flex-shrink: 0; 
  margin-top: 2px; 
}

.hours-row { 
  font-size: 13px; 
  color: var(--gray); 
  margin-bottom: 8px; 
}

.hours-row span { 
  color: var(--white); 
  font-weight: 500; 
}

.social-links { 
  display: flex; 
  gap: 12px; 
  margin-top: 20px; 
}

.social-btn {
  width: 36px; 
  height: 36px;
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}

.social-btn:hover { 
  opacity: .85;
  transform: scale(1.05);
}

.fb { background: #1877f2; }
.ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.li { background: #0a66c2; }
.wa { background: #25d366; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; 
  right: 28px;
  width: 52px; 
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 200;
  transition: transform .2s;
}

.whatsapp-fab:hover { 
  transform: scale(1.08); 
}

.whatsapp-fab svg { 
  width: 28px; 
  height: 28px; 
  fill: white; 
}

/* ============================================
   SCROLL-TO-TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-lt);
  color: var(--white);
  border: none;
  cursor: pointer;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.scroll-top:hover {
  background: #1d4ed8;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 30px rgba(37, 99, 235, 0.5);
}

.scroll-top:active {
  transform: translateY(0) scale(0.95);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-notification {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: var(--card);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  max-width: 400px;
  animation: toastSlideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.toast-notification.toast-success { border-color: #22c55e; background: rgba(15, 26, 53, 0.95); }
.toast-notification.toast-error { border-color: #ef4444; background: rgba(15, 26, 53, 0.95); }
.toast-notification.toast-warning { border-color: #f59e0b; background: rgba(15, 26, 53, 0.95); }
.toast-notification.toast-info { border-color: var(--cyan); background: rgba(15, 26, 53, 0.95); }

.toast-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }
.toast-message { flex: 1; line-height: 1.5; }

.toast-close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}

.toast-close:hover {
  color: var(--white);
  transform: rotate(90deg);
}

@keyframes toastSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toastSlideDown {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
}

.toast-notification.hiding {
  animation: toastSlideDown 0.3s ease-in forwards;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-lt);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 999;
  font-weight: 600;
  transition: top 0.3s;
}

.skip-to-content:focus {
  top: 0;
}

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

/* ============================================
   CTA - RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .cta-container {
    padding: 40px 50px;
  }

  .cta-buttons {
    flex-shrink: 1;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 48px 20px;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
    gap: 24px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-buttons {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .cta-primary,
  .cta-secondary {
    padding: 14px 28px;
    font-size: 14px;
    white-space: normal;
    flex: 1;
    min-width: 180px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-container {
    padding: 32px 20px;
  }

  .cta-content h2 {
    font-size: 22px;
  }

  .cta-content p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
   
/* Responsive logo sizes */
@media (max-width: 768px) {
  .logo-image {
    height: 40px;
  }
  
  .footer-logo-image {
    height: 40px;
  }
  
  /* Mobile logo inside nav */
  .nav-links .mobile-logo {
    display: flex;
    justify-content: center;
    padding: 12px 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
  }
  
  .mobile-logo-image {
    height: 32px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 32px;
  }
  
  .mobile-logo-image {
    height: 28px;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
  }

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

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

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-choose-left,
  .why-choose-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .referral { margin: 0 20px; flex-wrap: wrap; }
  footer { padding: 40px 20px 24px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding: 80px 32px 32px;
    transition: right 0.3s ease-in-out;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 105;
    align-items: stretch;
    font-size: 16px;
    overflow-y: auto;
  }

  .nav-links a {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.2s, color 0.2s;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background: rgba(59, 130, 246, 0.1);
    color: var(--white);
  }

  .nav-links a.active {
    color: var(--cyan);
    background: rgba(59, 130, 246, 0.08);
    border-bottom: none;
    padding-bottom: 12px;
  }

  .nav-links .btn-quote {
    margin-top: 16px;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 8px;
    background: var(--blue-lt);
    border: none;
    color: var(--white);
    transition: background 0.2s;
  }

  .nav-links .btn-quote:hover {
    background: #1d4ed8;
    color: var(--white);
  }

  .nav-links:not(.mobile-open) { display: none; }
  .nav-links.mobile-open { display: flex; }
  
  /* Mobile logo in menu */
  .nav-links .mobile-logo {
    display: flex;
    justify-content: center;
    padding: 12px 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
  }

  .services-section { padding: 48px 20px 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .service-card { padding: 20px 16px 18px; }
  .service-icon { width: 48px; height: 48px; }
  .service-icon svg { width: 22px; height: 22px; }
  .service-card h4 { font-size: 14px; }

  .why-choose-section { padding: 32px 20px 48px; }
  .why-choose-left,
  .why-choose-right { grid-template-columns: 1fr; gap: 20px; }
  .why-image-placeholder { height: 200px; }

  .industries-section { padding: 32px 20px 48px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .industry-card { padding: 20px 16px 18px; }

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

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card { padding: 16px 12px 14px; }
  .service-icon { width: 40px; height: 40px; margin-bottom: 10px; }
  .service-icon svg { width: 18px; height: 18px; }
  .service-card h4 { font-size: 13px; }

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

  .nav-links { width: 85%; padding: 72px 24px 24px; }
  .nav-links a { font-size: 15px; padding: 10px 14px; }
  .nav-links .btn-quote { padding: 12px 16px; font-size: 15px; }

  .scroll-top { bottom: 80px; right: 20px; width: 40px; height: 40px; }
  .scroll-top svg { width: 18px; height: 18px; }

  .toast-notification {
    bottom: 90px;
    right: 20px;
    left: 20px;
    max-width: none;
    padding: 14px 18px;
    font-size: 13px;
  }
  .toast-icon { font-size: 18px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links { gap: 20px; font-size: 13px; }
  .nav-links .btn-quote { padding: 6px 16px; font-size: 13px; }
}

/* ============================================
   FOOTER - DESIGN CREDIT
   ============================================ */
.footer-design-credit {
  font-size: 12px;
  color: var(--gray);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-design-credit:hover {
  color: var(--cyan);
}

.footer-design-credit strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-design-credit:hover strong {
  color: var(--white);
}

/* ============================================
   EXTRA LARGE SCREENS (100+ inch monitors)
   ============================================ */

/* For screens 1800px and larger (100+ inch monitors) */
@media (min-width: 1800px) {
  /* Increase base font size for better readability on large screens */
  body {
    font-size: 18px;
  }

  /* Navigation - More spacing */
  nav {
    padding: 20px 60px;
  }

  .logo-image {
    height: 56px;
  }

  .nav-links {
    gap: 40px;
    font-size: 16px;
  }

  .btn-whatsapp-nav {
    padding: 10px 24px;
    font-size: 16px;
  }

  /* Hero Section - Full screen experience */
  .hero {
    min-height: 850px;
    max-height: 1000px;
  }

  .hero-container {
    max-width: 1400px;
    padding: 0 60px;
  }

  .hero-content {
    max-width: 650px;
  }

  .hero h1 {
    font-size: clamp(56px, 5.5vw, 80px);
  }

  .hero-sub {
    font-size: 20px;
    max-width: 480px;
  }

  .hero-features {
    gap: 32px;
    margin-top: 60px;
    padding-top: 48px;
  }

  .hero-feature-icon {
    width: 48px;
    height: 48px;
  }

  .hero-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-feature h4 {
    font-size: 17px;
  }

  .btn-primary,
  .btn-outline {
    padding: 16px 36px;
    font-size: 17px;
  }

  /* Hero Image - Larger */
  .hero-image {
    width: 58%;
  }

  /* Referral Banner */
  .referral {
    margin: 0 60px;
    padding: 28px 40px;
    gap: 32px;
  }

  .referral-icon {
    width: 64px;
    height: 64px;
  }

  .referral-icon svg {
    width: 32px;
    height: 32px;
  }

  .referral-text strong {
    font-size: 32px;
  }

  .btn-learn {
    padding: 12px 28px;
    font-size: 16px;
  }

  /* About Section */
  .about-section {
    padding: 100px 60px;
  }

  .about-container {
    max-width: 1400px;
  }

  .about-grid {
    gap: 80px;
  }

  .about-content h2 {
    font-size: clamp(36px, 3.2vw, 48px);
  }

  .about-description {
    font-size: 18px;
  }

  .about-image-wrapper img {
    height: 520px;
  }

  .about-stats {
    padding: 20px 48px;
    gap: 60px;
  }

  .about-stat-number {
    font-size: 28px;
  }

  .about-btn {
    padding: 16px 40px;
    font-size: 17px;
  }

  /* Services Grid - 4 columns with more spacing */
  .services-section {
    padding: 80px 60px 60px;
  }

  .services-grid {
    max-width: 1400px;
    gap: 28px;
  }

  .service-card {
    padding: 32px 24px 28px;
  }

  .service-icon {
    width: 64px;
    height: 64px;
  }

  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .service-card h4 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 14px;
  }

  /* Why Choose Section */
  .why-choose-section {
    padding: 60px 60px 80px;
  }

  .why-choose-grid {
    max-width: 1400px;
    gap: 60px;
  }

  .why-icon {
    width: 60px;
    height: 60px;
  }

  .why-icon svg {
    width: 28px;
    height: 28px;
  }

  .why-card h4 {
    font-size: 18px;
  }

  .why-card p {
    font-size: 15px;
  }

  .why-image-placeholder {
    height: 380px;
  }

  /* Industries Section */
  .industries-section {
    padding: 60px 60px 80px;
  }

  .industries-grid {
    max-width: 1400px;
    gap: 28px;
  }

  .industry-card {
    padding: 32px 24px 28px;
  }

  .industry-icon {
    width: 60px;
    height: 60px;
  }

  .industry-icon svg {
    width: 28px;
    height: 28px;
  }

  .industry-card h5 {
    font-size: 16px;
  }

  /* CTA Section */
  .cta-section {
    padding: 100px 60px;
  }

  .cta-container {
    max-width: 1400px;
    padding: 60px 80px;
  }

  .cta-content h2 {
    font-size: clamp(32px, 2.8vw, 44px);
  }

  .cta-content p {
    font-size: 18px;
  }

  .cta-primary,
  .cta-secondary {
    padding: 16px 40px;
    font-size: 17px;
  }

  /* Footer */
  footer {
    padding: 64px 60px 40px;
  }

  .footer-grid {
    max-width: 1400px;
    gap: 60px;
    padding-bottom: 48px;
  }

  .footer-logo-image {
    height: 56px;
  }

  .footer-brand p {
    font-size: 15px;
  }

  .footer-col h4 {
    font-size: 15px;
  }

  .footer-col ul li a {
    font-size: 15px;
  }

  .contact-item {
    font-size: 15px;
  }

  .hours-row {
    font-size: 15px;
  }

  .footer-bottom {
    font-size: 14px;
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* For screens 2200px and larger (ultra-large) */
@media (min-width: 2200px) {
  .hero {
    min-height: 950px;
    max-height: 1100px;
  }

  .hero-container {
    max-width: 1600px;
    padding: 0 80px;
  }

  .hero h1 {
    font-size: clamp(64px, 5vw, 88px);
  }

  .hero-features {
    gap: 40px;
  }

  .services-grid {
    max-width: 1600px;
    gap: 32px;
    grid-template-columns: repeat(4, 1fr);
  }

  .why-choose-grid {
    max-width: 1600px;
    gap: 80px;
  }

  .cta-container {
    max-width: 1600px;
    padding: 70px 100px;
  }

  .footer-grid {
    max-width: 1600px;
    gap: 80px;
  }

  /* Larger container for content */
  .about-container,
  .services-container,
  .solutions-container,
  .pricing-container {
    max-width: 1600px;
  }

  /* Solution cards larger */
  .solutions-grid {
    max-width: 1600px;
    gap: 28px;
  }

  .solution-card {
    padding: 32px 24px 28px;
  }

  .solution-card-icon {
    width: 60px;
    height: 60px;
  }

  .solution-card-icon svg {
    width: 28px;
    height: 28px;
  }

  .solution-card h3 {
    font-size: 19px;
  }

  .solution-card p {
    font-size: 15px;
  }

  /* Pricing section */
  .pricing-section {
    padding: 80px 60px 90px;
  }

  .pricing-grid {
    max-width: 1600px;
    gap: 28px;
  }

  .pricing-card {
    padding: 32px 24px;
  }
}

/* For screens 3000px and larger (very large displays) */
@media (min-width: 3000px) {
  body {
    font-size: 20px;
  }

  .hero {
    min-height: 1100px;
    max-height: 1300px;
  }

  .hero h1 {
    font-size: 96px;
  }

  .hero-container {
    max-width: 1800px;
    padding: 0 100px;
  }

  .hero-features {
    gap: 48px;
  }

  .services-grid,
  .solutions-grid {
    max-width: 1800px;
    gap: 36px;
  }

  .about-container,
  .cta-container,
  .footer-grid,
  .why-choose-grid {
    max-width: 1800px;
  }

  .footer-grid {
    gap: 100px;
  }
}

/* Fix for very wide screens - prevent content from stretching too much */
@media (min-width: 2500px) {
  .hero-container,
  .about-container,
  .services-grid,
  .solutions-grid,
  .why-choose-grid,
  .cta-container,
  .footer-grid,
  .pricing-grid {
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   CLIENTS & PARTNERS SLIDERS
   ============================================ */
.clients-partners-section {
    padding: 80px 40px 60px;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.clients-group,
.partners-group {
    text-align: center;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cyan);
    background: rgba(59, 130, 246, 0.08);
    padding: 4px 18px;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    margin-bottom: 12px;
}

.clients-group h2,
.partners-group h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
}

.section-subtext {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 32px;
}

/* ===== SLIDER WRAPPER ===== */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 8px 0;
    margin: 0 -8px;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
    padding: 4px 8px;
}

/* ===== LOGO ITEMS ===== */
.logo-item {
    flex: 0 0 calc(16.666% - 20px);
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-height: 110px;
    justify-content: center;
    cursor: default;
    user-select: none;
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
    border-color: var(--cyan);
}

.logo-item img {
    max-width: 80%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.6) contrast(1.2);
    transition: filter 0.4s ease, transform 0.4s ease;
    display: block;
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.logo-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.logo-item:hover .logo-label {
    color: var(--white);
}

/* Different hover effect for partner logos */
.partner-logo img {
    filter: grayscale(100%) brightness(0.5) contrast(1.1);
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
}

/* ===== SLIDER ARROWS ===== */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.slider-wrapper:hover .slider-arrow {
    opacity: 1;
    pointer-events: auto;
}

.slider-arrow:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--cyan);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.slider-arrow.clients-prev,
.slider-arrow.partners-prev {
    left: 0;
}

.slider-arrow.clients-next,
.slider-arrow.partners-next {
    right: 0;
}

/* ===== SLIDER DOTS ===== */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-dots .dot.active {
    background: var(--cyan);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    width: 28px;
    border-radius: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .logo-item {
        flex: 0 0 calc(20% - 20px);
        min-width: 120px;
    }
}

@media (max-width: 992px) {
    .logo-item {
        flex: 0 0 calc(25% - 18px);
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .clients-partners-section {
        padding: 48px 20px 40px;
    }

    .section-container {
        gap: 48px;
    }

    .logo-item {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 80px;
        padding: 14px 12px;
        min-height: 90px;
    }

    .logo-item img {
        max-height: 36px;
    }

    .logo-label {
        font-size: 9px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        opacity: 1;
        pointer-events: auto;
        background: rgba(10, 15, 30, 0.9);
    }

    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }

    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }

    .slider-dots .dot.active {
        width: 20px;
    }

    .clients-group h2,
    .partners-group h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .clients-partners-section {
        padding: 32px 12px 32px;
    }

    .section-container {
        gap: 32px;
    }

    .logo-item {
        flex: 0 0 calc(50% - 12px);
        min-width: 60px;
        padding: 12px 8px;
        min-height: 75px;
    }

    .logo-item img {
        max-height: 30px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
    }

    .slider-arrow svg {
        width: 14px;
        height: 14px;
    }

    .slider-dots {
        gap: 6px;
    }

    .slider-dots .dot {
        width: 6px;
        height: 6px;
    }

    .slider-dots .dot.active {
        width: 16px;
    }
}

/* ===== LARGE SCREENS ===== */
@media (min-width: 1800px) {
    .clients-partners-section {
        padding: 100px 60px 80px;
    }

    .section-container {
        max-width: 1400px;
        gap: 100px;
    }

    .logo-item {
        flex: 0 0 calc(16.666% - 28px);
        min-width: 160px;
        padding: 28px 24px;
        min-height: 130px;
    }

    .logo-item img {
        max-height: 60px;
    }

    .logo-label {
        font-size: 13px;
    }

    .clients-group h2,
    .partners-group h2 {
        font-size: 38px;
    }

    .section-subtext {
        font-size: 17px;
    }

    .slider-arrow {
        width: 52px;
        height: 52px;
    }

    .slider-arrow svg {
        width: 24px;
        height: 24px;
    }
}