/* ============================================
   Corporate Website - Custom Styles
   enaviyatech - Online Classifieds & Software Products
   ============================================ */

/* ============================================
   CSS VARIABLES - Design System
   ============================================ */
:root {
  /* Primary Colors - Vibrant & Light */
  --primary-color: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #93c5fd;
  
  /* Secondary Colors - Playful */
  --secondary-color: #a855f7;
  --accent-color: #22c55e;
  --accent-teal: #14b8a6;
  
  /* Additional Multi-Color Palette */
  --color-pink: #f472b6;
  --color-rose: #fb7185;
  --color-orange: #fb923c;
  --color-amber: #fcd34d;
  --color-yellow: #fde047;
  --color-lime: #bef264;
  --color-cyan: #22d3ee;
  --color-sky: #38bdf8;
  --color-indigo: #a5b4fc;
  --color-fuchsia: #f0abfc;
  
  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Text Colors */
  --text-primary: #333;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  
  /* Background Colors */
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-dark: #111827;
  
  /* Spacing */
  --section-padding: 2.75rem;
  --section-padding-mobile: 1.75rem;
  --card-spacing: 1.5rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-md: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 4px 8px 0 rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 6px 12px 0 rgba(0, 0, 0, 0.08);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;
  
  /* Typography */
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --line-height-base: 1.7;
  --line-height-tight: 1.3;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: var(--line-height-base);
  font-size: var(--font-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: #333;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.875rem;
  font-weight: 700;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: var(--font-base);
  line-height: var(--line-height-base);
}

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

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: all var(--transition-base);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
}

.navbar.sticky-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-white);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-700) !important;
  transition: transform var(--transition-base);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.brand-logo-icon {
  height: 55px;
  width: auto;
  margin-right: 0.5rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-top {
  font-size: 1.8rem;
  font-weight: 800;
  border-bottom: 2px solid #999;
  padding-bottom: 2px;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #374151, #1f2937);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-bottom {
  font-size: 0.65rem;
  font-weight: 600;
  padding-top: 2px;
  letter-spacing: 0.5em;
}

.navbar-nav .nav-link {
  color: var(--gray-700);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color var(--transition-base);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #999;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #999;
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

/* Header Placeholder - ensure it spans full width for fixed positioning */
#header-placeholder {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1025;
}

/* Ensure first section after header has proper spacing */
#header-placeholder + section {
  margin-top: 100px;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 0.625rem 1rem;
  transition: background-color var(--transition-base);
  color: var(--gray-700);
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--gray-100);
  color: var(--primary-color);
}

.dropdown-item:active {
  background-color: var(--primary-light);
  color: white;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

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

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #6d28d9;
  border-color: #6d28d9;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 35%, #ecfeff 70%, #fff7ed 100%);
  color: #0f172a;
  padding: 1.875rem 0 1.625rem;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(168,85,247,0.12), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(59,130,246,0.14), transparent 38%),
    radial-gradient(circle at 65% 70%, rgba(16,185,129,0.12), transparent 40%);
  opacity: 1;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  color: #0f172a;
  font-size: 3.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
  letter-spacing: -1.2px;
}

.hero-section .lead {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #334155;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  line-height: 1.7;
}

.hero-section .btn-group {
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-illustration {
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: white;
  padding: 0.75rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

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

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-padding) 0;
}

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

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

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -0.8px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.section-title p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 2rem auto 0;
  line-height: 1.7;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-white);
  border: 1px solid #f0f0f0;
}

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

.card-img-top {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 2rem;
}

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

.card-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.75rem;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid #f0f0f0;
}

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

.feature-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.feature-card h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
}

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

/* Business/Product Cards */
.business-card,
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.business-card img,
.product-card img {
  transition: transform var(--transition-slow);
}

.business-card:hover img,
.product-card:hover img {
  transform: scale(1.05);
}

.business-card .card-body,
.product-card .card-body {
  position: relative;
  z-index: 1;
}

/* ============================================
   STATS/MILESTONES
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, #3b82f6 0%, #a855f7 50%, #22c55e 100%);
  color: white;
  padding: 4rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-item .stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-item .stat-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   PRICING TABLES
   ============================================ */
.pricing-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.pricing-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.pricing-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.pricing-card h3 {
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1.5rem 0;
}

