/* ============================================================
   AVF Creative — styles.css
   ============================================================ */

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.7); }
.whatsapp-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
/* Move toast up so it doesn't overlap WhatsApp button */
.avf-toast { bottom: 100px; }

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: #111; border-top: 1px solid #2a2a2a;
  padding: 16px 5%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; color: #888; margin: 0; flex: 1; min-width: 240px; }
.cookie-banner p a { color: #00c4e8; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 9px 20px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; cursor: pointer; border: none; font-family: 'Poppins', sans-serif; transition: all 0.2s; }
.cookie-btn-accept { background: #00c4e8; color: #fff; }
.cookie-btn-accept:hover { background: #d63e0e; }
.cookie-btn-decline { background: transparent; color: #888; border: 1px solid #444; }
.cookie-btn-decline:hover { color: #fff; border-color: #666; }

/* ---------- Toast Notification ---------- */
.avf-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.avf-toast--show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.avf-toast--success { background: #0f2e1a; border: 1px solid #27ae60; color: #4ade80; }
.avf-toast--error   { background: #2e0f0f; border: 1px solid #c0392b; color: #f87171; }
.avf-toast i:first-child { font-size: 1.1rem; flex-shrink: 0; }
.avf-toast span { flex: 1; line-height: 1.4; color: var(--white); }
.toast-close {
  background: none; border: none; color: var(--gray-400);
  cursor: pointer; padding: 2px 4px; font-size: 0.9rem;
  flex-shrink: 0; transition: color 0.2s;
}
.toast-close:hover { color: var(--white); }

/* ---------- CSS Custom Properties ---------- */
:root {
  --black:    #000000;
  --white:    #ffffff;
  --orange:   #00c4e8;
  --cyan:     #00e5a8;
  --gray-950: #050505;
  --gray-900: #0d0d0d;
  --gray-800: #1a1a1a;
  --gray-700: #2a2a2a;
  --gray-600: #444444;
  --gray-400: #888888;
  --gray-200: #cccccc;
  --font: 'Poppins', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --transition: all 0.3s ease;

  /* Category gradients */
  --cat-security:       linear-gradient(135deg, #c0392b 0%, #8e1a1a 100%);
  --cat-finance:        linear-gradient(135deg, #27ae60 0%, #145a32 100%);
  --cat-forensics:      linear-gradient(135deg, #8e44ad 0%, #4a235a 100%);
  --cat-devops:         linear-gradient(135deg, #00e5a8 0%, #0a4f7a 100%);
  --cat-analytics:      linear-gradient(135deg, #00c4e8 0%, #8b2e0d 100%);
  --cat-education:      linear-gradient(135deg, #2980b9 0%, #1a5276 100%);
  --cat-hr:             linear-gradient(135deg, #16a085 0%, #0d5e4d 100%);
  --cat-infrastructure: linear-gradient(135deg, #2c3e50 0%, #17202a 100%);
  --cat-erp:            linear-gradient(135deg, #d4a017 0%, #7d5e00 100%);
  --cat-ai:             linear-gradient(135deg, #c0392b 0%, #8e44ad 100%);
  --cat-compliance:     linear-gradient(135deg, #f39c12 0%, #7d5200 100%);
  --cat-data:           linear-gradient(135deg, #1abc9c 0%, #0d6e57 100%);
  --cat-crm:            linear-gradient(135deg, #2980b9 0%, #1a4f70 100%);
  --cat-database:       linear-gradient(135deg, #7f8c8d 0%, #2c3e50 100%);
  --cat-network:        linear-gradient(135deg, #00e5a8 0%, #044a7d 100%);
  --cat-middleware:     linear-gradient(135deg, #8e44ad 0%, #2c3e50 100%);
  --cat-simulation:     linear-gradient(135deg, #16a085 0%, #00c4e8 100%);
  --cat-government:     linear-gradient(135deg, #27ae60 0%, #2980b9 100%);
  --cat-devtools:       linear-gradient(135deg, #e67e22 0%, #c0392b 100%);
  --cat-osint:          linear-gradient(135deg, #8e44ad 0%, #1a1a2e 100%);
  --cat-docmgmt:        linear-gradient(135deg, #2980b9 0%, #1f618d 100%);
}

/* ---------- Light Mode ---------- */
body.light-mode {
  --black: #f5f5f5; --white: #111111;
  --gray-950: #e8e8e8; --gray-900: #eeeeee; --gray-800: #dddddd;
  --gray-700: #cccccc; --gray-600: #999999; --gray-400: #555555;
  --gray-200: #333333;
  background: #f5f5f5; color: #111;
}
body.light-mode .navbar { background: rgba(245,245,245,0.92); border-bottom-color: #ddd; }
body.light-mode .hero { background: radial-gradient(ellipse at 25% 55%, rgba(244,81,30,0.08) 0%, transparent 55%), #f5f5f5; }
body.light-mode .product-card { background: #fff; border-color: #e0e0e0; }
body.light-mode .service-card { background: #fff; border-color: #ddd; }
body.light-mode .contact-form { background: #fff; border-color: #ddd; }
body.light-mode .form-group input,
body.light-mode .form-group textarea,
body.light-mode .form-group select { background: #f9f9f9; border-color: #ccc; color: #111; }
body.light-mode footer { background: #e8e8e8; }
body.light-mode .stats-bar { background: #eeeeee; }
body.light-mode .services { background: #eeeeee; }
body.light-mode .contact { background: #eeeeee; }

.theme-toggle {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--gray-800); border: 1px solid var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray-400); font-size: 0.95rem;
  transition: var(--transition); flex-shrink: 0;
}
.theme-toggle:hover { background: var(--gray-700); color: var(--white); }

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; }
input, textarea, select { font-family: var(--font); }

/* ---------- Utility ---------- */
.section-label {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--gray-400);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 7px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover {
  background: #d63e0e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,81,30,0.45);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-800);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.7); }
.nav-logo img { height: 38px; }
.nav-logo-text {
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--orange);
  letter-spacing: 0.5px;
  line-height: 1;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray-400);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    padding: 24px 5% 32px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-800);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(244,81,30,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(6,147,227,0.10) 0%, transparent 55%),
    var(--black);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 0 5%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero h1 .hl { color: var(--orange); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--gray-400);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-float {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gray-800);
  border-radius: 20px;
  padding: 40px 44px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero-float .hf-num {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-float .hf-label {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 6px;
}
.hero-float .hf-divider {
  width: 40px;
  height: 2px;
  background: var(--gray-700);
  margin: 20px auto;
  border-radius: 2px;
}
.hero-float .hf-sub {
  font-size: 0.82rem;
  color: var(--gray-600);
}
@media (max-width: 1100px) { .hero-float { display: none; } }
@media (max-width: 600px) { .hero h1 { letter-spacing: -0.5px; } }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--gray-900);
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
  padding: 56px 5%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.stat-item h3 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-item p {
  color: var(--gray-400);
  font-size: 0.88rem;
  margin-top: 6px;
  letter-spacing: 0.5px;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ---------- Products Section ---------- */
.products {
  padding: 100px 5%;
  background: var(--black);
}
.products-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 52px;
  align-items: flex-start;
}
.filter-search {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
  position: relative;
}
.filter-search input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.filter-search input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(6,147,227,0.12); }
.filter-search input::placeholder { color: var(--gray-600); }
.filter-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-600);
  font-size: 0.85rem;
  pointer-events: none;
}
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-tab {
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  color: var(--gray-400);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.filter-tab:hover { border-color: var(--gray-500); color: var(--white); }
.filter-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.products-count {
  text-align: center;
  margin-bottom: 32px;
  color: var(--gray-600);
  font-size: 0.85rem;
}
.products-count span { color: var(--gray-400); font-weight: 600; }

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: var(--gray-400);
}
.no-results i {
  font-size: 3rem;
  color: var(--gray-700);
  display: block;
  margin-bottom: 20px;
}
.no-results p { font-size: 1rem; }

/* Product card */
.product-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card:hover {
  border-color: var(--gray-600);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.65);
}

/* Card thumbnail */
.card-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-thumb i { font-size: 3rem; color: rgba(255,255,255,0.82); position: relative; z-index: 1; }
.card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

/* Apply category gradients */
.card-thumb.cat-security       { background: var(--cat-security); }
.card-thumb.cat-finance        { background: var(--cat-finance); }
.card-thumb.cat-forensics      { background: var(--cat-forensics); }
.card-thumb.cat-devops         { background: var(--cat-devops); }
.card-thumb.cat-analytics      { background: var(--cat-analytics); }
.card-thumb.cat-education      { background: var(--cat-education); }
.card-thumb.cat-hr             { background: var(--cat-hr); }
.card-thumb.cat-infrastructure { background: var(--cat-infrastructure); }
.card-thumb.cat-erp            { background: var(--cat-erp); }
.card-thumb.cat-ai             { background: var(--cat-ai); }
.card-thumb.cat-compliance     { background: var(--cat-compliance); }
.card-thumb.cat-data           { background: var(--cat-data); }
.card-thumb.cat-crm            { background: var(--cat-crm); }
.card-thumb.cat-database       { background: var(--cat-database); }
.card-thumb.cat-network        { background: var(--cat-network); }
.card-thumb.cat-middleware     { background: var(--cat-middleware); }
.card-thumb.cat-simulation     { background: var(--cat-simulation); }
.card-thumb.cat-government     { background: var(--cat-government); }
.card-thumb.cat-devtools       { background: var(--cat-devtools); }
.card-thumb.cat-osint          { background: var(--cat-osint); }
.card-thumb.cat-docmgmt        { background: var(--cat-docmgmt); }

/* Card body */
.card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  color: var(--gray-400);
  align-self: flex-start;
}
.card-brand {
  font-size: 0.76rem;
  color: var(--gray-600);
  margin-top: 2px;
}
.card-name {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}
.card-desc {
  font-size: 0.83rem;
  color: var(--gray-400);
  line-height: 1.65;
  flex: 1;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-800);
}
.card-port {
  font-size: 0.73rem;
  color: var(--gray-700);
  font-family: 'Courier New', monospace;
}
.btn-launch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(6,147,227,0.4);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-launch:hover {
  background: var(--cyan);
  color: var(--black);
  border-color: var(--cyan);
}

/* ---------- Services Section ---------- */
.services {
  padding: 100px 5%;
  background: var(--gray-900);
  border-top: 1px solid var(--gray-800);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(244,81,30,0.1);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(244,81,30,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ---------- Testimonials Section ---------- */
.testimonials {
  padding: 100px 5%;
  background: var(--black);
  border-top: 1px solid var(--gray-800);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 60px auto 0;
}
.testimonial-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem; line-height: 0.8;
  color: var(--orange); opacity: 0.15;
  position: absolute; top: 20px; left: 24px;
  font-family: Georgia, serif;
}
.testimonial-text { font-size: 0.92rem; color: var(--gray-400); line-height: 1.75; margin-bottom: 24px; font-style: italic; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-name { font-size: 0.92rem; font-weight: 700; }
.testimonial-role { font-size: 0.78rem; color: var(--gray-400); margin-top: 2px; }
.testimonial-stars { color: #f39c12; font-size: 0.75rem; margin-top: 4px; }

/* ---------- Card Details Link ---------- */
.card-details-link {
  font-size: 0.78rem; color: var(--gray-600);
  font-weight: 500; transition: var(--transition);
  text-decoration: underline; text-underline-offset: 3px;
}
.card-details-link:hover { color: var(--gray-200); }

/* ---------- About Section ---------- */
.about {
  padding: 110px 5%;
  background: var(--black);
  background-image: radial-gradient(ellipse at 80% 50%, rgba(6,147,227,0.06) 0%, transparent 55%);
  border-top: 1px solid var(--gray-800);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-label { margin-bottom: 16px; }
.about-text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-text h2 span { color: var(--cyan); }
.about-text p {
  color: var(--gray-400);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}
.about-val {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 10px;
  padding: 20px;
  border-left: 3px solid var(--orange);
}
.about-val h4 {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.about-val p {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- Contact Section ---------- */
.contact {
  padding: 100px 5%;
  background: var(--gray-900);
  border-top: 1px solid var(--gray-800);
}
.contact-inner {
  max-width: 980px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 0.92rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--gray-200);
}
.contact-detail i {
  color: var(--orange);
  width: 18px;
  flex-shrink: 0;
}
.contact-form {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--gray-200);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6,147,227,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-600); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--gray-800); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.contact-map {
  margin-top: 28px;
}
.contact-map iframe {
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--gray-700);
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  transition: var(--transition);
}
.map-link:hover { color: var(--orange); }

.form-success {
  text-align: center;
  padding: 48px 20px;
}
.form-success i {
  font-size: 3.5rem;
  color: #27ae60;
  display: block;
  margin-bottom: 20px;
}
.form-success h3 { font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--gray-400); font-size: 0.9rem; }
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 24px; }
}

/* ---------- Footer ---------- */
footer {
  background: var(--gray-950);
  border-top: 1px solid var(--gray-800);
  padding: 70px 5% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 56px;
}
.footer-brand img { height: 34px; }
.footer-brand p {
  color: var(--gray-400);
  font-size: 0.86rem;
  line-height: 1.75;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  color: var(--gray-400);
  font-size: 0.87rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 28px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { color: var(--gray-600); font-size: 0.84rem; }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
