/* UI Trax - Main Stylesheet */
/* Converted from Tailwind CSS to Pure CSS for Hostinger Hosting */

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #000000;
  --border-radius: 0.625rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* ============================================
   Colors
   ============================================ */
.text-white { color: var(--white); }
.text-black { color: var(--black); }
.text-gray-300 { color: var(--gray-300); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }
.text-red-100 { color: var(--red-100); }
.text-red-400 { color: var(--red-400); }
.text-red-500 { color: var(--red-500); }
.text-red-600 { color: var(--red-600); }
.text-red-700 { color: var(--red-700); }

.bg-white { background-color: var(--white); }
.bg-black { background-color: var(--black); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-gray-200 { background-color: var(--gray-200); }
.bg-gray-300 { background-color: var(--gray-300); }
.bg-red-50 { background-color: var(--red-50); }
.bg-red-100 { background-color: var(--red-100); }
.bg-red-600 { background-color: var(--red-600); }
.bg-red-700 { background-color: var(--red-700); }

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }

.flex-shrink-0 { flex-shrink: 0; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-20 > * + * { margin-top: 5rem; }

/* ============================================
   Grid System
   ============================================ */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:text-left { text-align: left; }
  .lg\:text-4xl { font-size: 2.25rem; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:justify-start { justify-content: flex-start; }
}

/* ============================================
   Spacing
   ============================================ */
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }

.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.ml-2 { margin-left: 0.5rem; }

/* ============================================
   Sizing
   ============================================ */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\.5 { width: 0.375rem; }
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }

.h-auto { height: auto; }
.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-96 { height: 24rem; }

.min-h-screen { min-height: 100vh; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

/* ============================================
   Borders
   ============================================ */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }

.border-white { border-color: var(--white); }
.border-gray-200 { border-color: var(--gray-200); }
.border-gray-300 { border-color: var(--gray-300); }
.border-gray-800 { border-color: var(--gray-800); }
.border-red-100 { border-color: var(--red-100); }
.border-red-200 { border-color: var(--red-200); }
.border-red-600 { border-color: var(--red-600); }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ============================================
   Effects & Shadows
   ============================================ */
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.opacity-95 { opacity: 0.95; }

/* ============================================
   Transitions
   ============================================ */
