/* ============================================================
   TEETASK - Premium IT Company Website
   Main Stylesheet | Bootstrap 5 + Custom CSS
   Primary: #e10600 | Font: Poppins
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary:       #e10600;
  --primary-dark:  #b80500;
  --primary-light: #ff2e2e;
  --primary-rgb:   225, 6, 0;
  --secondary:     #1a1a2e;
  --accent:        #ff6b35;
  --text:          #1e1e2e;
  --text-muted:    #6b7280;
  --bg:            #ffffff;
  --bg-light:      #f8f9fc;
  --bg-card:       #ffffff;
  --border:        rgba(0,0,0,.08);
  --shadow-sm:     0 2px 12px rgba(0,0,0,.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.14);
  --shadow-red:    0 8px 32px rgba(225,6,0,.25);
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --transition:    all .3s cubic-bezier(.4,0,.2,1);
  --navbar-h:      76px;
  --glass-bg:      rgba(255,255,255,.72);
  --glass-border:  rgba(255,255,255,.5);
}

[data-theme="dark"] {
  --text:        #e8e8f0;
  --text-muted:  #9098b1;
  --bg:          #0d0d1a;
  --bg-light:    #13131f;
  --bg-card:     #1a1a2e;
  --border:      rgba(255,255,255,.07);
  --shadow-sm:   0 2px 12px rgba(0,0,0,.3);
  --shadow-md:   0 8px 32px rgba(0,0,0,.4);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.5);
  --glass-bg:    rgba(26,26,46,.85);
  --glass-border:rgba(255,255,255,.08);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: background .3s, color .3s;
  overflow-x: hidden;
  line-height: 1.7;
}
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--text); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
section { overflow: hidden; }
.section-py { padding: 90px 0; }
.section-py-sm { padding: 60px 0; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
.text-primary-brand { color: var(--primary) !important; }
.bg-primary-brand { background: var(--primary) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-lg-custom { border-radius: var(--radius-lg) !important; }

/* ---- Section Labels ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--primary-rgb),.08);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-label i { font-size: .9rem; }

/* ---- Buttons ---- */
.btn-primary-brand {
  text-decoration: none;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-red);
}
.btn-primary-brand:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(var(--primary-rgb),.4);
}
.btn-outline-brand {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-brand:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white-brand {
  text-decoration: none;
  cursor: pointer;
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white-brand:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  height: var(--navbar-h);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
  z-index: 1050;
}
#mainNav.scrolled {
  height: 64px;
  box-shadow: var(--shadow-md);
}
.brand-logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar-nav .nav-link {
  font-weight: 500;
  font-size: .92rem;
  color: var(--text) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: rgba(var(--primary-rgb),.06);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* Mega dropdown */
.mega-dropdown {
  min-width: 640px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
  padding: 20px !important;
  top: calc(100% + 8px) !important;
}
.dropdown-header {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 8px;
  margin-bottom: 6px;
}
.dropdown-item {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text) !important;
  border-radius: 8px;
  padding: 7px 10px;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: rgba(var(--primary-rgb),.06);
  color: var(--primary) !important;
  padding-left: 16px;
}

/* Dark mode toggle */
#darkModeToggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-light);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
#darkModeToggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s, visibility .5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-align: center;
  color: var(--text);
}
.loader-bar {
  width: 180px; height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  animation: loaderAnim 1.2s ease forwards;
}
@keyframes loaderAnim {
  from { width: 0; }
  to { width: 100%; }
}
.loader-content { text-align: center; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-h);
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #fff8f8 50%, #fff0f0 100%);
  overflow: hidden;
}
[data-theme="dark"] .hero-section {
  background: linear-gradient(135deg, #0d0d1a 0%, #13131f 50%, #1a0a0a 100%);
}
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .12;
  pointer-events: none;
}
.hero-bg-shape-1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -200px; right: -200px;
}
.hero-bg-shape-2 {
  width: 400px; height: 400px;
  background: var(--accent);
  bottom: -100px; left: -100px;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--primary-rgb),.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb),.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--primary-rgb),.08);
  border: 1px solid rgba(var(--primary-rgb),.2);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeInDown .6s ease;
}
.hero-badge .badge-dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  animation: fadeInUp .7s ease;
}
.hero-title .highlight {
  position: relative;
  color: var(--primary);
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 560px;
  animation: fadeInUp .8s ease;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp .9s ease;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease;
}
.hero-stat-item { }
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-image-wrap {
  position: relative;
  animation: fadeInRight .8s ease;
}
.hero-float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}
.hero-float-card .card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(var(--primary-rgb),.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.hero-float-card-1 { bottom: 20%; right: -5%; animation-delay: 0s; }
.hero-float-card-2 { top: 20%; left: -5%; animation-delay: 1.5s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   PARTNER LOGOS STRIP
   ============================================================ */
.partners-strip {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
}
.partners-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.partners-scroll {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: scrollLeft 20s linear infinite;
}
.partner-logo {
  height: 36px;
  opacity: .45;
  filter: grayscale(100%);
  transition: var(--transition);
  object-fit: contain;
  flex-shrink: 0;
}
.partner-logo:hover { opacity: 1; filter: grayscale(0); }
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partner-logo-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 6px 20px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
}
.partner-logo-text:hover { color: var(--primary); border-color: var(--primary); }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item { text-align: center; position: relative; }
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.2);
}
.stat-item:last-child::after { display: none; }
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
  margin-top: 6px;
}
.stat-icon {
  font-size: 1.4rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}

