/* ============================================
   ZevePH - Main Stylesheet
   Modern, Minimal, Corporate & Playful
   ============================================ */

/* ---------- CSS Variables (Theming) ---------- */
:root {
  /* Light Mode Colors */
  --primary: #57B9FF;
  --primary-light: #90D5FF;
  --primary-dark: #517891;
  --accent: #F59E0B;
  --accent-light: #FCD34D;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-card: #FFFFFF;
  --text: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --shadow: rgba(0, 0, 0, 0.06);
  --shadow-lg: rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
[data-theme="dark"] {
  --primary: #90D5FF;
  --primary-light: #B8E4FF;
  --primary-dark: #77B1D4;
  --accent: #FBBF24;
  --accent-light: #FDE68A;
  --bg: #0F172A;
  --bg-alt: #1E293B;
  --bg-card: #1E293B;
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --text-light: #64748B;
  --border: #334155;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-lg: rgba(0, 0, 0, 0.5);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
}

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

a:hover {
  color: var(--primary-light);
}

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

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Utility Classes ---------- */
.section {
  padding: 100px 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header .badge {
  display: inline-block;
  background: rgba(87, 185, 255, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

[data-theme="dark"] .section-header .badge {
  background: rgba(144, 213, 255, 0.15);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 15px rgba(87, 185, 255, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(87, 185, 255, 0.4);
  color: #fff !important;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary) !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar-custom {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: all var(--transition);
  z-index: 1050;
}

[data-theme="dark"] .navbar-custom {
  background: rgba(15, 23, 42, 0.9);
}

.navbar-custom.scrolled {
  padding: 8px 0;
  box-shadow: 0 2px 20px var(--shadow);
}

.navbar-brand-custom {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text) !important;
  letter-spacing: -0.5px;
}

.navbar-brand-custom span {
  color: var(--primary);
}

.navbar-custom .nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  padding: 8px 18px !important;
  border-radius: 8px;
  transition: all var(--transition);
  font-size: 0.95rem;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary) !important;
  background: rgba(87, 185, 255, 0.08);
}

[data-theme="dark"] .navbar-custom .nav-link:hover,
[data-theme="dark"] .navbar-custom .nav-link.active {
  background: rgba(144, 213, 255, 0.12);
}

/* Theme Toggle */
.theme-toggle {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1.1rem;
}

.theme-toggle:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Mobile Menu */
.navbar-toggler {
  border: 1px solid var(--border) !important;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: none !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 24px;
  height: 24px;
}

.navbar-toggler-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px var(--shadow-lg);
  }
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

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

.hero-bg-shapes .shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.hero-bg-shapes .shape-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -50px;
  left: -100px;
}

.hero-bg-shapes .shape-3 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  top: 40%;
  left: 30%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(87, 185, 255, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

[data-theme="dark"] .hero-badge {
  background: rgba(144, 213, 255, 0.15);
}

.hero h1 {
  margin-bottom: 24px;
}

.hero p.lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px var(--shadow-lg);
}

.hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.hero-float-card {
  position: absolute;
  background: var(--bg-card);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-card.card-1 {
  bottom: -20px;
  left: -30px;
}

.hero-float-card.card-2 {
  top: -20px;
  right: -20px;
}

.hero-float-card .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-float-card .icon-circle.green {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
}

.hero-float-card .icon-circle.blue {
  background: rgba(87, 185, 255, 0.1);
  color: var(--primary);
}

.hero-float-card h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hero-float-card small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Stats Row in Hero */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stats .stat h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 2px;
}

.hero-stats .stat p {
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- Cards ---------- */
.card-custom {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--shadow-lg);
  border-color: var(--primary);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(87, 185, 255, 0.1);
  color: var(--primary);
}

[data-theme="dark"] .card-icon {
  background: rgba(144, 213, 255, 0.15);
}

.card-custom h4 {
  margin-bottom: 12px;
}

.card-custom p {
  font-size: 0.95rem;
}

/* Service Card Variants */
.card-icon.orange {
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent);
}

.card-icon.green {
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
}

.card-icon.purple {
  background: rgba(139, 92, 246, 0.12);
  color: #8B5CF6;
}

.card-icon.red {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
}

.card-icon.teal {
  background: rgba(20, 184, 166, 0.12);
  color: #14B8A6;
}

/* ---------- About Section ---------- */
.about-image-wrapper {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.about-experience-badge h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0;
}

.about-experience-badge p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  margin: 0;
}

