/*
Theme Name: BRIVOX
Theme URI: https://brivox.com
Author: BRIVOX Agency
Author URI: https://brivox.com
Description: A clean, modern landing page theme for BRIVOX Digital Marketing Agency
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brivox
Tags: one-page, landing-page, business, digital-marketing
*/

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

:root {
  --accent: #00BFFF;
  --accent-dark: #0099CC;
  --accent-light: #e6f9ff;
  --heading: #111111;
  --body: #444444;
  --muted: #666666;
  --white: #ffffff;
  --bg-light: #f8fafb;
  --border: #e8edf2;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,191,255,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font: 'Poppins', 'Inter', sans-serif;
  --section-py: 90px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  line-height: 1.25;
  font-weight: 700;
}

p { color: var(--muted); }

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,191,255,0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,191,255,0.45);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--heading);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

/* =========================================
   HEADER / NAVIGATION
========================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  padding: 18px 0;
}

#site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-logo span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all var(--transition);
}

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

/* =========================================
   HERO SECTION — MODERN DARK
========================================= */
#hero {
  position: relative;
  background: #06101f;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 60px;
  overflow: hidden;
}

/* Animated background orbs */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,191,255,0.18) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation: orbDrift 12s ease-in-out infinite;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(102,126,234,0.15) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation: orbDrift 15s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,191,255,0.10) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation: orbDrift 10s ease-in-out infinite 3s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 30px); }
}

/* Grid lines overlay */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ---- Hero content wrapper ---- */
.hero-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* ---- Announcement bar ---- */
.hero-announce {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  animation: fadeSlideDown 0.7s ease both;
}

.announce-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}

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

.announce-arrow {
  color: var(--accent);
  font-size: 14px;
}

/* ---- Main heading ---- */
.hero-heading {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -2px;
  max-width: 820px;
  animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero-gradient-text {
  background: linear-gradient(90deg, #00BFFF 0%, #a78bfa 50%, #00BFFF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ---- Description ---- */
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 600px;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hide-sm { display: inline; }

/* ---- CTA buttons ---- */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(0,191,255,0.4), 0 4px 20px rgba(0,191,255,0.3);
  transition: all var(--transition);
  border: 1.5px solid var(--accent);
}

.btn-hero-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(0,191,255,0.5);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 13px;
  transition: transform var(--transition);
}

.btn-hero-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  transform: translateY(-3px);
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 10px;
  color: white;
}

/* ---- Trust row ---- */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #06101f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  margin-left: -8px;
}

.trust-avatars span:first-child { margin-left: 0; }

.hero-trust-row > p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.hero-trust-row > p strong {
  color: rgba(255,255,255,0.85);
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

.trust-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #f59e0b;
}

.trust-stars span {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}

/* ---- Glass cards row ---- */
.hero-cards-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 960px;
  animation: fadeSlideUp 0.9s ease 0.5s both;
}

.hero-glass-card {
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.hero-glass-card:hover {
  transform: translateY(-6px);
}

.card-blue  { background: rgba(0,191,255,0.12); }
.card-purple { background: rgba(102,126,234,0.15); border-color: rgba(102,126,234,0.25); }
.card-green  { background: rgba(67,233,123,0.1); border-color: rgba(67,233,123,0.2); }
.card-dark   { background: rgba(255,255,255,0.06); flex: 1; min-width: 260px; }

.hero-glass-main {
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.gc-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.gc-body { display: flex; flex-direction: column; }

.gc-value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.gc-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
  font-weight: 500;
}

.gc-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  align-self: flex-start;
}

.gc-badge.up { color: #4ade80; }

/* Main dashboard card internals */
.gc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gc-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.gc-pill {
  background: rgba(74,222,128,0.15);
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.gc-stats {
  display: flex;
  gap: 16px;
}

.gc-stat { flex: 1; text-align: center; }

.gc-stat-val {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
}

.gc-stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 4px;
}

/* Mini chart */
.gc-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 50px;
}

.mc-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(0,191,255,0.25);
  animation: growBar 1s ease forwards;
  transform-origin: bottom;
}

.mc-active { background: var(--accent); }

@keyframes growBar {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* ---- Metrics strip ---- */
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 40px;
  width: 100%;
  max-width: 680px;
  justify-content: space-between;
  animation: fadeSlideUp 1s ease 0.6s both;
}

.hero-metric {
  text-align: center;
  flex: 1;
}

.hm-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hm-lbl {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  font-weight: 500;
}

.hm-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Entry animations */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hide-sm { display: none; }
  .hero-cards-row { gap: 12px; }
  .hero-glass-card { flex: 1; min-width: 140px; }
  .hero-glass-main { min-width: 100%; order: -1; }
  .hero-metrics { padding: 20px 24px; }
  .hm-num { font-size: 22px; }
}

@media (max-width: 480px) {
  #hero { padding: 110px 0 50px; }
  .hero-cards-row { flex-direction: column; }
  .hero-glass-card { min-width: unset; width: 100%; }
  .hero-metrics { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .hm-sep { display: none; }
}

/* =========================================
   ABOUT SECTION
========================================= */
#about {
  background: var(--bg-light);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(0,191,255,0.15) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0,191,255,0.03) 20px,
    rgba(0,191,255,0.03) 40px
  );
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-exp-badge .num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-exp-badge .text {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
  display: block;
}

