/* ==========================================================================
   TRACE VEIL FORENSICS - PROFESSIONAL WEBSITE DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES (THEMING)
   -------------------------------------------------------------------------- */
:root {
  /* Primary Brand Colors */
  --primary: #0A1628;           /* Deep Navy Blue - Primary brand color */
  --secondary: #1E3A5F;         /* Medium Navy - Secondary brand color */
  --accent: #FFD700;            /* Pure Gold - Accent and highlight color */
  --accent-light: #FFED4E;      /* Light Gold - Hover and subtle highlights */

  /* Background Colors */
  --bg-primary: #0A1628;       /* Primary background - Dark navy */
  --bg-secondary: #1E3A5F;     /* Secondary background - Medium navy */
  --bg-dark: #0A1628;           /* Dark background */
  --bg-card: #1E3A5F;           /* Card background */

  /* Text Colors */
  --text-primary: #FFFFFF;      /* Primary text - White */
  --text-secondary: #E2E8F0;    /* Secondary text - Light gray */
  --text-muted: #A0AEC0;        /* Muted text - Medium gray */
  --text-light: #FFFFFF;        /* Light text for dark backgrounds */

  /* Border Colors */
  --border-light: #2C5282;      /* Light borders */
  --border-medium: #4A5568;     /* Medium borders */
  --border-dark: #4299E1;       /* Dark borders */

  /* Functional Colors */
  --success: #10B981;           /* Success green */
  --warning: #F59E0B;           /* Warning yellow */
  --error: #EF4444;             /* Error red */
  --info: #3B82F6;              /* Info blue */

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-lg: 1.125rem;     /* 18px */
  --font-size-xl: 1.25rem;      /* 20px */
  --font-size-2xl: 1.5rem;      /* 24px */
  --font-size-3xl: 1.875rem;    /* 30px */
  --font-size-4xl: 2.25rem;     /* 36px */
  --font-size-5xl: 3rem;        /* 48px */

  /* Spacing */
  --spacing-xs: 0.25rem;        /*4px */
  --spacing-sm: 0.5rem;         /*8px */
  --spacing-md: 1rem;           /*16px */
  --spacing-lg: 1.5rem;         /*24px */
  --spacing-xl: 2rem;           /*32px */
  --spacing-2xl: 3rem;          /*48px */
  --spacing-3xl: 4rem;          /*64px */
  --spacing-4xl: 6rem;          /*96px */

  /* Border Radius */
  --radius-sm: 0.25rem;         /*4px */
  --radius-md: 0.5rem;          /*8px */
  --radius-lg: 0.75rem;         /*12px */
  --radius-xl: 1rem;            /*16px */
  --radius-2xl: 1.5rem;         /*24px */
  --radius-full: 9999px;        /* Fully rounded */

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
  --shadow-md: 0 4px 6px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 10px 15px rgba(10, 22, 40, 0.1);
  --shadow-xl: 0 20px 25px rgba(10, 22, 40, 0.15);
  --shadow-2xl: 0 25px 50px rgba(10, 22, 40, 0.2);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Container */
  --container-max-width: 1200px;
  --container-padding: 2rem;

  /* Header */
  --header-height: 80px;
  --header-height-mobile: 70px;
}



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

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

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color var(--transition-base), color var(--transition-base);
}

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

a {
  color: #B8860B;
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: #DAA520;
}

a {
  color: #FFD700;
}

a:hover {
  color: #FFED4E;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

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

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-white { color: var(--text-light); }

.highlight {
  color: var(--accent);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   LAYOUT
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--spacing-4xl) 0;
}

.section-sm {
  padding: var(--spacing-2xl) 0;
}

.section-lg {
  padding: var(--spacing-4xl) 0;
}

.section-xl {
  padding: var(--spacing-4xl) 0;
}

/* Background Variations */
.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-dark { background-color: var(--primary); }
.bg-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); }

/* Grid System */
.grid {
  display: grid;
  gap: var(--spacing-xl);
}

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

/* Responsive Grid */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }

/* Spacing Utilities */
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.my-sm { margin-top: var(--spacing-sm); margin-bottom: var(--spacing-sm); }
.my-md { margin-top: var(--spacing-md); margin-bottom: var(--spacing-md); }
.my-lg { margin-top: var(--spacing-lg); margin-bottom: var(--spacing-lg); }
.my-xl { margin-top: var(--spacing-xl); margin-bottom: var(--spacing-xl); }

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.logo img {
  height: 75px;
  width: auto;
  border-radius: var(--radius-2xl);
}

