/* ============================================================
   UNIQUE FOREIGN TECHNOLOGIES — Main Stylesheet
   ============================================================ */

/* ── ROOT VARIABLES ── */
:root {
  --primary:        #1a56db;
  --primary-dark:   #1344b3;
  --primary-light:  #3b82f6;
  --accent:         #00d4ff;
  --accent2:        #7c3aed;
  --white:          #ffffff;
  --light:          #f0f4ff;
  --light2:         #e8ecff;
  --gray:           #6b7280;
  --gray-light:     #9ca3af;
  --dark:           #0f172a;
  --dark2:          #1e293b;
  --card-bg:        rgba(255,255,255,0.07);
  --glass:          rgba(255,255,255,0.12);
  --shadow-sm:      0 4px 16px rgba(26,86,219,0.08);
  --shadow:         0 20px 60px rgba(26,86,219,0.15);
  --shadow-lg:      0 30px 80px rgba(26,86,219,0.22);
  --radius-sm:      10px;
  --radius:         16px;
  --radius-lg:      24px;
  --transition:     all 0.35s cubic-bezier(0.4,0,0.2,1);
  --nav-height:     80px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #1e293b;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: 'Poppins', sans-serif;
  outline: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── PRELOADER ── */
/* ── CONTAINER ── */
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION BASICS ── */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(26,86,219,.1), rgba(0,212,255,.08));
  border: 1px solid rgba(26,86,219,.25);
  color: var(--primary);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag--light {
  background: rgba(0,212,255,.1);
  border-color: rgba(0,212,255,.3);
  color: var(--accent);
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: var(--dark);
  line-height: 1.12; margin-bottom: 16px;
}
.section-title--white { color: #fff; }
.section-title span, .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 17px; color: var(--gray);
  line-height: 1.75; max-width: 620px;
  margin: 0 auto;
}
.section-sub--white { color: rgba(255,255,255,0.7); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600; font-size: 15px;
  cursor: pointer; transition: var(--transition);
  border: none; outline: none; white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 8px 25px rgba(26,86,219,.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26,86,219,.45);
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--primary); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-green {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 25px rgba(37,211,102,.3);
}
.btn-green:hover { transform: translateY(-3px); }
.btn-full { width: 100%; justify-content: center; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 12px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: var(--transition);
}
#navbar.scrolled {
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  border-bottom-color: rgba(26,86,219,0.15);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

/* ── LOGO ── */
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo-img {
  display: block;
  width: 180px;
  height: 60px;
  object-fit: cover;
  object-position: center;
  background: transparent;
}
#navbar.scrolled .nav-logo-img {
  width: 160px;
  height: 52px;
}
.footer-logo-img {
  display: block;
  width: 180px;
  height: 60px;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  color: #1e293b;
  font-size: 14px; font-weight: 600;
  padding: 9px 14px; border-radius: 9px;
  display: flex; align-items: center; gap: 5px;
  transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--primary); background: rgba(26,86,219,0.07); }
.nav-menu > li > a .nav-arrow { font-size: 10px; transition: transform 0.25s ease; }
.nav-menu > li:hover > a .nav-arrow { transform: rotate(180deg); }

/* Mega Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(13,21,42,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px; padding: 18px;
  min-width: 580px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.nav-menu > li:hover .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.drop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 11px;
  transition: var(--transition); cursor: pointer;
}
.drop-item:hover { background: rgba(26,86,219,0.22); }
.drop-icon {
  width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(26,86,219,0.2), rgba(0,212,255,0.1));
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 17px;
}
.drop-label { font-size: 13px; font-weight: 600; color: #fff; display: block; }
.drop-desc { font-size: 11px; color: rgba(255,255,255,0.45); display: block; margin-top: 2px; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  transition: var(--transition); border: none; cursor: pointer;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,86,219,0.4); }
.nav-admin {
  padding: 10px 22px;
  background: rgba(26,86,219,0.08);
  border: 1.5px solid rgba(26,86,219,0.25);
  color: var(--primary); border-radius: 50px;
  font-size: 13px; font-weight: 600;
  transition: var(--transition); cursor: pointer;
}
.nav-admin:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Hamburger — dark lines for white navbar */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; width: 40px; height: 40px; }
.hamburger span { width: 24px; height: 2.5px; background: #1e293b; display: block; transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(13,21,42,0.98);
  backdrop-filter: blur(20px);
  padding: 16px; z-index: 999;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 13px 16px;
  color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500;
  border-radius: 10px; transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); color: #fff; padding-left: 22px; }