.about-content .section-subtitle {
  margin-bottom: 36px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
  display: block;
}

/* =========================================
   SERVICES SECTION
========================================= */
#services {
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 20px;
  transition: gap var(--transition);
}

.service-card:hover .service-link {
  gap: 10px;
}

/* =========================================
   TESTIMONIALS SECTION
========================================= */
#testimonials {
  background: var(--bg-light);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star {
  color: #f59e0b;
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-avatar.purple { background: #667eea; }
.author-avatar.pink { background: #f093fb; }

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  display: block;
}

.author-role {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

/* =========================================
   CONTACT SECTION
========================================= */
#contact {
  background: var(--white);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header .section-subtitle {
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  color: var(--heading);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,191,255,0.1);
}

.form-control::placeholder {
  color: #bbc4cc;
}

textarea.form-control {
  height: 140px;
  resize: vertical;
}

.contact-info {
  padding: 10px 0;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.contact-item-text .value {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  display: block;
}

/* =========================================
   CTA SECTION
========================================= */
#cta {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 50%, #0d1b2a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,191,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-inner .section-tag {
  background: rgba(0,191,255,0.15);
  color: var(--accent);
}

.cta-title {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* =========================================
   FOOTER
========================================= */
#site-footer {
  background: #0a1628;
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-newsletter p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-input:focus { border-color: var(--accent); }

.newsletter-btn {
  padding: 12px 18px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  color: white;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* =========================================
   TEAM GALLERY SECTION
========================================= */
#team {
  background: var(--white);
  overflow: hidden;
}

.team-header {
  text-align: center;
  margin-bottom: 64px;
}

.team-header .section-subtitle {
  margin: 0 auto;
}

/* ---- Gallery Grid ---- */
.team-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ---- Card ---- */
.team-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Featured card spans 2 rows */
.team-card.featured {
  grid-row: span 2;
}

/* ---- Avatar area ---- */
.team-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.team-card.featured .team-avatar {
  aspect-ratio: 3 / 4;
}

.avatar-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 800;
  color: white;
  letter-spacing: -2px;
  position: relative;
  transition: transform 0.5s ease;
}

.team-card.featured .avatar-bg { font-size: 90px; }

.team-card:hover .avatar-bg {
  transform: scale(1.05);
}

/* Gradient overlays per card */
.avatar-bg.grad-1 { background: linear-gradient(135deg, #00BFFF 0%, #0066cc 100%); }
.avatar-bg.grad-2 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.avatar-bg.grad-3 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.avatar-bg.grad-4 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.avatar-bg.grad-5 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.avatar-bg.grad-6 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.avatar-bg.grad-7 { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }

/* Decorative pattern inside avatar */
.avatar-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 16px,
    rgba(255,255,255,0.04) 16px,
    rgba(255,255,255,0.04) 32px
  );
}

/* Hover overlay with social icons */
.avatar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .avatar-overlay {
  opacity: 1;
}

.avatar-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: white;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition);
  transform: translateY(10px);
  opacity: 0;
}

.team-card:hover .avatar-social-btn {
  transform: translateY(0);
  opacity: 1;
}

.avatar-social-btn:nth-child(1) { transition-delay: 0.05s; }
.avatar-social-btn:nth-child(2) { transition-delay: 0.10s; }
.avatar-social-btn:nth-child(3) { transition-delay: 0.15s; }

.avatar-social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px) scale(1.1);
}

/* Role badge on avatar */
.avatar-role-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* ---- Card Body ---- */
.team-card-body {
  padding: 20px 22px 22px;
}

.team-card.featured .team-card-body {
  padding: 24px 26px 26px;
}

.team-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 4px;
}

.team-card.featured .team-name {
  font-size: 22px;
}

.team-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

.team-card.featured .team-role {
  font-size: 15px;
}

.team-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  display: none;
}

.team-card.featured .team-bio {
  display: block;
  margin-bottom: 16px;
}

/* Skills tags */
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.team-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--accent-light);
  color: var(--accent-dark);
}

/* ---- Stats bar (featured card only) ---- */
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.team-stat {
  text-align: center;
}

.team-stat .val {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.team-stat .lbl {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
  font-weight: 500;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .team-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-card.featured {
    grid-row: auto;
  }
  .team-card.featured .team-avatar {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 640px) {
  .team-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .team-card.featured {
    grid-column: span 2;
  }
  .team-name { font-size: 15px; }
  .team-card.featured .team-name { font-size: 18px; }
  .avatar-bg { font-size: 48px; }
}

/* =========================================
   SCROLL TO TOP
========================================= */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,191,255,0.4);
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,191,255,0.5);
}

/* =========================================
   RESPONSIVE — TABLET
========================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual { order: -1; }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* =========================================
   RESPONSIVE — MOBILE
========================================= */
@media (max-width: 640px) {
  :root { --section-py: 60px; }

  .nav-menu,
  .nav-cta .btn-primary {
    display: none;
  }

  .hamburger { display: flex; }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .mobile-menu.open { display: block; }

  .mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--body);
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu a:last-child { border: none; }

  .mobile-menu .btn {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }

  #hero { padding: 120px 0 60px; }

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

  .services-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form { padding: 24px; }

  .about-exp-badge { bottom: -10px; right: 10px; }

  .float-card-1, .float-card-2 { display: none; }

  .hero-trust { flex-wrap: wrap; }

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