/* ════════════════════════════════════════
   CAFLink – Main Stylesheet (White Theme)
   ════════════════════════════════════════ */

:root {
  --blue:    #0057ff;
  --cyan:    #00b4d8;
  --blue-lt: #e8f0ff;
  --blue-md: #c2d4ff;
  --accent:  #ff5a1f;
  --white:   #ffffff;
  --off:     #f6f8fc;
  --border:  #e2e8f0;
  --text:    #1a2236;
  --muted:   #64748b;
  --shadow:  0 2px 24px rgba(0,87,255,0.08);
  --shadow-lg: 0 8px 48px rgba(0,87,255,0.14);
  --grad:    linear-gradient(135deg, #0057ff 0%, #00b4d8 100%);
  --grad-soft: linear-gradient(135deg, #e8f0ff 0%, #e0f7fc 100%);
  --radius:  14px;
  --radius-lg: 22px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "DM Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0f4ff; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--blue); color: #fff; }

/* ════════════════════════════════════════
   NOTIFICATION BAR
   ════════════════════════════════════════ */
#notif-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 2100;
  background: var(--grad); color: #fff;
  height: 0; overflow: hidden; transition: height 0.4s cubic-bezier(.4,0,.2,1);
}
#notif-bar.show { height: 42px; }
.notif-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 32px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.01em;
}
.notif-inner a { color: #fff; font-weight: 700; }
.notif-close {
  background: rgba(255,255,255,0.2); border: none; color: #fff;
  width: 24px; height: 24px; border-radius: 50%; cursor: pointer;
  font-size: 0.85rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.notif-close:hover { background: rgba(255,255,255,0.35); }

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 2000;
  height: 70px; transition: top 0.4s ease, box-shadow 0.3s;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
#main-nav.notif-open { top: 42px; }
#main-nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 32px;
}
/* Nav logo fix */
.nav-logo img {
  height: 95px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  font-weight: 600; padding: 8px 16px; border-radius: 8px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-lt); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn-nav {
  background: var(--grad); color: #fff; border: none;
  padding: 10px 22px; border-radius: 8px;
  font-family: inherit; font-size: 0.88rem; font-weight: 700;
  cursor: pointer; letter-spacing: 0.03em;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 20px rgba(0,87,255,0.25);
  white-space: nowrap;
}
.btn-nav:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(0,87,255,0.35); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px; background: none; border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 32px 28px; z-index: 1999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.mobile-nav.active { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  color: var(--text); text-decoration: none; font-size: 1rem;
  font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.2s;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .btn-nav { margin-top: 16px; text-align: center; display: block; }

/* ════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════ */
#home {
  padding-top: 70px;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,87,255,0.07) 0%, transparent 70%),
    var(--white);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,87,255,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 32px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-left { position: relative; z-index: 1; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-lt); border: 1px solid var(--blue-md);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.78rem; font-weight: 700; color: var(--blue);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px;
  animation: slideDown 0.5s ease both;
}
.hero-pill .dot { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }
@keyframes slideDown { from{opacity:0;transform:translateY(-12px)} to{opacity:1;transform:none} }

.hero-h1 {
  font-family: 'Syne', 'Trebuchet MS', 'Arial Black', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.025em;
  margin-bottom: 22px;
  animation: fadeUp 0.55s 0.1s ease both;
}
.hero-h1 .grad {
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-p {
  font-size: 1.1rem; color: var(--muted); line-height: 1.75;
  max-width: 480px; margin-bottom: 36px;
  animation: fadeUp 0.55s 0.2s ease both;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp 0.55s 0.3s ease both; }
.btn-primary {
  background: var(--grad); color: #fff; border: none;
  padding: 14px 28px; border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; box-shadow: 0 4px 24px rgba(0,87,255,0.3);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(0,87,255,0.4); }
.btn-secondary {
  background: var(--white); color: var(--blue); border: 2px solid var(--blue-md);
  padding: 14px 28px; border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--blue); background: var(--blue-lt); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 36px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.55s 0.4s ease both;
}
.stat-n { font-family: 'Syne', 'Trebuchet MS', 'Arial Black', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue); }
.stat-l { font-size: 0.78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

.hero-right {
  position: relative; animation: fadeUp 0.55s 0.2s ease both;
}
.hero-card-main {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  min-height: 340px;
}
.hero-logo-img { width: 280px; max-width: 100%; height: auto; }
.float-badge {
  position: absolute; bottom: -16px; right: 20px;
  background: var(--grad); color: #fff; border-radius: 12px;
  padding: 14px 20px; font-size: 0.82rem; font-weight: 700; text-align: center;
  box-shadow: 0 6px 28px rgba(0,87,255,0.4); line-height: 1.4;
}
.float-badge-2 {
  position: absolute; top: -16px; left: 20px;
  background: var(--white); border: 1px solid var(--border);
  color: var(--text); border-radius: 12px;
  padding: 12px 18px; font-size: 0.82rem; font-weight: 700;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px;
}

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }

/* ════════════════════════════════════════
   TICKER BAND
   ════════════════════════════════════════ */
.ticker-band {
  background: var(--grad); overflow: hidden;
  padding: 12px 0; border-top: none;
}
.ticker-track { display: flex; white-space: nowrap; animation: ticker 32s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { padding: 0 40px; font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 0.06em; text-transform: uppercase; }
.ticker-item::before { content: '◆ '; color: rgba(255,255,255,0.5); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════════════════════════════════════════
   SHARED SECTION STYLES
   ════════════════════════════════════════ */
section { padding: 96px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; background: var(--blue-lt); color: var(--blue);
  border: 1px solid var(--blue-md); border-radius: 100px;
  padding: 4px 16px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', 'Trebuchet MS', 'Arial Black', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.15;
}
.section-sub { font-size: 1rem; color: var(--muted); max-width: 520px; margin: 12px auto 0; line-height: 1.7; }

/* ════════════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════════════ */
#about { background: var(--off); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-side { position: relative; }
.about-img-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.about-logo { width: 240px; max-width: 100%; }
.about-chip {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--grad); color: #fff; border-radius: 14px;
  padding: 14px 20px; font-size: 0.82rem; font-weight: 700; line-height: 1.4;
  box-shadow: 0 6px 28px rgba(0,87,255,0.35); text-align: center;
}
.about-chip-2 {
  position: absolute; top: -18px; left: -18px;
  background: var(--white); border: 1px solid var(--border);
  color: var(--text); border-radius: 14px;
  padding: 12px 18px; font-size: 0.85rem; font-weight: 700;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
}
.about-text h2 { font-family: 'Syne', 'Trebuchet MS', 'Arial Black', sans-serif; font-size: clamp(1.8rem,3.5vw,2.5rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; }
.check-icon { width: 24px; height: 24px; background: var(--blue-lt); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--blue); font-weight: 900; flex-shrink: 0; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
.team-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 16px; text-align: center; transition: border-color 0.2s, box-shadow 0.2s;
}
.team-card:hover { border-color: var(--blue-md); box-shadow: var(--shadow); }
.team-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--grad); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; color: #fff; }
.team-name { font-size: 0.88rem; font-weight: 700; }
.team-role { font-size: 0.75rem; color: var(--muted); margin-top: 3px; }