/* ============================================================
   SERVICE CARDS (Glassmorphism)
   ============================================================ */
.services-section { background: var(--bg); }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-lg);
}
.service-card:hover {
  border-color: rgba(var(--primary-rgb),.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),.1) 0%, rgba(var(--primary-rgb),.05) 100%);
  color: var(--primary);
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}
.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link i { transition: transform .3s; }
.service-link:hover i { transform: translateX(4px); }
.service-card .service-number {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(var(--primary-rgb),.05);
  line-height: 1;
  pointer-events: none;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--bg-light); }
.about-image-wrap { position: relative; }
.about-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.about-badge-float {
  position: absolute;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-red);
}
.about-badge-float.badge-1 { bottom: -20px; right: -20px; }
.about-badge-float.badge-2 { top: -20px; left: -20px; }
.about-badge-float .badge-num {
  font-size: 1.8rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.about-badge-float .badge-text {
  font-size: .75rem;
  font-weight: 500;
  opacity: .9;
}
.about-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.about-feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px;
  background: rgba(var(--primary-rgb),.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.about-feature-item h6 { font-weight: 700; margin-bottom: 4px; }
.about-feature-item p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--bg); }
.why-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb),.08), var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-8deg); }
.why-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--bg-light); }
.process-step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(var(--primary-rgb),.2));
}
.process-step:last-child::after { display: none; }
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-red);
  position: relative;
  z-index: 1;
}
.process-step h6 { font-weight: 700; font-size: .95rem; margin-bottom: 8px; }
.process-step p { font-size: .83rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section { background: var(--bg); }
.portfolio-filter .btn {
  border-radius: 50px;
  padding: 7px 20px;
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
}
.portfolio-filter .btn.active,
.portfolio-filter .btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.portfolio-thumb {
  height: 220px;
  background: linear-gradient(135deg, var(--bg-light), var(--border));
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-thumb-placeholder {
  font-size: 3rem;
  color: rgba(var(--primary-rgb),.2);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--primary-rgb),.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay a {
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}
.portfolio-overlay a:hover {
  background: #fff;
  color: var(--primary);
}
.portfolio-info { padding: 18px 20px; }
.portfolio-info h6 { font-weight: 700; margin-bottom: 4px; font-size: .95rem; }
.portfolio-cat {
  font-size: .78rem;
  color: var(--primary);
  font-weight: 600;
  background: rgba(var(--primary-rgb),.08);
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--bg-light); }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 5rem;
  color: rgba(var(--primary-rgb),.1);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: rgba(var(--primary-rgb),.2);
  box-shadow: var(--shadow-md);
}
.testimonial-text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.testimonial-avatar-placeholder {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .92rem; margin-bottom: 2px; }
.testimonial-role { font-size: .8rem; color: var(--text-muted); }
.stars { color: #fbbf24; font-size: .85rem; margin-bottom: 12px; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { background: var(--bg); }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb),.2);
}
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(var(--primary-rgb),.08) 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-thumb-icon { font-size: 3.5rem; color: rgba(var(--primary-rgb),.2); }
.blog-cat-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.blog-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  gap: 14px;
}
.blog-meta i { color: var(--primary); }
.blog-card h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: var(--transition);
}
.blog-card:hover h5 { color: var(--primary); }
.blog-card p {
  font-size: .87rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
  line-height: 1.7;
}
.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: var(--transition);
}
.read-more i { transition: transform .3s; }
.read-more:hover i { transform: translateX(4px); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.cta-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.85); }
.cta-features { list-style: none; padding: 0; margin: 20px 0; }
.cta-features li {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-features li i { color: rgba(255,255,255,.7); font-size: .8rem; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--bg); }
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card) !important;
}
.accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text) !important;
  background: var(--bg-card) !important;
  padding: 18px 22px !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
  background: rgba(var(--primary-rgb),.04) !important;
}
.accordion-button::after {
  filter: none !important;
  content: '\f078' !important;
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  background-image: none !important;
  color: var(--primary) !important;
  font-size: .8rem;
  transition: transform .3s !important;
}
.accordion-button:not(.collapsed)::after { transform: rotate(-180deg) !important; }
.accordion-body {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 22px 18px !important;
  background: var(--bg-card) !important;
}