.mobile-nav a.cta { background: var(--primary); color: #fff; margin-top: 12px; text-align: center; border: none; }
.mobile-nav a.mobile-billing { background: rgba(26,86,219,0.15); color: var(--accent); border: 1px solid rgba(26,86,219,0.3); font-weight: 600; border-radius: 10px; margin-top: 6px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 180px 0 90px;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6b 55%, #0d2247 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,86,219,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,86,219,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-title { font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: #fff; margin-top: 12px; line-height: 1.1; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.65); margin-top: 14px; max-width: 580px; margin-inline: auto; }

/* ── CARDS ── */
.card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid rgba(26,86,219,0.08);
  transition: var(--transition); overflow: hidden;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(26,86,219,0.18); }
.card-pad { padding: 28px; }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary);
  margin-bottom: 18px; transition: var(--transition);
}
.card:hover .card-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; }
.card-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.card-text { font-size: 14px; color: var(--gray); line-height: 1.72; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 13px; font-weight: 600; margin-top: 16px; transition: var(--transition); }
.card-link:hover { gap: 10px; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.grid-auto-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.grid-center { align-items: center; }

/* ── STATS ── */
.stats-section {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2744 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231a56db' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-value {
  font-size: clamp(44px, 6vw, 68px); font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-suffix {
  font-size: clamp(28px, 4vw, 40px); font-weight: 900;
  background: linear-gradient(135deg, var(--accent), #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-divider { width: 40px; height: 3px; background: linear-gradient(to right, var(--primary), var(--accent)); border-radius: 2px; margin: 12px auto; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ── FLOATING ELEMENTS ── */
.float-card {
  position: absolute; z-index: 4;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  animation: floatAnim 4s ease-in-out infinite;
}
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.float-card-icon { font-size: 24px; color: var(--accent); }
.float-card-num { font-size: 17px; font-weight: 800; color: #fff; }
.float-card-label { font-size: 11px; color: rgba(255,255,255,0.65); }

/* ── CLIENTS CAROUSEL ── */
.clients-wrap { overflow: hidden; position: relative; }
.clients-wrap::before,
.clients-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.clients-wrap::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.clients-wrap::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }
.clients-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: scrollLogos 35s linear infinite;
}
.clients-wrap:hover .clients-track { animation-play-state: paused; }
.client-chip {
  width: 180px; height: 90px;
  border: 1.5px solid rgba(26,86,219,0.1);
  border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 10px 16px; background: #fff;
  font-size: 13px; font-weight: 700; color: #475569;
  /* NO grayscale, NO opacity fade */
  filter: none;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}
.client-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.client-chip:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(26,86,219,0.14);
  transform: translateY(-3px);
}
@keyframes scrollLogos { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── TESTIMONIAL ── */
.test-slider { overflow: hidden; }
.test-track { display: flex; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.test-card { min-width: calc(100%/3); padding: 12px; }
.test-inner {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 30px;
}
.test-stars { color: #f59e0b; font-size: 15px; display: flex; gap: 3px; margin-bottom: 14px; }
.test-quote { font-size: 15px; color: rgba(255,255,255,0.8); font-style: italic; line-height: 1.75; margin-bottom: 22px; }
.test-author { display: flex; align-items: center; gap: 13px; }
.test-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: #fff;
}
.test-name { font-size: 15px; font-weight: 700; color: #fff; }
.test-co { font-size: 12px; color: rgba(255,255,255,0.45); }
.test-nav { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }
.test-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: #fff;
  cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.test-btn:hover { background: var(--primary); border-color: var(--primary); }

/* ── FAQ ── */
.faq-section { background: linear-gradient(135deg,#f8faff,#eef2ff); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1060px;
  margin-inline: auto;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid rgba(26,86,219,0.08);
  box-shadow: 0 2px 12px rgba(26,86,219,0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 8px 28px rgba(26,86,219,0.12);
  border-color: rgba(26,86,219,0.2);
}
.faq-item.open {
  border-color: rgba(26,86,219,0.3);
  box-shadow: 0 8px 32px rgba(26,86,219,0.14);
}
.faq-q {
  width: 100%;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: none;
  text-align: left;
}
.faq-q span {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.45;
  font-family: var(--font);
  transition: color 0.2s;
}
.faq-item.open .faq-q span,
.faq-q:hover span { color: var(--primary); }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #eef2ff;
  border: 1.5px solid rgba(26,86,219,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-item.open .faq-toggle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(180deg);
  box-shadow: 0 4px 12px rgba(26,86,219,0.35);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.4s ease, padding 0.35s ease;
  border-top: 0px solid transparent;
}
.faq-a.open {
  max-height: 260px;
  padding: 0 22px 20px;
  border-top: 1px solid rgba(26,86,219,0.08);
}
.faq-a p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.8;
  padding-top: 14px;
}

/* ── NEWSLETTER ── */
.newsletter-bar {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h2 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.newsletter-text p { font-size: 15px; color: rgba(255,255,255,0.72); }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 500px; min-width: 280px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; border-radius: 50px;
  border: none; font-size: 14px; background: rgba(255,255,255,0.15);
  color: #fff;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form button {
  padding: 14px 26px; border-radius: 50px;
  background: #fff; color: var(--primary);
  border: none; font-weight: 700; font-size: 14px;
  cursor: pointer; white-space: nowrap;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--accent); color: var(--dark); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.48); line-height: 1.75; margin: 16px 0 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: #fff;
  margin-bottom: 22px; text-transform: uppercase; letter-spacing: 1px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 13.5px; color: rgba(255,255,255,0.48);
  display: flex; align-items: center; gap: 7px;
  transition: var(--transition);
}
.footer-links a i { font-size: 10px; color: var(--primary); }
.footer-links a:hover { color: rgba(255,255,255,0.85); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-item { display: flex; gap: 11px; }
.footer-contact-item i { color: var(--primary); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.65; }
.footer-contact-item a { color: rgba(255,255,255,0.48); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.38); }
.footer-bottom p i { color: #ef4444; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.38); transition: var(--transition); }
.footer-bottom-links a:hover { color: #fff; }

/* ── ADMIN MODAL ── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(5,12,36,0.88);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  padding: 20px;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff; border-radius: 24px;
  padding: 48px 42px; width: 100%; max-width: 440px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
}
.modal-backdrop.open .modal-box { transform: none; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: var(--light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray); font-size: 15px;
  transition: var(--transition);
}
.modal-close:hover { background: var(--primary); color: #fff; }
.modal-logo { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 24px; }
.modal-title { font-size: 24px; font-weight: 800; color: var(--dark); text-align: center; margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--gray); text-align: center; margin-bottom: 28px; }
.modal-field { position: relative; margin-bottom: 16px; }
.modal-field i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--gray-light); font-size: 15px; }
.modal-field input {
  width: 100%; padding: 14px 16px 14px 44px;
  border: 1.5px solid rgba(26,86,219,0.2);
  border-radius: 12px; font-size: 14px; color: var(--dark);
  transition: var(--transition);
}
.modal-field input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,86,219,0.1); }
.modal-footer-text { text-align: center; margin-top: 18px; font-size: 12.5px; color: var(--gray); }
.modal-footer-text a { color: var(--primary); font-weight: 600; }

/* ── FIXED WIDGETS ── */
.scroll-top-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  box-shadow: 0 8px 25px rgba(26,86,219,0.38);
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.scroll-top-btn.show { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { transform: translateY(-3px); }

.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.32);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: #fff; }
.text-gray { color: var(--gray); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }

/* ── SUCCESS/ERROR MESSAGES ── */
.alert {
  padding: 14px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  display: none; margin-top: 12px;
}
.alert.show { display: flex; align-items: center; gap: 10px; }
.alert-success { background: linear-gradient(135deg,#10b981,#059669); color: #fff; }
.alert-error { background: linear-gradient(135deg,#ef4444,#dc2626); color: #fff; }