.transition { transition-property: all; transition-timing-function: ease-in-out; transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: ease-in-out; transition-duration: 200ms; }
.transition-all { transition-property: all; transition-timing-function: ease-in-out; transition-duration: 300ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* ============================================
   Transforms
   ============================================ */
.transform { transform: translateZ(0); }
.rotate-45 { transform: rotate(45deg); }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* ============================================
   Position
   ============================================ */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.-bottom-4 { bottom: -1rem; }
.-right-4 { right: -1rem; }
.left-1\/2 { left: 50%; }

.z-50 { z-index: 50; }

/* ============================================
   Overflow
   ============================================ */
.overflow-hidden { overflow: hidden; }

/* ============================================
   Object Fit
   ============================================ */
.object-cover { object-fit: cover; }

/* ============================================
   Gradients
   ============================================ */
.gradient-hero {
  background: linear-gradient(to bottom right, var(--gray-900), var(--black), var(--red-900));
}

.gradient-cta {
  background: linear-gradient(to right, var(--red-600), var(--black));
}

.gradient-card {
  background: linear-gradient(to bottom right, var(--gray-800), var(--red-900));
}

.gradient-logo {
  background: linear-gradient(to bottom right, var(--red-600), var(--red-800));
}

/* ============================================
   Header Styles
   ============================================ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 50;
}

.header-nav {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .header-nav { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .header-nav { padding: 0 2rem; }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to bottom right, var(--red-600), var(--red-800));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.logo-icon-inner {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--white);
  border-radius: 0.25rem;
  transform: rotate(45deg);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

@media (min-width: 640px) {
  .logo-text { font-size: 1.5rem; }
}

.logo-text span {
  color: var(--red-600);
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
}

.nav-link {
  color: var(--gray-700);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.nav-link:hover {
  color: var(--red-600);
}

.nav-link.active {
  color: var(--red-600);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--gray-700);
  padding: 0.5rem;
}

.mobile-menu-btn:hover {
  color: var(--red-600);
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  background-color: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 0.5rem;
}

.mobile-nav.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}

.mobile-nav-link {
  display: block;
  color: var(--gray-700);
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.mobile-nav-link:hover {
  color: var(--red-600);
}

/* ============================================
   Button Styles
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.btn-primary {
  background-color: var(--red-600);
  color: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--red-700);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--red-600);
  color: var(--red-600);
}

.btn-outline:hover {
  background-color: var(--red-50);
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--red-600);
}

.btn-white {
  background-color: var(--white);
  color: var(--red-600);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background-color: var(--gray-100);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Card Styles
   ============================================ */
.card {
  background-color: var(--white);
  border: 1px solid var(--red-100);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  border-color: var(--red-200);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 1.5rem;
  padding-bottom: 1rem;
}

.card-content {
  padding: 1.5rem;
  padding-top: 0;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.625;
}

/* ============================================
   Hero Sections
   ============================================ */
.hero-section {
  background: linear-gradient(to bottom right, var(--gray-900), var(--black), var(--red-900));
  padding: 5rem 0 5rem;
}

@media (min-width: 1024px) {
  .hero-section { padding: 8rem 0 8rem; }
}

.hero-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-content { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .hero-content { padding: 0 2rem; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: repeat(2, 1fr); }
}

.hero-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text { text-align: left; }
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

@media (min-width: 1024px) {
  .hero-buttons { justify-content: flex-start; }
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-container {
  width: 100%;
  height: 24rem;
  background: linear-gradient(to bottom right, var(--gray-800), var(--red-900));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background-color: var(--red-600);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-badge span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

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

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--red-600);
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .stat-value { font-size: 3rem; }
}

.stat-label {
  color: var(--gray-600);
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .stat-label { font-size: 1rem; }
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: 5rem 0;
}

.section-gray {
  background-color: var(--gray-50);
}

.section-light-gray {
  background-color: var(--gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 2.25rem; }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .section-subtitle { font-size: 1.25rem; }
}

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  height: 100%;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.service-features {
  margin: 1.5rem 0;
}

.service-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.service-feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--red-600);
  border-radius: 9999px;
  margin-right: 0.5rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(to right, var(--red-600), var(--black));
  text-align: center;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-title { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .cta-title { font-size: 2.25rem; }
}

.cta-text {
  font-size: 1rem;
  color: var(--red-100);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .cta-text { font-size: 1.25rem; }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

/* ============================================
   Features / Why Choose Us
   ============================================ */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--red-600);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-icon span {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
}

.feature-title {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.feature-text {
  color: var(--gray-600);
}

/* ============================================
   Footer Styles
   ============================================ */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(to bottom right, var(--red-600), var(--red-800));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.footer-logo-icon-inner {
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--white);
  border-radius: 0.125rem;
  transform: rotate(45deg);
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-logo-text span {
  color: var(--red-400);
}

.footer-description {
  color: var(--gray-300);
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--gray-400);
  transition: color 0.2s ease-in-out;
}

.footer-social a:hover {
  color: var(--red-400);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--gray-300);
  font-size: 0.875rem;
  transition: color 0.2s ease-in-out;
}

.footer-link:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-300);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color 0.2s ease-in-out;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ============================================
   Form Styles
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

/* ============================================
   Portfolio Filter
   ============================================ */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

@media (min-width: 640px) {
  .portfolio-filter { gap: 1rem; }
}

.filter-btn {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
  border: 1px solid var(--red-600);
  color: var(--red-600);
  background-color: transparent;
  cursor: pointer;
}