/* ============================================================
   TECH STACK SECTION
   ============================================================ */
.tech-section { background: var(--bg-light); }
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: default;
}
.tech-badge:hover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb),.04);
  color: var(--primary);
  transform: translateY(-2px);
}
.tech-badge i { color: var(--primary); font-size: 1.1rem; }

/* ============================================================
   CONTACT / FORMS
   ============================================================ */
.contact-section { background: var(--bg); }
.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #fff;
  height: 100%;
}
.contact-info-card h3 { color: #fff; margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,.8); margin-bottom: 28px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-info-text a { color: rgba(255,255,255,.9) !important; font-size: .9rem; }
.contact-info-text small { color: rgba(255,255,255,.6); font-size: .78rem; display: block; }
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
}
.form-control, .form-select {
  background: var(--bg-light) !important;
  border: 1.5px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: .92rem !important;
  font-family: 'Poppins', sans-serif !important;
  transition: var(--transition) !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.12) !important;
  background: var(--bg) !important;
}
.form-control::placeholder { color: var(--text-muted) !important; }
.form-label { font-weight: 600; font-size: .88rem; color: var(--text); margin-bottom: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section {
  background: #0a0a14;
}
.footer-top { padding: 70px 0 50px; }
.footer-heading {
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  font-weight: 400;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 1rem;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .92rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-newsletter .form-control {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.12) !important;
  color: #fff !important;
  border-radius: 8px 0 0 8px !important;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,.35) !important; }


/* Contact card link visibility */
.contact-info-item a { color: rgba(255,255,255,.9) !important; text-decoration: none; }
.contact-info-item small { color: rgba(255,255,255,.6); font-size: .78rem; display: block; }
.contact-info-item .fw-600 { font-weight: 600; }
/* Office location cards */
.office-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  height: 100%;
  transition: var(--transition);
}
.office-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.office-card .office-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(225,6,0,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 14px;
}
.office-card.main-office { border-color: var(--primary); }
.office-badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  background: var(--primary); color: #fff;
  padding: 2px 10px; border-radius: 20px; margin-bottom: 10px;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */

/* Footer bottom text visibility */
.footer-bottom p { color: rgba(255,255,255,.55) !important; }
.footer-bottom a { color: rgba(255,255,255,.5) !important; text-decoration: none; }
.footer-bottom a:hover { color: var(--primary) !important; }

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: var(--transition);
  position: relative;
}
.float-btn:hover { transform: scale(1.12); color: #fff; }
.whatsapp-btn { background: #25D366; }
.call-btn { background: var(--primary); }
.float-label {
  position: absolute;
  right: 60px;
  background: var(--secondary);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-label::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--secondary);
}
.float-btn:hover .float-label { opacity: 1; }

/* Scroll to top */
.scroll-top-btn {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 999;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-red);
}
.scroll-top-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--navbar-h) + 60px) 0 70px;
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(var(--primary-rgb),.04) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), transparent);
}
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted) !important; }
.breadcrumb-item a { color: var(--primary) !important; font-weight: 500; }
.breadcrumb-item.active { color: var(--text-muted) !important; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ============================================================
   BLOG PAGE STYLES
   ============================================================ */
.blog-single-content {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
}
.blog-single-content h2,
.blog-single-content h3 {
  margin: 36px 0 14px;
  font-weight: 700;
}
.blog-single-content h2 { font-size: 1.6rem; }
.blog-single-content h3 { font-size: 1.25rem; }
.blog-single-content p { margin-bottom: 18px; }
.blog-single-content ul, .blog-single-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.blog-single-content li { margin-bottom: 6px; }
.blog-single-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  background: rgba(var(--primary-rgb),.04);
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-muted);
}
.blog-sidebar .card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.blog-tags .badge {
  background: rgba(var(--primary-rgb),.08) !important;
  color: var(--primary) !important;
  font-size: .8rem;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 500;
  border: 1px solid rgba(var(--primary-rgb),.15);
  cursor: pointer;
  transition: var(--transition);
}
.blog-tags .badge:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