.logo-text {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-primary);
}

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

@media (max-width: 1024px) {
  .logo img {
    height: 65px;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 50px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.auth-buttons {
  display: flex;
  gap: var(--spacing-sm);
}

.auth-buttons .btn {
  padding: 8px 16px;
  font-size: 14px;
}

.mobile-auth-buttons {
  display: none;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.user-menu-dropdown {
  position: relative;
}

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.user-menu-btn:hover {
  background: rgba(255, 215, 0, 0.2);
}

.user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  min-width: 200px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: var(--spacing-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
}

.user-dropdown-menu.active,
.user-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.user-dropdown-menu li a:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--primary);
}

.user-dropdown-menu li.divider {
  height: 1px;
  background: #eee;
  margin: var(--spacing-sm) 0;
}

.user-dropdown-menu li a i {
  width: 18px;
  color: #666;
}

.user-dropdown-menu li a:hover i {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-link {
  color: #1a202c;
  font-weight: 500;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #B8860B;
  background: rgba(184, 134, 11, 0.1);
}

.nav-link {
  color: #E2E8F0;
}

.nav-link:hover,
.nav-link.active {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.15);
}

.nav-link.client-portal-link {
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700 !important;
  border: 1px solid #FFD700;
  padding: 8px 16px;
  margin-left: 10px;
  border-radius: 6px;
}

.nav-link.client-portal-link:hover {
  background: #FFD700;
  color: #0A1628 !important;
}

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: var(--spacing-sm) 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item-dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.dropdown-menu li a i {
  color: var(--accent);
  width: 20px;
  text-align: center;
}

.dropdown-menu li a:hover {
  background: var(--bg-secondary);
  color: var(--accent);
  padding-left: var(--spacing-lg);
}

.dropdown-menu {
  background: #152238;
  border-color: rgba(255, 215, 0, 0.2);
}

.dropdown-menu li a:hover {
  background: rgba(255, 215, 0, 0.1);
}

.theme-toggle {
  margin-left: var(--spacing-lg);
}

.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.theme-btn i {
  color: var(--primary);
  font-size: 1.2rem;
}

.theme-btn i {
  color: var(--primary);
}

.theme-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #0A1628 !important;
  font-size: 20px;
  background: linear-gradient(135deg, #FFD700 0%, #ffc107 100%) !important;
  border: none !important;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1001;
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.mobile-menu-btn.active {
  background: #1E3A5F !important;
  color: #FFD700 !important;
}

.mobile-menu-btn i {
  color: inherit !important;
}

.mobile-menu-overlay {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(4px);
  z-index: 999 !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block !important;
  opacity: 1 !important;
}

@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex !important;
  }
  
  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 10px;
  }
  
  .mobile-auth-buttons {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 20px 30px;
  }
  
  .mobile-auth-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .header-actions .auth-buttons {
    display: none !important;
  }
  
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 300px !important;
    max-width: 85vw !important;
    background: linear-gradient(180deg, #0A1628 0%, #1E3A5F 100%) !important;
    flex-direction: column !important;
    padding: 80px 24px 30px !important;
    gap: 8px !important;
    transform: translateX(100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5) !important;
    z-index: 1000 !important;
    overflow-y: auto !important;
    display: flex !important;
  }
  
  .nav-menu.active {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.08), transparent 70%);
    pointer-events: none;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }
  
  .nav-list > li {
    width: 100%;
  }
  
  .nav-link {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
  }
  
  .nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent);
    transform: translateX(4px);
  }
  
  .nav-link.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    color: var(--accent);
  }
  
  .nav-dropdown {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: auto;
  }
  
  .nav-dropdown .nav-link {
    padding-left: 40px;
    font-size: 14px;
  }
  
  .nav-dropdown .nav-link::before {
    content: '•';
    margin-right: 8px;
    color: var(--accent);
  }
  
  .has-dropdown > .nav-link::after {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.2s;
  }
  
  .has-dropdown.active > .nav-link::after {
    transform: rotate(180deg);
  }
  
  .auth-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .auth-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.96) 0%, rgba(30, 58, 95, 0.94) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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='%23FFD700' fill-opacity='0.05'%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");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-3xl) var(--container-padding);
  text-align: center;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--text-light);
  margin-bottom: var(--spacing-xl);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero p {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #0A1628;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
  color: #0A1628;
}