.about-features {
  margin-top: 32px;
}

.about-feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.about-feature-item .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(87, 185, 255, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .about-feature-item .icon {
  background: rgba(144, 213, 255, 0.15);
}

.about-feature-item h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-feature-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* About Image Placeholder */
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.aip-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.aip-shape-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -80px;
}

.aip-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}

.aip-shape-3 {
  width: 120px;
  height: 120px;
  top: 45%;
  left: 15%;
  background: rgba(255, 255, 255, 0.06);
}

.aip-icon {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
  animation: aip-float 4s ease-in-out infinite;
}

@keyframes aip-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.aip-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .aip-float-badge {
  background: rgba(30, 41, 59, 0.95);
  color: var(--primary);
}

.aip-float-badge i {
  color: var(--primary);
}

.aip-float-badge-1 {
  bottom: 20%;
  left: -16px;
  animation: aip-float 3.5s ease-in-out infinite;
}

.aip-float-badge-2 {
  top: 20%;
  right: -16px;
  animation: aip-float 3.5s ease-in-out infinite reverse;
}

/* ---------- Stats Counter ---------- */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--shadow-lg);
  border-color: var(--primary);
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-number {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-suffix {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ---------- Process Steps ---------- */
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--shadow-lg);
  border-color: var(--primary);
}

.process-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.process-step:hover .process-number {
  opacity: 0.22;
}

.process-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(87, 185, 255, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all var(--transition);
}

[data-theme="dark"] .process-icon {
  background: rgba(144, 213, 255, 0.15);
}

.process-step:hover .process-icon {
  background: var(--primary);
  color: #fff;
}

.process-step h4 {
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.95rem;
  margin: 0;
}