.pricing-card .price span {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.pricing-card ul li i {
  color: var(--accent-color);
}

/* ============================================
   FORMS
   ============================================ */
.form-control {
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.form-label {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.invalid-feedback {
  display: none;
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

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

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-control.is-valid {
  border-color: var(--accent-color);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--gray-900);
  color: var(--gray-300);
  padding: 1.5rem 0 0.5rem;
}

.footer .row {
  flex-wrap: nowrap;
}

.footer .row > div:not(:first-child) {
  margin-left: 20px;
  flex-shrink: 1;
}

.footer .row > div {
  min-width: 0;
}

.footer h5 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.footer ul li {
  margin-bottom: 0.35rem;
}

.footer ul li a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
}

.footer ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  text-align: center;
  color: var(--gray-400);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: all var(--transition-base);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #3b82f6 0%, #a855f7 50%, #22c55e 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

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

.cta-section h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-section .btn-light {
  background-color: white;
  color: var(--primary-color);
  border: none;
  font-weight: 700;
}

.cta-section .btn-light:hover {
  background-color: var(--gray-100);
  transform: translateY(-2px);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-300);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 50%;
  padding-right: 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  padding-left: 3rem;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border: 4px solid white;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-md);
}

.timeline-content {
  background-color: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.contact-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
}

.contact-card h4 {
  margin-bottom: 1rem;
}

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

/* ============================================
   JOB LISTINGS
   ============================================ */
.job-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  margin-bottom: 1.5rem;
}

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

.job-card h4 {
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.job-meta i {
  color: var(--primary-color);
}

/* ============================================
   BADGES
   ============================================ */
.badge {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
}

.badge-primary {
  background-color: var(--primary-color);
  color: white;
}

.badge-success {
  background-color: var(--accent-color);
  color: white;
}

.badge-secondary {
  background-color: var(--secondary-color);
  color: white;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.list-check {
  list-style: none;
  padding: 0;
}

.list-check li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.list-check li i {
  color: var(--accent-color);
  margin-top: 0.25rem;
  font-size: 1.125rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
  :root {
    --section-padding: 2.25rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 6rem 0 4rem;
  }
  
  .hero-section h1 {
    font-size: 2.75rem;
  }
  
  .timeline::before {
    left: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin: 0;
    padding-left: 3rem;
    text-align: left;
  }
  
  .timeline-marker {
    left: 0;
    transform: translateX(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 1.75rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.375rem;
  }
  
  .hero-section {
    padding: 4rem 0 3rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section .lead {
    font-size: 1rem;
  }
  
  .section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
  }
  
  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .stat-item .stat-number {
    font-size: 2.5rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .job-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cta-section::before,
  .cta-section::after {
    width: 300px;
    height: 300px;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .section-title h2::after {
    width: 40px;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .stat-item {
    padding: 1.5rem 0.5rem;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    padding-left: 2rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  .footer,
  .cta-section,
  .btn {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  a {
    color: #333;
    text-decoration: underline;
  }
}

/* Colorful theme - Multi palette for a vibrant yet clean look */

/* Multi-color card icons */
.card:nth-child(1) .card-icon,
.feature-card:nth-child(1) .icon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa) !important;
}

.card:nth-child(2) .card-icon,
.feature-card:nth-child(2) .icon {
  background: linear-gradient(135deg, #a855f7, #d8b4fe) !important;
}

.card:nth-child(3) .card-icon,
.feature-card:nth-child(3) .icon {
  background: linear-gradient(135deg, #22c55e, #86efac) !important;
}

.card:nth-child(4) .card-icon,
.feature-card:nth-child(4) .icon {
  background: linear-gradient(135deg, #f97316, #fb923c) !important;
}

.card:nth-child(5) .card-icon,
.feature-card:nth-child(5) .icon {
  background: linear-gradient(135deg, #06b6d4, #22d3ee) !important;
}

.card:nth-child(6) .card-icon,
.feature-card:nth-child(6) .icon {
  background: linear-gradient(135deg, #e879f9, #f0abfc) !important;
}

.card:nth-child(7) .card-icon,
.feature-card:nth-child(7) .icon {
  background: linear-gradient(135deg, #f59e0b, #fde047) !important;
}

.card:nth-child(8) .card-icon,
.feature-card:nth-child(8) .icon {
  background: linear-gradient(135deg, #8b5cf6, #a5b4fc) !important;
}

.card:nth-child(9) .card-icon,
.feature-card:nth-child(9) .icon {
  background: linear-gradient(135deg, #10b981, #34d399) !important;
}

/* Colorful buttons */
.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-color: #3b82f6;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-color: #2563eb;
}

.btn-secondary {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  border-color: #a855f7;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #7c3aed, #db2777);
  border-color: #7c3aed;
}