.btn-primary {
  color: #0A1628;
}

.btn-primary:hover {
  color: #0A1628;
}

.btn-secondary {
  background: transparent;
  color: #B8860B;
  border: 2px solid #B8860B;
}

.btn-secondary:hover {
  background: #B8860B;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-secondary {
  color: #FFD700;
  border-color: #FFD700;
}

.btn-secondary:hover {
  background: #FFD700;
  color: #0A1628;
}

.btn-dark {
  background: var(--primary);
  color: var(--text-light);
}

.btn-dark:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: var(--spacing-lg) var(--spacing-2xl);
  font-size: var(--font-size-lg);
}

.btn-sm {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: var(--font-size-sm);
}

/* --------------------------------------------------------------------------
   CARDS
   -------------------------------------------------------------------------- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.card-icon i {
  font-size: 1.75rem;
  color: var(--text-light);
}

.card-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
}

.card-text {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

/* Service Cards */
.service-card {
  background: #152238;
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}

.service-card h3 {
  color: var(--text-light);
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.learn-more {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all var(--transition-fast);
}

.learn-more:hover {
  color: var(--accent-light);
  gap: var(--spacing-md);
}

@media (max-width: 768px) {
  .service-card {
    text-align: left;
    padding: var(--spacing-lg);
  }
  
  .service-card h3 {
    font-size: var(--font-size-lg);
  }
}

/* --------------------------------------------------------------------------
   SERVICE ROWS (Alternating Layout)
   -------------------------------------------------------------------------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  margin-bottom: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
  border-bottom: 1px solid var(--border-light);
}

.service-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

.service-row-content {
  padding: var(--spacing-lg);
}

.service-row-content h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.service-row-content p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-lg);
  line-height: 1.7;
}

.service-icon-large {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.service-icon-large i {
  font-size: 2rem;
  color: var(--text-light);
}

.service-row-image {
  padding: var(--spacing-lg);
}

.service-row-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 1024px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .service-row.reverse {
    direction: ltr;
  }
  
  .service-row-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .service-row-content h3 {
    font-size: var(--font-size-xl);
  }
  
  .service-row-content p {
    font-size: var(--font-size-base);
  }
}

/* --------------------------------------------------------------------------
   SPLIT LAYOUT (Used in About Page)
   -------------------------------------------------------------------------- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.split-layout.reverse {
  direction: rtl;
}

.split-layout.reverse > * {
  direction: ltr;
}

.split-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}

.split-content h2 .highlight {
  color: var(--accent);
}

.split-content p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.split-content h2 + p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
}

.visual-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  border: 1px solid var(--border-light);
  text-align: center;
}

.visual-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
}

.visual-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.visual-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.visual-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: var(--font-size-base);
}

@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .split-layout.reverse {
    direction: ltr;
  }
}

/* --------------------------------------------------------------------------
   VALUES GRID
   -------------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.value-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
}

.value-icon i {
  font-size: 1.75rem;
  color: var(--text-light);
}

.value-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.value-card p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  margin: 0;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SKILLS GRID
   -------------------------------------------------------------------------- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.skill-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.skill-item:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.skill-item i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.skill-item span {
  font-weight: 500;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */
.about-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-intro .lead-text {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 400;
}

.about-intro .lead-text {
  color: rgba(255, 255, 255, 0.85);
}

.feature-highlight-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.feature-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.feature-highlight-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
}

.feature-highlight-icon i {
  font-size: 2rem;
  color: var(--text-light);
}

.feature-highlight-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.feature-highlight-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: var(--font-size-base);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-intro .lead-text {
    font-size: var(--font-size-lg);
  }
}

/* --------------------------------------------------------------------------
   FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg);
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: rgba(255, 215, 0, 0.05);
}

.faq-question i {
  color: var(--accent);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.pricing-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: var(--accent);
}

.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.pricing-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px 0;
}

.pricing-header p {
  color: #666;
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

.pricing-price {
  text-align: center;
  margin-bottom: 25px;
  padding: 20px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.pricing-price .currency {
  font-size: 20px;
  color: var(--primary);
  font-weight: 600;
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pricing-price .period {
  display: block;
  font-size: 14px;
  color: #27ae60;
  font-weight: 600;
  margin-top: 5px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.pricing-features li {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  color: #333;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #27ae60;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 25px;
  }
  .pricing-price .amount {
    font-size: 36px;
  }
}

/* --------------------------------------------------------------------------
   ABOUT PAGE - NEW DESIGN
   -------------------------------------------------------------------------- */