/* ════════════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════════════ */
#services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; cursor: pointer; position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.svc-card:hover { border-color: var(--blue-md); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--grad-soft); border: 1px solid var(--blue-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.svc-title { font-family: 'Syne', 'Trebuchet MS', 'Arial Black', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.svc-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.svc-features { list-style: none; margin-bottom: 24px; }
.svc-features li { font-size: 0.82rem; color: var(--muted); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.svc-features li:last-child { border-bottom: none; }
.svc-features li::before { content: '→'; color: var(--blue); font-size: 0.75rem; flex-shrink: 0; }
.svc-arrow { color: var(--blue); font-size: 0.88rem; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.svc-card:hover .svc-arrow { gap: 8px; }
.loading-card { background: var(--off); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ════════════════════════════════════════
   PROCESS SECTION
   ════════════════════════════════════════ */
#process { background: var(--off); }
.process-wrap { display: flex; gap: 0; position: relative; flex-wrap: wrap; gap: 20px; }
.process-wrap::before {
  content: ''; position: absolute; top: 36px; left: 40px; right: 40px; height: 2px;
  background: var(--blue-md); z-index: 0;
}
.proc-step { flex: 1; min-width: 160px; text-align: center; position: relative; z-index: 1; }
.proc-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--blue-md);
  margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', 'Trebuchet MS', 'Arial Black', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--blue);
  box-shadow: var(--shadow); transition: background 0.3s, border-color 0.3s;
}
.proc-step:hover .proc-num { background: var(--grad); border-color: var(--blue); color: #fff; }
.proc-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.proc-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ════════════════════════════════════════
   TECH STACK
   ════════════════════════════════════════ */
#tech { background: var(--white); }
.tech-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tech-chip {
  background: var(--off); border: 1px solid var(--border); color: var(--muted);
  border-radius: 100px; padding: 8px 18px; font-size: 0.85rem; font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.tech-chip:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-lt); }

/* ════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════ */
#testimonials { background: var(--off); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: box-shadow 0.25s, border-color 0.25s;
}
.testi-card:hover { box-shadow: var(--shadow-lg); border-color: var(--blue-md); }
.stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-q { font-size: 1.2rem; color: var(--blue-md); font-weight: 700; margin-bottom: 6px; font-family: Georgia, serif; }
.testi-text { font-size: 0.9rem; color: var(--muted); line-height: 1.72; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.tav { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; color: #fff; flex-shrink: 0; }
.tav-name { font-size: 0.9rem; font-weight: 700; }
.tav-role { font-size: 0.76rem; color: var(--muted); }
.loading-testi { background: var(--off); border-radius: var(--radius); height: 200px; border: 1px solid var(--border); animation: shimmer 1.5s infinite; }

/* ════════════════════════════════════════
   NEWSLETTER BAND
   ════════════════════════════════════════ */
.newsletter-band {
  background: var(--grad); padding: 64px 32px; text-align: center;
}
.newsletter-band h2 { font-family: 'Syne', 'Trebuchet MS', 'Arial Black', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.newsletter-band p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1rem; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 200px; background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35); border-radius: 8px;
  padding: 12px 16px; color: #fff; font-family: inherit; font-size: 0.9rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.22); }
.btn-white {
  background: #fff; color: var(--blue); border: none;
  padding: 12px 24px; border-radius: 8px; font-family: inherit;
  font-size: 0.88rem; font-weight: 700; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-white:hover { opacity: 0.92; transform: translateY(-1px); }

/* ════════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════════ */
#contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
.contact-left h2 { font-family: 'Syne', 'Trebuchet MS', 'Arial Black', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 14px; }
.contact-left p { color: var(--muted); line-height: 1.75; margin-bottom: 36px; }
.info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-lt); border: 1px solid var(--blue-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; margin-top: 2px;
}
.info-label { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.info-val { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-top: 3px; }

/* FORM */
.contact-form-box {
  background: var(--off); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 20px; }
.fg label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 7px; }
.fg input, .fg textarea, .fg select {
  width: 100%; background: var(--white); border: 1.5px solid var(--border);
  border-radius: 9px; padding: 12px 14px; color: var(--text);
  font-family: inherit; font-size: 0.9rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,87,255,0.1);
}
.fg textarea { resize: vertical; min-height: 120px; }
.fg select { cursor: pointer; }
.form-required { color: var(--blue); }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 10px; text-align: center; }
.submit-btn {
  width: 100%; background: var(--grad); color: #fff; border: none;
  padding: 15px; border-radius: 10px; font-family: inherit;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,87,255,0.28);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.submit-btn:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 8px 36px rgba(0,87,255,0.4); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer {
  background: var(--text); color: rgba(255,255,255,0.8);
  padding: 64px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.social-row { display: flex; gap: 10px; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; text-decoration: none; transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.soc-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ════════════════════════════════════════
   TOAST & SCROLL TOP
   ════════════════════════════════════════ */
#toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--text); color: #fff; border-radius: 12px;
  padding: 14px 22px; font-size: 0.88rem; font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 10px;
  transform: translateY(80px); opacity: 0;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s;
  max-width: 380px;
}
#toast.show { transform: none; opacity: 1; }
#toast.success { border-left: 4px solid #22c55e; }
#toast.error { border-left: 4px solid #ef4444; }
#toast.info { border-left: 4px solid var(--blue); }

#scroll-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 9999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); border: none; color: #fff;
  font-size: 1rem; cursor: pointer; opacity: 0; pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,87,255,0.35);
  transition: opacity 0.3s, transform 0.2s;
}
#scroll-top.show { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-3px); }

/* ════════════════════════════════════════
   REVEAL ANIMATIONS
   ════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-wrap::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 0; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .check-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
}

/* ════════════════════════════════════════
   ADMIN PANEL STYLES
   ════════════════════════════════════════ */
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th { background: var(--off); padding: 12px 14px; text-align: left; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); border-bottom: 2px solid var(--border); }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.admin-table tr:hover td { background: var(--off); }
.badge { display: inline-block; padding: 2px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }
.badge.new { background: #dbeafe; color: #1d4ed8; }
.badge.done { background: #dcfce7; color: #15803d; }

/* ── HERO LOGO IMAGE FIX ── */
.hero-logo-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  object-fit: contain;
}
.about-logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  object-fit: contain;
}
.footer-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
  display: block;
}