/* AdSense Containers */
.adsense-container {
  background: var(--bg-light);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .8rem;
  font-weight: 500;
  text-align: center;
  margin: 24px 0;
}
.adsense-sidebar {
  min-height: 250px;
  width: 100%;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  text-align: center;
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb),.08), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 50px;
  letter-spacing: .08em;
}
.pricing-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(var(--primary-rgb),.08);
  color: var(--primary);
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.pricing-price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin: 16px 0 4px;
}
.pricing-period { font-size: .85rem; color: var(--text-muted); }
.pricing-features { list-style: none; padding: 0; margin: 24px 0; text-align: left; }
.pricing-features li {
  padding: 7px 0;
  font-size: .9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex; gap: 10px; align-items: center;
}
.pricing-features li:last-child { border: none; }
.pricing-features li i { color: var(--primary); font-size: .85rem; flex-shrink: 0; }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb),.2);
}
.team-thumb {
  height: 220px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),.08) 0%, rgba(var(--primary-rgb),.02) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-avatar-placeholder {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-red);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--primary-rgb),.9);
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.team-social-link:hover { background: #fff; color: var(--primary); }
.team-info { padding: 20px; }
.team-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: .82rem; color: var(--primary); font-weight: 600; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.divider-red {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  margin: 14px 0 24px;
}
.divider-red.center { margin: 14px auto 24px; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-gradient-brand {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}
.icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(var(--primary-rgb),.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}
.icon-box.icon-box-lg {
  width: 72px; height: 72px;
  border-radius: 20px;
  font-size: 1.8rem;
}
.text-body-color { color: var(--text) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.bg-light-custom { background: var(--bg-light) !important; }
.bg-card-custom { background: var(--bg-card) !important; }
.border-custom { border-color: var(--border) !important; }
.shadow-red { box-shadow: var(--shadow-red) !important; }

/* Map embed */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* Live chat widget */
.chat-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 998;
}
.chat-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(102,126,234,.4);
  transition: var(--transition);
}
.chat-btn:hover { transform: scale(1.1); }
.chat-window {
  position: absolute;
  bottom: 62px; left: 0;
  width: 280px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: none;
}
.chat-window.open { display: block; }
.chat-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
  font-size: .88rem;
  display: flex; justify-content: space-between; align-items: center;
}
.chat-messages {
  height: 180px;
  overflow-y: auto;
  padding: 12px;
}
.chat-message {
  background: var(--bg-light);
  border-radius: 10px 10px 10px 2px;
  padding: 8px 12px;
  font-size: .83rem;
  color: var(--text);
  margin-bottom: 8px;
  max-width: 85%;
}
.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
}
.chat-input-area input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: .83rem;
  background: var(--bg-light);
  color: var(--text);
}
.chat-send {
  width: 34px; height: 34px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
}
.chat-send:hover { background: var(--primary-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .section-py { padding: 60px 0; }
  .mega-dropdown { min-width: 100%; }
  .hero-title { font-size: 2rem; }
  .stat-item::after { display: none; }
  .process-step::after { display: none; }
  .hero-float-card { display: none; }
}
@media (max-width: 767.98px) {
  .section-py { padding: 50px 0; }
  .hero-section { padding-top: var(--navbar-h); min-height: auto; padding-bottom: 60px; }
  .hero-stats { gap: 20px; }
  .cta-title { font-size: 1.6rem; }
  .contact-form-card { padding: 24px 18px; }
  .contact-info-card { padding: 28px 18px; }
}
@media (max-width: 575.98px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn-primary-brand,
  .hero-cta-group .btn-outline-brand { width: 100%; justify-content: center; }
  .float-label { display: none; }
}