.about-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(30, 58, 95, 0.88) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: var(--spacing-3xl) var(--container-padding);
}

.about-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.15;
  font-weight: 800;
}

.about-hero-content h1 .highlight {
  color: var(--accent);
}

.about-hero-content > p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-3xl);
  flex-wrap: wrap;
  margin-top: var(--spacing-2xl);
}

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

.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Section Styles */
.about-section-light {
  background: var(--bg-primary);
}

.about-section-dark {
  background: var(--secondary);
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.split-layout.reverse {
  direction: rtl;
}

.split-layout.reverse > * {
  direction: ltr;
}

.section-tag {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--spacing-md);
}

.split-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}

.split-content .lead {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.split-content p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.split-content h2 {
  color: var(--text-light);
}

.split-content .lead,
.split-content p {
  color: rgba(255, 255, 255, 0.85);
}

/* Visual Cards */
.visual-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.problem-card {
  border-color: rgba(239, 68, 68, 0.3);
}

.problem-card::before {
  background: #EF4444;
}

.solution-card {
  border-color: rgba(16, 185, 129, 0.3);
}

.solution-card::before {
  background: #10B981;
}

.visual-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.problem-card .visual-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}

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

.visual-icon i {
  font-size: 1.5rem;
}

.visual-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.expertise-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
}

.expertise-icon i {
  font-size: 1.75rem;
  color: var(--text-light);
}

.expertise-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.expertise-card p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  margin: 0;
}

/* CTA Box */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 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='%23FFD700' fill-opacity='0.05'%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");
}

.cta-box-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.cta-box-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.cta-box-content h2 .highlight {
  color: var(--accent);
}

.cta-box-content p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: var(--font-size-base);
  line-height: 1.6;
}

.cta-box-action {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Quick Footer */
.quick-footer {
  background: var(--primary);
  padding: var(--spacing-xl) 0;
}

.quick-footer-grid {
  display: flex;
  justify-content: center;
  gap: var(--spacing-3xl);
  flex-wrap: wrap;
}

.quick-footer-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
}

.quick-footer-item i {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .split-layout.reverse {
    direction: ltr;
  }
  
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 70vh;
  }
  
  .about-hero-stats {
    gap: var(--spacing-xl);
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: var(--font-size-base);
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-box {
    flex-direction: column;
    text-align: center;
  }
  
  .quick-footer-grid {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }
}