@media (min-width: 640px) {
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

.filter-btn:hover {
  background-color: var(--red-50);
}

.filter-btn.active {
  background-color: var(--red-600);
  color: var(--white);
}

/* ============================================
   Portfolio Grid
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

.portfolio-card-image {
  width: 100%;
  height: 10rem;
  background: linear-gradient(to bottom right, var(--gray-200), var(--gray-300));
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .portfolio-card-image { height: 12rem; }
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.tech-tag {
  padding: 0.25rem 0.5rem;
  background-color: var(--red-100);
  color: var(--red-700);
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.result-item {
  display: flex;
  align-items: flex-start;
  font-size: 0.75rem;
  color: var(--gray-600);
}

@media (min-width: 640px) {
  .result-item { font-size: 0.875rem; }
}

.result-dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--red-600);
  border-radius: 9999px;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-stars {
  display: flex;
  margin-bottom: 1rem;
}

.testimonial-star {
  color: var(--red-600);
  font-size: 1.25rem;
}

.testimonial-quote {
  color: var(--gray-700);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--gray-900);
}

.testimonial-role {
  color: var(--red-600);
  font-size: 0.875rem;
}

.testimonial-company {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* ============================================
   Team Grid
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-member-image {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  overflow: hidden;
  background: linear-gradient(to bottom right, var(--gray-200), var(--gray-300));
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Timeline
   ============================================ */
.timeline {
  position: relative;
}

.timeline-line {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 0.25rem;
  background-color: var(--red-200);
}

@media (min-width: 1024px) {
  .timeline-line { display: block; }
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .timeline-item-reverse {
    flex-direction: row-reverse;
  }
}

.timeline-content {
  width: 100%;
}

@media (min-width: 1024px) {
  .timeline-content {
    width: 42%;
    padding-right: 2rem;
  }
  
  .timeline-item-reverse .timeline-content {
    padding-right: 0;
    padding-left: 2rem;
  }
}

.timeline-dot {
  display: none;
  width: 1rem;
  height: 1rem;
  background-color: var(--red-600);
  border-radius: 9999px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 1024px) {
  .timeline-dot { display: block; }
}

.timeline-year {
  width: 3rem;
  height: 3rem;
  background-color: var(--red-600);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
}

/* ============================================
   Contact Info Cards
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--gray-600);
  line-height: 1.625;
}

/* ============================================
   Office Locations
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}

.location-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--red-600);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

/* ============================================
   Awards Section
   ============================================ */
.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
}

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

.award-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.award-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.award-org {
  color: var(--red-100);
}

/* ============================================
   Responsive Utilities
   ============================================ */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:text-xl { font-size: 1.25rem; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:mt-0 { margin-top: 0; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:w-5\/12 { width: 41.666667%; }
  .lg\:w-2\/12 { width: 16.666667%; }
  .lg\:pr-8 { padding-right: 2rem; }
  .lg\:pl-8 { padding-left: 2rem; }
}

/* ===== LEAD CAPTURE FORM STYLES ===== */
.lead-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lead-modal.show {
  display: flex;
}

.lead-modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
}

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

.lead-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}

.lead-modal-close:hover {
  color: #dc2626;
}

.lead-modal-content h2 {
  color: #111;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}

.lead-modal-content > p {
  color: #666;
  margin-bottom: 25px;
  font-size: 14px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.lead-submit-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.lead-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.lead-submit-btn:active {
  transform: translateY(0);
}

.form-disclaimer {
  text-align: center;
  color: #888;
  font-size: 12px;
  margin-top: 10px;
}

.success-message {
  text-align: center;
  padding: 30px 20px;
}

.success-message h3 {
  color: #22c55e;
  font-size: 24px;
  margin-bottom: 15px;
}

.success-message p {
  color: #666;
  margin-bottom: 12px;
  font-size: 14px;
}

.lead-floating-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  font-size: 0;
}

.lead-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
  animation: none;
}

.lead-floating-btn:active {
  transform: scale(0.95);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media(max-width: 768px) {
  .lead-modal-content {
    padding: 30px 20px;
  }
  
  .lead-floating-btn {
    width: 55px;
    height: 55px;
    bottom: 90px;
    right: 20px;
  }
  
  .lead-modal-close {
    right: 15px;
    top: 15px;
    font-size: 24px;
  }
}

/* Budget Input Group */
.budget-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.budget-input-group select {
  flex: 1;
}

.budget-input-group input {
  flex: 1;
  padding: 10px 12px !important;
}

.close-success-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.close-success-btn:hover {
  background: #1e40af;
}

/* WhatsApp Button Styling */
.whatsapp-button {
  background-color: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.whatsapp-button:hover {
  background-color: #20BA58;
  transform: scale(1.05);
}

.whatsapp-button-icon {
  width: 20px;
  height: 20px;
}

.whatsapp-button-lg {
  padding: 14px 32px;
  font-size: 1.1rem;
}

.whatsapp-button-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