/* About SVG Illustration */
.about-svg-illo {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Team ---------- */
.team-card {
  text-align: center;
  padding: 36px 24px;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 20px rgba(87, 185, 255, 0.35);
}

.team-card:hover .team-avatar {
  transform: scale(1.08) translateY(-4px);
}

/* Avatar silhouette SVG */
.avatar-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.avatar-initials {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Team avatar color variants */
.team-avatar.av-blue {
  background: linear-gradient(135deg, #57B9FF 0%, #2563eb 100%);
  box-shadow: 0 8px 24px rgba(87, 185, 255, 0.45);
}

.team-avatar.av-purple {
  background: linear-gradient(135deg, #c084fc 0%, #7c3aed 100%);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.45);
}

.team-avatar.av-teal {
  background: linear-gradient(135deg, #34d399 0%, #0d9488 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
}

.team-avatar.av-orange {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
}

/* Avatar ring on hover */
.team-avatar.av-blue::after,
.team-avatar.av-purple::after,
.team-avatar.av-teal::after,
.team-avatar.av-orange::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  transition: opacity var(--transition), inset var(--transition);
}

.team-avatar.av-blue { color: rgba(87,185,255,0.5); }
.team-avatar.av-purple { color: rgba(192,132,252,0.5); }
.team-avatar.av-teal { color: rgba(52,211,153,0.5); }
.team-avatar.av-orange { color: rgba(251,191,36,0.5); }

.team-card:hover .team-avatar.av-blue::after,
.team-card:hover .team-avatar.av-purple::after,
.team-card:hover .team-avatar.av-teal::after,
.team-card:hover .team-avatar.av-orange::after {
  opacity: 1;
  inset: -8px;
}

.team-card h4 {
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.9rem;
}

.team-social a:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--shadow-lg);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  position: relative;
}

.blog-card-image .category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

[data-theme="dark"] .blog-card-image .category {
  background: rgba(30, 41, 59, 0.95);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-card-meta i {
  margin-right: 4px;
}

.blog-card-body h4 {
  margin-bottom: 12px;
}

.blog-card-body h4 a {
  color: var(--text);
  transition: color var(--transition);
}

.blog-card-body h4 a:hover {
  color: var(--primary);
}

.blog-card-body p {
  font-size: 0.95rem;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-author span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.read-more i {
  transition: transform var(--transition);
}

.read-more:hover i {
  transform: translateX(4px);
}

/* ---------- Blog toolbar (search + category filter) ---------- */
.blog-toolbar-section {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.blog-toolbar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-search-form { flex-shrink: 0; }

.blog-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-light);
  font-size: 0.82rem;
  pointer-events: none;
}

.blog-search-wrap input[type="search"] {
  width: 240px;
  padding: 10px 38px 10px 38px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.blog-search-wrap input[type="search"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(87, 185, 255, 0.15);
}

.blog-search-clear {
  position: absolute;
  right: 12px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1;
  transition: color var(--transition);
}
.blog-search-clear:hover { color: var(--primary); }

.category-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.category-pill {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.category-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(87, 185, 255, 0.06);
}

.category-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ---------- Page header blog stats ---------- */
.blog-header-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.blog-header-sep { opacity: 0.5; }

/* ---------- Featured post ---------- */
.featured-post-section {
  padding: 56px 0 36px;
}

.featured-post-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 8px 32px var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.featured-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px var(--shadow-lg);
}

.featured-post-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  min-height: 320px;
}

.featured-post-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-featured {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.category-tag {
  background: rgba(87, 185, 255, 0.12);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.featured-post-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.featured-post-title a {
  color: var(--text);
  transition: color var(--transition);
}

.featured-post-title a:hover { color: var(--primary); }

.featured-post-excerpt {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  width: fit-content;
}

.btn-primary-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- Results label ---------- */
.results-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.clear-filters {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all var(--transition);
}

.clear-filters:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ---------- Enhanced pagination ---------- */
.page-link-ctrl,
.page-link-num,
.page-link-ellipsis {
  border-radius: var(--radius-sm) !important;
  border-color: var(--border) !important;
  background: var(--bg-card) !important;
  color: var(--text) !important;
  min-width: 40px;
  text-align: center;
}

.page-link-ctrl:hover,
.page-link-num:hover {
  background: var(--bg-alt) !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

.page-item.active .page-link-num {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

.page-link-ellipsis {
  background: transparent !important;
  border-color: transparent !important;
  cursor: default;
  color: var(--text-muted) !important;
}

/* ---------- Blog responsive ---------- */
@media (max-width: 900px) {
  .featured-post-card {
    grid-template-columns: 1fr;
  }

  .featured-post-image {
    min-height: 200px;
  }

  .featured-post-body {
    padding: 28px 24px;
  }

  .featured-post-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 576px) {
  .blog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-search-wrap input[type="search"] {
    width: 100%;
  }

  .category-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .results-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ---------- Contact ---------- */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px var(--shadow);
}

.contact-info-card .icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: rgba(87, 185, 255, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

[data-theme="dark"] .contact-info-card .icon {
  background: rgba(144, 213, 255, 0.15);
}

.contact-info-card h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-floating > .form-control,
.form-floating > .form-select {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-floating > .form-control:focus {
  background: var(--bg-alt);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(87, 185, 255, 0.15);
  color: var(--text);
}

.form-floating > label {
  color: var(--text-muted);
}

.form-control.is-invalid {
  border-color: #EF4444;
}

.invalid-feedback {
  color: #EF4444;
  font-size: 0.85rem;
}

.form-control.is-valid {
  border-color: #10B981;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translate(100px, -100px);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(-100px, 100px);
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-section p {
  opacity: 0.9;
}

.btn-cta {
  background: #fff;
  color: var(--primary-dark) !important;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: var(--primary-dark) !important;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

.footer-brand h3 {
  margin-bottom: 12px;
}

.footer-brand h3 span {
  color: var(--primary);
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.95rem;
}

.footer h5 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  margin-top: 60px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

/* ---------- Page Header (Inner Pages) ---------- */
.page-header {
  background: var(--gradient);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1,
.page-header p {
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-header p {
  opacity: 0.9;
  font-size: 1.15rem;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom a:hover {
  color: #fff;
}

.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-custom .current {
  color: #fff;
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px var(--shadow);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(87, 185, 255, 0.35);
  transition: transform var(--transition);
}

.testimonial-card:hover .testimonial-author-avatar {
  transform: scale(1.1);
}

.testimonial-author-avatar.av-teal {
  background: linear-gradient(135deg, #34d399 0%, #0d9488 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.testimonial-author-avatar.av-purple {
  background: linear-gradient(135deg, #c084fc 0%, #7c3aed 100%);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.testimonial-author-avatar.av-orange {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.testimonial-author h6 {
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.testimonial-author small {
  color: var(--text-muted);
}

/* ---------- Partners / Logos ---------- */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all var(--transition);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 2px;
}

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

/* ---------- Scroll to Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(87, 185, 255, 0.3);
}

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

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(87, 185, 255, 0.4);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Animations (GSAP targets) ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
}

/* ---------- Toast Notification ---------- */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1060;
}

.toast-custom {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: 0 10px 30px var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
}

.toast-custom.success .toast-icon {
  color: #10B981;
}

.toast-custom.error .toast-icon {
  color: #EF4444;
}

.toast-icon {
  font-size: 1.4rem;
}

.toast-message {
  font-size: 0.95rem;
  color: var(--text);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-float-card {
    display: none;
  }

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

  .contact-form {
    padding: 24px;
  }

  .footer {
    padding-top: 48px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-header {
    padding: 120px 0 60px;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   AI Chat Widget
   ============================================ */

/* Toggle button */
.ai-chat-toggle {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 52px;
  height: 52px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1070;
  box-shadow: 0 4px 20px rgba(87, 185, 255, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  font-size: 1.15rem;
  overflow: hidden;
}

.ai-chat-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(87, 185, 255, 0.5);
}

.ai-chat-toggle .chat-icon-open,
.ai-chat-toggle .chat-icon-close {
  transition: opacity 0.2s, transform 0.2s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

.ai-chat-toggle .chat-icon-close {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.ai-chat-toggle.open .chat-icon-open {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.ai-chat-toggle.open .chat-icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* Chat panel */
.ai-chat-panel {
  position: fixed;
  bottom: 154px;
  right: 30px;
  width: 340px;
  max-height: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px var(--shadow-lg);
  display: flex;
  flex-direction: column;
  z-index: 1070;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.ai-chat-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Header */
.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--gradient);
  color: #fff;
  flex-shrink: 0;
}

.ai-chat-header-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ai-chat-header-info {
  flex: 1;
}

.ai-chat-header-name {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #fff;
}

.ai-chat-header-status {
  font-size: 0.75rem;
  opacity: 0.85;
  color: #fff;
}

.ai-chat-header-close {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  font-size: 1rem;
  opacity: 0.8;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.ai-chat-header-close:hover {
  opacity: 1;
}

/* Messages area */
.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

.ai-chat-messages::-webkit-scrollbar {
  width: 4px;
}

.ai-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

/* Message bubbles */
.ai-chat-msg {
  display: flex;
  gap: 8px;
  max-width: 90%;
  animation: chatMsgIn 0.25s ease;
}

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

.ai-chat-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.ai-chat-msg .bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-alt);
  word-break: break-word;
}

.ai-chat-msg.user .bubble {
  background: var(--gradient);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.ai-chat-msg.bot .bubble {
  border-bottom-left-radius: 4px;
}

/* Typing indicator */
.ai-chat-typing {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  animation: chatMsgIn 0.25s ease;
}

.ai-chat-typing .bubble {
  background: var(--bg-alt);
  padding: 12px 16px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}

.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingDot 1.2s infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* Input area */
.ai-chat-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  flex-shrink: 0;
}

.ai-chat-input {
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
  line-height: 1.5;
  max-height: 100px;
  font-family: inherit;
}

.ai-chat-input:focus {
  border-color: var(--primary);
}

.ai-chat-input::placeholder {
  color: var(--text-light);
}

.ai-chat-send {
  width: 38px;
  height: 38px;
  background: var(--gradient);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.ai-chat-send:hover:not(:disabled) {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(87, 185, 255, 0.4);
}

.ai-chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Footer / clear */
.ai-chat-footer {
  text-align: center;
  padding: 6px 14px 10px;
  background: var(--bg-card);
}

.ai-chat-clear {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 4px;
  transition: color var(--transition);
}

.ai-chat-clear:hover {
  color: var(--text);
}

/* Intake form */
.ai-chat-intake {
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.ai-chat-intake p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.ai-chat-intake input {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 0.875rem;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.ai-chat-intake input:focus {
  border-color: var(--primary);
}

.ai-chat-intake input::placeholder {
  color: var(--text-light);
}

.ai-chat-intake input.intake-error {
  border-color: #ef4444;
}

.ai-chat-intake .intake-err-msg {
  font-size: 0.78rem;
  color: #ef4444;
  margin: -6px 0 0;
  display: none;
}

.ai-chat-intake .intake-err-msg.show {
  display: block;
}

.ai-chat-intake-btn {
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  font-family: inherit;
}

.ai-chat-intake-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 576px) {
  .ai-chat-panel {
    width: calc(100vw - 24px);
    right: 12px;
    bottom: 140px;
  }

  .ai-chat-toggle {
    right: 16px;
    bottom: 80px;
  }
}