/* --------------------------------------------------------------------------
   TRUST INDICATORS
   -------------------------------------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.trust-item {
  text-align: center;
  padding: var(--spacing-xl);
}

.trust-item i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: var(--spacing-lg);
  display: block;
}

.trust-item h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
}

.trust-item p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

/* --------------------------------------------------------------------------
   SECTIONS
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-3xl);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-md);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: var(--spacing-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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='%23FFD700' fill-opacity='0.05'%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");
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.cta-content h2 {
  color: var(--text-light);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-lg);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-2xl);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   FOOTER - REDESIGNED PROFESSIONAL FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: linear-gradient(180deg, #0A1628 0%, #152238 100%);
  color: #E2E8F0;
  padding: 60px 20px 25px;
  position: relative;
  width: 100%;
}

.footer-full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.footer-full .container {
  max-width: 100%;
  margin: 0;
  padding: 0 60px;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr 1.2fr;
  gap: 45px;
  margin-bottom: 40px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 0 60px;
  box-sizing: border-box;
}

.footer-brand {
  padding-right: 35px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr 1fr;
  gap: 35px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.footer-brand {
  padding-right: 25px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 15px;
}

.footer-brand .logo img {
  max-width: 170px;
  height: auto;
}

.footer-brand > p {
  color: #94A3B8;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 15px;
  font-size: 11px;
  color: #FFD700;
  white-space: nowrap;
}

.trust-badge i {
  font-size: 12px;
}

.footer-section h4 {
  color: #FFD700;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background: #FFD700;
}

.footer-section h4 .subtitle {
  display: block;
  font-size: 10px;
  color: #64748B;
  font-weight: 400;
  margin-top: 3px;
  text-transform: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul a {
  color: #94A3B8;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section ul a:hover {
  color: #FFD700;
  padding-left: 5px;
}

.footer-section ul a i {
  font-size: 11px;
  width: 16px;
  text-align: center;
  opacity: 0.7;
}

.footer-section ul a:hover i {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: #94A3B8;
  font-size: 13px;
}

.footer-contact-item i {
  color: #FFD700;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #FFD700;
}

.footer-social {
  margin-top: 20px;
}

.footer-social p {
  color: #94A3B8;
  font-size: 12px;
  margin-bottom: 12px;
}

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

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: #FFD700;
  color: #0A1628;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.25);
}

.social-links a svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.footer-bottom p {
  color: #64748B;
  font-size: 12px;
  margin: 0;
}

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

.footer-legal-links a {
  color: #64748B;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #FFD700;
}

.footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 15px;
  margin-top: 15px;
}

.footer-newsletter h5 {
  color: #FFD700;
  font-size: 13px;
  margin: 0 0 10px 0;
}

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

.footer-newsletter-form input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 12px;
}

.footer-newsletter-form input::placeholder {
  color: #64748B;
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: #FFD700;
}

.footer-newsletter-form button {
  padding: 8px 14px;
  background: #FFD700;
  color: #0A1628;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.footer-newsletter-form button:hover {
  background: #ffe033;
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .footer-trust-badges {
    justify-content: center;
  }
  
  .footer-newsletter {
    max-width: 400px;
    margin: 20px auto 0;
  }
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-section:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
  
  .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 50px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .footer-section {
    text-align: center !important;
  }
  
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-section ul a {
    justify-content: center;
  }
  
  .trust-badge {
    padding: 5px 10px;
    font-size: 10px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .social-links {
    justify-content: center;
  }
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-section ul a {
  color: #94A3B8;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section ul a::before {
  content: '';
  width: 0;
  height: 2px;
  background: #FFD700;
  transition: width 0.25s ease;
}

.footer-section ul a:hover {
  color: #FFD700;
  padding-left: 8px;
}

.footer-section ul a:hover::before {
  width: 8px;
}

.footer-section ul a i {
  font-size: 12px;
  width: 18px;
  text-align: center;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: #94A3B8;
  font-size: 14px;
}

.footer-contact-item i {
  color: #FFD700;
  font-size: 16px;
  margin-top: 2px;
}

.footer-contact-item a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: #FFD700;
}

.footer-social {
  margin-top: 25px;
}

.footer-social p {
  color: #94A3B8;
  font-size: 13px;
  margin-bottom: 15px;
}

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

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: #FFD700;
  color: #0A1628;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.social-links a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: #64748B;
  font-size: 13px;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 25px;
}

.footer-legal-links a {
  color: #64748B;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal-links a:hover {
  color: #FFD700;
}

.footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.footer-newsletter h5 {
  color: #FFD700;
  font-size: 14px;
  margin: 0 0 12px 0;
}

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

.footer-newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 13px;
}

.footer-newsletter-form input::placeholder {
  color: #64748B;
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: #FFD700;
}

.footer-newsletter-form button {
  padding: 10px 18px;
  background: #FFD700;
  color: #0A1628;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.footer-newsletter-form button:hover {
  background: #ffe033;
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 25px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .trust-badge {
    padding: 6px 12px;
    font-size: 11px;
  }
}

/* --------------------------------------------------------------------------
   FORMS
   -------------------------------------------------------------------------- */
  color: #000000;
  border-color: #FFFFFF;
}

.social-links a[aria-label="Instagram"] {
  background: rgba(228, 64, 95, 0.15);
  color: #E4405F;
  border-color: rgba(228, 64, 95, 0.2);
}

.social-links a[aria-label="Instagram"]:hover {
  background: #E4405F;
  color: #FFFFFF;
  border-color: #E4405F;
}

.social-links a[aria-label="LinkedIn"] {
  background: rgba(10, 102, 194, 0.15);
  color: #0A66C2;
  border-color: rgba(10, 102, 194, 0.2);
}

.social-links a[aria-label="LinkedIn"]:hover {
  background: #0A66C2;
  color: #FFFFFF;
  border-color: #0A66C2;
}

.social-links a:hover {
  background: #B8860B;
  color: #FFFFFF;
  transform: translateY(-3px);
  border-color: #B8860B;
}

.social-links a[aria-label="Facebook"] {
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.3);
}

.social-links a[aria-label="Facebook"]:hover {
  background: #1877F2;
  color: #FFFFFF;
  border-color: #1877F2;
}

.social-links a[aria-label="X (Twitter)"] {
  color: #000000;
  border-color: rgba(0, 0, 0, 0.3);
}

.social-links a[aria-label="X (Twitter)"]:hover {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

.social-links a[aria-label="Instagram"] {
  color: #E4405F;
  border-color: rgba(228, 64, 95, 0.3);
}

.social-links a[aria-label="Instagram"]:hover {
  background: #E4405F;
  color: #FFFFFF;
  border-color: #E4405F;
}

.social-links a[aria-label="LinkedIn"] {
  color: #0A66C2;
  border-color: rgba(10, 102, 194, 0.3);
}

.social-links a[aria-label="LinkedIn"]:hover {
  background: #0A66C2;
  color: #FFFFFF;
  border-color: #0A66C2;
}

.social-links a {
  background: rgba(0, 0, 0, 0.2);
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.3);
}

.social-links a:hover {
  background: #FFD700;
  color: var(--primary);
  border-color: #FFD700;
}

.social-links a[aria-label="Facebook"] {
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.3);
}

.social-links a[aria-label="Facebook"]:hover {
  background: #1877F2;
  color: #FFFFFF;
  border-color: #1877F2;
}

.social-links a[aria-label="X (Twitter)"] {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

/* --------------------------------------------------------------------------
   FORMS
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

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

/* --------------------------------------------------------------------------
   CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.contact-info-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
}

.contact-info-card h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-xl);
}

.contact-methods-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-lg);
}

.contact-method-item i {
  font-size: 1.5rem;
  color: var(--accent);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-full);
}

.contact-method-text h4 {
  margin-bottom: var(--spacing-xs);
  font-size: var(--font-size-base);
}

.contact-method-text p {
  margin: 0;
  color: var(--text-secondary);
}

.response-time {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-lg);
  color: var(--accent);
  font-weight: 500;
}

.contact-form-section h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-xl);
}

/* --------------------------------------------------------------------------
   LEGAL PAGES
   -------------------------------------------------------------------------- */
.legal-content {
  padding: var(--spacing-3xl) 0;
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl);
  box-shadow: var(--shadow-lg);
}

.document-header {
  border-bottom: 2px solid var(--accent);
  padding-bottom: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
  text-align: center;
}

.document-info {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-xs);
}

.document-section {
  margin-bottom: var(--spacing-2xl);
}

.document-section h2 {
  font-size: var(--font-size-2xl);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.document-section h3 {
  font-size: var(--font-size-lg);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.document-section p {
  margin-bottom: var(--spacing-md);
}

.document-section ul {
  margin-bottom: var(--spacing-lg);
}

.document-section ul li {
  padding-left: var(--spacing-lg);
  position: relative;
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

.document-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.contact-info {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  margin-top: var(--spacing-lg);
}

.contact-info p {
  margin-bottom: var(--spacing-sm);
}

/* --------------------------------------------------------------------------
   ABOUT PAGE
   -------------------------------------------------------------------------- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: start;
}

.about-text h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-lg);
}

.about-text p {
  margin-bottom: var(--spacing-lg);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.skill-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.skill-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.skill-item i {
  font-size: 1.5rem;
  color: var(--accent);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-full);
}

.skill-item span {
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.value-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
}

.value-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.value-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
}

.value-card p {
  font-size: var(--font-size-sm);
  margin: 0;
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.5rem;
  }
  
  .section {
    padding: var(--spacing-3xl) 0;
  }
  
  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-3xl);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .service-features {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .legal-document {
    padding: var(--spacing-xl);
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .card,
  .service-card,
  .value-card {
    padding: var(--spacing-lg);
  }
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   FORMS
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Staggered Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* --------------------------------------------------------------------------
   UTILITY CLASSES
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-none { box-shadow: none; }

.transition { transition: all var(--transition-base); }
.transition-fast { transition: all var(--transition-fast); }
.transition-slow { transition: all var(--transition-slow); }

/* ==========================================================================
   END OF DESIGN SYSTEM
   ========================================================================== */