
/* ===== CRITICAL RESPONSIVE FIXES ===== */
/* This MUST be added FIRST before all other styles */

/* 1. Force responsive behavior */
html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* 2. Fix all containers to be responsive */
.container {
  width: 100% !important;
  max-width: 1200px !important;
  padding: 0 15px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

/* 3. Make all sections responsive */
section, .jobs-horizontal, .contact-enhanced, .hero {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

/* 4. Fix horizontal scrolling sections */
.jobs-horizontal-container {
  width: 100% !important;
  overflow-x: auto !important;
}

.jobs-horizontal-track {
  min-width: auto !important;
}

/* 5. Make job cards responsive on mobile */
@media (max-width: 768px) {
  .job-horizontal-card {
    flex: 0 0 95vw !important;
    min-width: 95vw !important;
    margin: 0 10px !important;
  }
  
  .service-wizard {
    margin: 0 10px !important;
    padding: 20px !important;
  }
  
  .category-card, .service-card {
    width: 100% !important;
  }
}

/* 6. Fix header/nav on mobile */
@media (max-width: 992px) {
  .header-container {
    padding: 0 15px !important;
  }
  
  .nav-links {
    width: 100% !important;
  }
}

/* 7. Prevent horizontal overflow */
* {
  max-width: 100%;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* 8. Mobile-specific fixes */
@media (max-width: 480px) {
  .hero h2 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }
  
  .hero p {
    font-size: 1rem !important;
  }
  
  .hero-content {
    padding: 20px !important;
    margin: 0 10px !important;
  }
}

 /* ===== SMART PATH - ATTRACTIVE CSS ===== */


:root {
  --primary: #4361ee;
  --primary-dark: #3a56d4;
  --secondary: #06d6a0;
  --accent: #ff9e00;
  
  --light: #ffffff;
  --dark: #1e293b;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --radius: 12px;
}

.dark-mode {
  --light: #0f172a;
  --dark: #f8fafc;
  --gray: #94a3b8;
  --gray-light: #1e293b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  transition: var(--transition);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
header {
  background: var(--light);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.logo-text h1 {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
}

.logo-text p {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
}












/* ===== DARK MODE TOGGLE ===== */
.theme-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  margin-right: 30px;
}

.theme-toggle {
  background: var(--gray-light);
  border: none;
  width: 60px;
  height: 30px;
  border-radius: 50px;
  padding: 3px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
}

.light-mode-icon {
  color: #f59e0b;
}

.dark-mode-icon {
  color: #94a3b8;
}

.toggle-circle {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: var(--transition);
  z-index: 3;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.dark-mode .theme-toggle {
  background: #334155;
}

.dark-mode .toggle-circle {
  left: 33px;
  background: #1e293b;
}

.dark-mode .light-mode-icon {
  color: #94a3b8;
}

.dark-mode .dark-mode-icon {
  color: #e2e8f0;
}

.theme-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
}















/* ===== NAVIGATION ===== */
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.dark-mode .nav-links a {
  color: #ffffff; /* Changed: White text in dark mode */
}

.nav-links a:hover {
  color: var(--primary);
}

.dark-mode .nav-links a:hover {
  color: #60a5fa; /* Changed: Lighter blue for better visibility in dark mode */
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.dark-mode .nav-links a::after {
  background: #60a5fa; /* Changed: Lighter blue for better visibility in dark mode */
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  padding: 10px;
}

.dark-mode .mobile-menu-btn {
  color: #ffffff; /* Changed: White icon in dark mode */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--light);
    flex-direction: column;
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .dark-mode .nav-links {
    background: #1e293b; /* Changed: Darker background for dark mode */
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--dark); /* Added: Ensure text color in mobile */
  }
  
  .dark-mode .nav-links a {
    border-bottom: 1px solid #334155;
    color: #ffffff; /* Changed: White text in dark mode mobile */
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .theme-label {
    display: none;
  }
}

@media (max-width: 768px) {
  .theme-toggle-wrapper {
    margin-right: 20px;
  }
  
  .theme-toggle {
    width: 50px;
    height: 26px;
  }
  
  .toggle-circle {
    width: 20px;
    height: 20px;
  }
  
  .dark-mode .toggle-circle {
    left: 27px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px 0;
  }
  
  .logo-img {
    width: 40px;
    height: 40px;
  }
  
  .logo-text h1 {
    font-size: 1.5rem;
  }
}





















/* ===== HERO SECTION - CLEAN & BEAUTIFUL ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
}

/* Background Slideshow Images */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: slideshow 48s infinite;
}

.slide:nth-child(1) {
  animation-delay: 0s;
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  filter: brightness(0.9);
}
.slide:nth-child(2) {
  animation-delay: 6s;
  background-image: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  filter: brightness(0.9);
}
.slide:nth-child(3) {
  animation-delay: 12s;
  background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  filter: brightness(0.9);
}
.slide:nth-child(4) {
  animation-delay: 18s;
  background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  filter: brightness(0.9);
}
.slide:nth-child(5) {
  animation-delay: 24s;
  background-image: url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  filter: brightness(0.9);
}
.slide:nth-child(6) {
  animation-delay: 30s;
  background-image: url('https://images.unsplash.com/photo-1580894732444-8ecded7900cd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  filter: brightness(0.9);
}
.slide:nth-child(7) {
  animation-delay: 36s;
  background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  filter: brightness(0.9);
}
.slide:nth-child(8) {
  animation-delay: 42s;
  background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  filter: brightness(0.9);
}

@keyframes slideshow {
  0% { opacity: 0; transform: scale(1.05); }
  8% { opacity: 1; transform: scale(1); }
  17% { opacity: 1; transform: scale(1); }
  25% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.05); }
}

/* Dark overlay for text visibility - Light Mode */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%);
  z-index: -1;
}

/* Dark Mode overlay - slightly darker */
.dark-mode .hero-overlay {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%);
}

/* Hero Content - Perfectly Visible in Both Modes */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Light Mode Content */
.hero h2 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: white;
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(255, 255, 255, 0.1);
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  line-height: 1.7;
  text-shadow: 
    1px 1px 4px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 255, 255, 0.1);
  font-weight: 400;
}

/* Dark Mode Text - Even Brighter */
.dark-mode .hero h2 {
  color: #ffffff;
  text-shadow: 
    2px 2px 10px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 255, 255, 0.15);
}

.dark-mode .hero p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 
    1px 1px 6px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .hero-content {
    padding: 40px 30px;
    margin: 0 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0;
    min-height: 90vh;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-content {
    padding: 35px 25px;
    margin: 0 25px;
    backdrop-filter: blur(15px);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-content {
    padding: 30px 20px;
    margin: 0 20px;
  }
  
  @keyframes slideshow {
    0% { opacity: 0; transform: scale(1.08); }
    8% { opacity: 1; transform: scale(1.03); }
    17% { opacity: 1; transform: scale(1.03); }
    25% { opacity: 0; transform: scale(1.08); }
    100% { opacity: 0; transform: scale(1.08); }
  }
}






































































/* ===== SERVICES SECTION STYLES ===== */

.services-container {
  padding: 80px 0;
  min-height: 100vh;
}

/* Light Theme */
body:not(.dark-mode) .services-container {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Dark Theme */
body.dark-mode .services-container {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Service Page */
.service-page {
  display: none;
  animation: fadeIn 0.5s ease;
}

.service-page.active {
  display: block;
}

/* Overview Page */
.service-page-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Light Theme */
body:not(.dark-mode) .service-page-header h1 {
  color: #1e293b;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Dark Theme */
body.dark-mode .service-page-header h1 {
  color: #f8fafc;
  background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Light Theme */
body:not(.dark-mode) .page-subtitle {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .page-subtitle {
  color: #94a3b8;
}

.service-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 30px;
}

/* Light Theme */
body:not(.dark-mode) .service-intro {
  color: #475569;
  background: rgba(255, 255, 255, 0.7);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
}

/* Dark Theme */
body.dark-mode .service-intro {
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.7);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #334155;
}

/* Service Categories */
.service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 60px;
}

.service-category-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid;
}

/* Light Theme */
body:not(.dark-mode) .service-category-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Dark Theme */
body.dark-mode .service-category-card {
  background: #1e293b;
  border-color: #334155;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-category-card:hover {
  transform: translateY(-10px);
}

/* Light Theme */
body:not(.dark-mode) .service-category-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

/* Dark Theme */
body.dark-mode .service-category-card:hover {
  border-color: #60a5fa;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
}

.category-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

/* Light Theme */
body:not(.dark-mode) .category-icon {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
}

/* Dark Theme */
body.dark-mode .category-icon {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
}

.service-category-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* Light Theme */
body:not(.dark-mode) .service-category-card h3 {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .service-category-card h3 {
  color: #f8fafc;
}

.service-category-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

/* Light Theme */
body:not(.dark-mode) .service-category-card p {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .service-category-card p {
  color: #94a3b8;
}

.service-count {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Light Theme */
body:not(.dark-mode) .service-count {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Dark Theme */
body.dark-mode .service-count {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Popular Services */
.popular-services {
  margin-top: 60px;
}

.popular-services h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

/* Light Theme */
body:not(.dark-mode) .popular-services h2 {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .popular-services h2 {
  color: #f8fafc;
}

.popular-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.popular-service-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 30px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  border: 2px solid;
}

/* Light Theme */
body:not(.dark-mode) .popular-service-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* Dark Theme */
body.dark-mode .popular-service-card {
  background: #1e293b;
  border-color: #334155;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.popular-service-card:hover {
  transform: translateY(-5px);
}

/* Light Theme */
body:not(.dark-mode) .popular-service-card:hover {
  border-color: #10b981;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
}

/* Dark Theme */
body.dark-mode .popular-service-card:hover {
  border-color: #10b981;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
}

.popular-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

/* Light Theme */
body:not(.dark-mode) .popular-service-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

/* Dark Theme */
body.dark-mode .popular-service-icon {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.popular-service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Light Theme */
body:not(.dark-mode) .popular-service-card h4 {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .popular-service-card h4 {
  color: #f8fafc;
}

.popular-service-card p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Light Theme */
body:not(.dark-mode) .popular-service-card p {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .popular-service-card p {
  color: #94a3b8;
}

.service-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Light Theme */
body:not(.dark-mode) .service-tag {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Dark Theme */
body.dark-mode .service-tag {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* ===== SERVICE DETAIL PAGES ===== */

.service-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Light Theme */
body:not(.dark-mode) .service-back-btn {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
}

/* Dark Theme */
body.dark-mode .service-back-btn {
  background: #334155;
  color: #cbd5e1;
  border: 1px solid #475569;
}

.service-back-btn:hover {
  transform: translateX(-5px);
}

/* Light Theme */
body:not(.dark-mode) .service-back-btn:hover {
  background: #e2e8f0;
}

/* Dark Theme */
body.dark-mode .service-back-btn:hover {
  background: #475569;
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 3px solid;
}

/* Light Theme */
body:not(.dark-mode) .service-detail-header {
  border-bottom-color: #e2e8f0;
}

/* Dark Theme */
body.dark-mode .service-detail-header {
  border-bottom-color: #334155;
}

.service-detail-icon {
  width: 100px;
  height: 100px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* Light Theme */
body:not(.dark-mode) .service-detail-icon {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Dark Theme */
body.dark-mode .service-detail-icon {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.service-detail-info {
  flex: 1;
}

.service-detail-info h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Light Theme */
body:not(.dark-mode) .service-detail-info h1 {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .service-detail-info h1 {
  color: #f8fafc;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.service-category, .service-time, .service-price {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Light Theme */
body:not(.dark-mode) .service-category {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

body:not(.dark-mode) .service-time {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

body:not(.dark-mode) .service-price {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Dark Theme */
body.dark-mode .service-category {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

body.dark-mode .service-time {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

body.dark-mode .service-price {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Service Content Layout */
.service-content {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.service-description {
  flex: 2;
}

.service-sidebar {
  flex: 1;
  min-width: 300px;
}

.service-description h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
}

/* Light Theme */
body:not(.dark-mode) .service-description h2 {
  color: #1e293b;
  border-bottom: 3px solid #3b82f6;
}

/* Dark Theme */
body.dark-mode .service-description h2 {
  color: #f8fafc;
  border-bottom: 3px solid #3b82f6;
}

.service-description > p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Light Theme */
body:not(.dark-mode) .service-description > p {
  color: #475569;
}

/* Dark Theme */
body.dark-mode .service-description > p {
  color: #cbd5e1;
}

/* Highlights Section */
.service-highlights {
  margin: 40px 0;
  padding: 30px;
  border-radius: 15px;
}

/* Light Theme */
body:not(.dark-mode) .service-highlights {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

/* Dark Theme */
body.dark-mode .service-highlights {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-highlights h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 1.4rem;
}

/* Light Theme */
body:not(.dark-mode) .service-highlights h3 {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .service-highlights h3 {
  color: #f8fafc;
}

.service-highlights ul {
  list-style: none;
  padding-left: 0;
}

.service-highlights li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

/* Light Theme */
body:not(.dark-mode) .service-highlights li {
  color: #475569;
}

/* Dark Theme */
body.dark-mode .service-highlights li {
  color: #cbd5e1;
}

.service-highlights li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-size: 0.9rem;
}

/* Process Steps */
.process-steps {
  margin: 30px 0;
}

.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 15px;
}

/* Light Theme */
body:not(.dark-mode) .process-step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Dark Theme */
body.dark-mode .process-step {
  background: #1e293b;
  border: 1px solid #334155;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Light Theme */
body:not(.dark-mode) .step-number {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
}

/* Dark Theme */
body.dark-mode .step-number {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
}

.step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* Light Theme */
body:not(.dark-mode) .step-content h4 {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .step-content h4 {
  color: #f8fafc;
}

.step-content p {
  font-size: 0.95rem;
}

/* Light Theme */
body:not(.dark-mode) .step-content p {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .step-content p {
  color: #94a3b8;
}

/* Included Items */
.included-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 10px;
}

/* Light Theme */
body:not(.dark-mode) .included-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

/* Dark Theme */
body.dark-mode .included-item {
  background: #0f172a;
  border: 1px solid #334155;
}

.included-item i {
  color: #10b981;
}

.included-item span {
  font-weight: 500;
}

/* Light Theme */
body:not(.dark-mode) .included-item span {
  color: #475569;
}

/* Dark Theme */
body.dark-mode .included-item span {
  color: #cbd5e1;
}

/* Service Action Card */
.service-action-card {
  position: sticky;
  top: 100px;
  padding: 30px;
  border-radius: 20px;
}

/* Light Theme */
body:not(.dark-mode) .service-action-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Dark Theme */
body.dark-mode .service-action-card {
  background: #1e293b;
  border: 2px solid #334155;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-action-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Light Theme */
body:not(.dark-mode) .service-action-card h3 {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .service-action-card h3 {
  color: #f8fafc;
}

.service-action-card > p {
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Light Theme */
body:not(.dark-mode) .service-action-card > p {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .service-action-card > p {
  color: #94a3b8;
}

/* Price Section */
.price-section {
  margin: 25px 0;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

/* Light Theme */
body:not(.dark-mode) .price-section {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

/* Dark Theme */
body.dark-mode .price-section {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.price-range {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.price-from {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Light Theme */
body:not(.dark-mode) .price-from {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .price-from {
  color: #94a3b8;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
}

/* Light Theme */
body:not(.dark-mode) .price-amount {
  color: #059669;
}

/* Dark Theme */
body.dark-mode .price-amount {
  color: #34d399;
}

.price-note {
  font-size: 0.85rem;
}

/* Light Theme */
body:not(.dark-mode) .price-note {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .price-note {
  color: #94a3b8;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.btn-request-service, .btn-whatsapp-consult {
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: none;
}

.btn-request-service {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
}

.btn-request-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-whatsapp-consult {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
}

.btn-whatsapp-consult:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Contact Info */
.contact-info {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid;
}

/* Light Theme */
body:not(.dark-mode) .contact-info {
  border-top-color: #e2e8f0;
}

/* Dark Theme */
body.dark-mode .contact-info {
  border-top-color: #334155;
}

.contact-info h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Light Theme */
body:not(.dark-mode) .contact-info h4 {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .contact-info h4 {
  color: #f8fafc;
}

.contact-info p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Light Theme */
body:not(.dark-mode) .contact-info p {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .contact-info p {
  color: #94a3b8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Light Theme */
body:not(.dark-mode) .contact-method {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
}

body:not(.dark-mode) .contact-method:hover {
  background: #e2e8f0;
  color: #1e293b;
  transform: translateY(-2px);
}

/* Dark Theme */
body.dark-mode .contact-method {
  background: #0f172a;
  color: #cbd5e1;
  border: 1px solid #334155;
}

body.dark-mode .contact-method:hover {
  background: #1e293b;
  color: #f8fafc;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-content {
    flex-direction: column;
  }
  
  .service-sidebar {
    min-width: 100%;
  }
  
  .service-action-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .services-container {
    padding: 40px 0;
  }
  
  .service-page-header h1 {
    font-size: 2.2rem;
  }
  
  .service-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .service-category-card {
    max-width: 100%;
  }
  
  .popular-service-list {
    flex-direction: column;
    align-items: center;
  }
  
  .popular-service-card {
    max-width: 100%;
  }
  
  .service-detail-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .service-meta {
    justify-content: center;
  }
  
  .included-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-page-header h1 {
    font-size: 1.8rem;
  }
  
  .service-detail-info h1 {
    font-size: 1.8rem;
  }
  
  .service-meta {
    flex-direction: column;
    align-items: center;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto 15px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





































/* ===== JOBS SECTION - COMBINED THEME CSS ===== */
/* Works perfectly in both Light and Dark themes on all devices */

.jobs-stacked {
  padding: 60px 0;
  position: relative;
  min-height: 100vh;
}

/* Light Theme */
body:not(.dark-mode) .jobs-stacked {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Dark Theme */
body.dark-mode .jobs-stacked {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.jobs-stacked .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Light Theme */
body:not(.dark-mode) .section-header h2 {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Dark Theme */
body.dark-mode .section-header h2 {
  background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Light Theme */
body:not(.dark-mode) .section-header p {
  color: #657996;
}

/* Dark Theme */
body.dark-mode .section-header p {
  color: #94a3b8;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 10px;
}

/* Light Theme */
body:not(.dark-mode) .section-subtitle {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

/* Dark Theme */
body.dark-mode .section-subtitle {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.section-subtitle i {
  font-size: 1.1rem;
}

/* Stacked Container */
.jobs-stacked-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Job Card */
.job-stacked-card {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  border: 2px solid;
}

/* Light Theme */
body:not(.dark-mode) .job-stacked-card {
  background: #ffffff;
  border-color: #e2e8f0;
}

/* Dark Theme */
body.dark-mode .job-stacked-card {
  background: #1e293b;
  border-color: #334155;
}

.job-stacked-card.highlight {
  animation: highlightPulse 2s ease;
}

@keyframes highlightPulse {
  0%, 100% { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); }
  50% { box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3); }
}

.job-stacked-card:hover {
  transform: translateY(-2px);
}

/* Light Theme */
body:not(.dark-mode) .job-stacked-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Dark Theme */
body.dark-mode .job-stacked-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.job-card-main {
  padding: 40px;
}

/* Job Card Header */
.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid;
}

/* Light Theme */
body:not(.dark-mode) .job-card-header {
  border-bottom-color: #f1f5f9;
}

/* Dark Theme */
body.dark-mode .job-card-header {
  border-bottom-color: #334155;
}

.job-header-left {
  flex: 1;
}

.job-header-right {
  text-align: right;
  margin-left: 30px;
}

.job-card-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.job-card-badge.hot {
  background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
  color: white;
}

.job-card-badge.urgent {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  animation: pulse 2s infinite;
}

.job-card-badge.remote {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.job-card-badge.new {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

.job-card-badge.featured {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.job-card-badge.part-time {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
}

.job-card-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

/* Light Theme */
body:not(.dark-mode) .job-card-title {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .job-card-title {
  color: #f8fafc;
}

.job-card-company {
  font-size: 18px;
  margin: 0 0 10px 0;
  font-weight: 600;
}

/* Light Theme */
body:not(.dark-mode) .job-card-company {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .job-card-company {
  color: #94a3b8;
}

.job-salary {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 9px;
}

/* Light Theme */
body:not(.dark-mode) .job-salary {
  color: #059669;
}

/* Dark Theme */
body.dark-mode .job-salary {
  color: #34d399;
}

.job-type {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  border: 1px solid;
}

/* Light Theme */
body:not(.dark-mode) .job-type {
  background: #dbeafe;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

/* Dark Theme */
body.dark-mode .job-type {
  background: #1e3a8a;
  color: #93c5fd;
  border-color: #334155;
}

/* Job Meta Grid */
.job-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid;
}

/* Light Theme */
body:not(.dark-mode) .meta-item {
  background: #f8fafc;
  border-color: #e2e8f0;
}

/* Dark Theme */
body.dark-mode .meta-item {
  background: #0f172a;
  border-color: #334155;
}

.meta-item i {
  font-size: 24px;
  width: 30px;
  text-align: center;
}

/* Light Theme */
body:not(.dark-mode) .meta-item i {
  color: #3b82f6;
}

/* Dark Theme */
body.dark-mode .meta-item i {
  color: #60a5fa;
}

.meta-content {
  flex: 1;
}

.meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  font-weight: 600;
}

/* Light Theme */
body:not(.dark-mode) .meta-label {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .meta-label {
  color: #94a3b8;
}

.meta-value {
  font-size: 11px;
  font-weight: 700;
}

/* Light Theme */
body:not(.dark-mode) .meta-value {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .meta-value {
  color: #e2e8f0;
}

/* Deadline Timer Section */
.deadline-timer-section {
  border-radius: 16px;
  padding: 9px;
  margin: 20px 0;
  border: 2px solid;
}

/* Light Theme */
body:not(.dark-mode) .deadline-timer-section {
  background: linear-gradient(135deg, #738368 0%, #cbdb8f 100%);
  border-color: #e2e8f0;
}

/* Dark Theme */
body.dark-mode .deadline-timer-section {
  background: #0f172a;
  border-color: #334155;
}

.timer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.timer-header h3 {
  font-size: 20px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

/* Light Theme */
body:not(.dark-mode) .timer-header h3 {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .timer-header h3 {
  color: #f8fafc;
}

.timer-header h3 i {
  /* Light Theme */
  color: #3b82f6;
}

body.dark-mode .timer-header h3 i {
  color: #60a5fa;
}

.timer-status {
  padding: 4px 8px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid;
}

.timer-status.active {
  /* Light Theme */
  background: #d1fae5;
  color: #065f46;
  border-color: #a7f3d0;
}

body.dark-mode .timer-status.active {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
}

.timer-status.urgent {
  /* Light Theme */
  background: #fef3c7;
  color: #92400e;
  border-color: #fde68a;
}

body.dark-mode .timer-status.urgent {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.3);
}

.timer-status.passed {
  /* Light Theme */
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

body.dark-mode .timer-status.passed {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

.timer-display {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.timer-unit {
  text-align: center;
  padding: 5px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Light Theme */
body:not(.dark-mode) .timer-unit {
  background: #ffffff;
}

/* Dark Theme */
body.dark-mode .timer-unit {
  background: #1e293b;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.timer-unit:hover {
  transform: translateY(-5px);
}

/* Light Theme */
body:not(.dark-mode) .timer-unit:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Dark Theme */
body.dark-mode .timer-unit:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.timer-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
  font-family: 'SF Mono', 'Courier New', monospace;
}

/* Light Theme */
body:not(.dark-mode) .timer-number {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .timer-number {
  color: #f8fafc;
}

.timer-unit-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Light Theme */
body:not(.dark-mode) .timer-unit-label {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .timer-unit-label {
  color: #94a3b8;
}

/* Job Description Section */
.job-description-section {
  margin: 40px 0;
}

.job-description-section h3 {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid;
}

/* Light Theme */
body:not(.dark-mode) .job-description-section h3 {
  color: #1e293b;
  border-bottom-color: #3b82f6;
}

/* Dark Theme */
body.dark-mode .job-description-section h3 {
  color: #f8fafc;
  border-bottom-color: #3b82f6;
}

.job-description {
  line-height: 1.8;
  font-size: 16px;
}

/* Light Theme */
body:not(.dark-mode) .job-description {
  color: #475569;
}

/* Dark Theme */
body.dark-mode .job-description {
  color: #cbd5e1;
}

.job-description h4 {
  font-size: 18px;
  margin: 25px 0 15px 0;
  font-weight: 700;
}

/* Light Theme */
body:not(.dark-mode) .job-description h4 {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .job-description h4 {
  color: #f8fafc;
}

.job-description ul {
  list-style: none;
  padding-left: 0;
}

.job-description li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

/* Light Theme */
body:not(.dark-mode) .job-description li {
  color: #475569;
}

/* Dark Theme */
body.dark-mode .job-description li {
  color: #cbd5e1;
}

.job-description li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 18px;
}

/* Light Theme */
body:not(.dark-mode) .job-description li::before {
  color: #10b981;
}

/* Dark Theme */
body.dark-mode .job-description li::before {
  color: #10b981;
}

/* Skills Section */
.job-skills-section {
  margin: 40px 0;
}

.job-skills-section h3 {
  font-size: 20px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid;
}

/* Light Theme */
body:not(.dark-mode) .job-skills-section h3 {
  color: #1e293b;
  border-bottom-color: #8b5cf6;
}

/* Dark Theme */
body.dark-mode .job-skills-section h3 {
  color: #f8fafc;
  border-bottom-color: #8b5cf6;
}

.job-card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-tag {
  padding: 9px 17px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid;
  transition: all 0.3s ease;
}

/* Light Theme */
body:not(.dark-mode) .skill-tag {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  color: #0369a1;
  border-color: #bae6fd;
}

/* Dark Theme */
body.dark-mode .skill-tag {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #60a5fa;
  border-color: #334155;
}

.skill-tag:hover {
  transform: translateY(-3px);
}

/* Light Theme */
body:not(.dark-mode) .skill-tag:hover {
  background: linear-gradient(135deg, #dbeafe 0%, #c7d2fe 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

/* Dark Theme */
body.dark-mode .skill-tag:hover {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

/* Job Actions */
.job-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 2px solid;
}

/* Light Theme */
body:not(.dark-mode) .job-card-actions {
  border-top-color: #f1f5f9;
}

/* Dark Theme */
body.dark-mode .job-card-actions {
  border-top-color: #334155;
}

.btn {
  flex: 1;
  padding: 18px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 56px;
}

.btn-apply {
  color: white;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

/* Light Theme */
body:not(.dark-mode) .btn-apply {
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Dark Theme */
body.dark-mode .btn-apply {
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
}

.btn-apply:hover {
  transform: translateY(-3px);
}

/* Light Theme */
body:not(.dark-mode) .btn-apply:hover {
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

/* Dark Theme */
body.dark-mode .btn-apply:hover {
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.6);
}

.btn-disabled {
  background: #94a3b8 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
  opacity: 0.7;
}

.btn-share {
  border: 2px solid;
}

/* Light Theme */
body:not(.dark-mode) .btn-share {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #475569;
  border-color: #e2e8f0;
}

/* Dark Theme */
body.dark-mode .btn-share {
  background: #0f172a;
  color: #cbd5e1;
  border-color: #334155;
}

.btn-share:hover {
  transform: translateY(-3px);
}

/* Light Theme */
body:not(.dark-mode) .btn-share:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Dark Theme */
body.dark-mode .btn-share:hover {
  background: #1e293b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-copy {
  color: white;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Light Theme */
body:not(.dark-mode) .btn-copy {
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Dark Theme */
body.dark-mode .btn-copy {
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
}

.btn-copy:hover {
  transform: translateY(-3px);
}

/* Light Theme */
body:not(.dark-mode) .btn-copy:hover {
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

/* Dark Theme */
body.dark-mode .btn-copy:hover {
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.6);
}

/* Quick Navigation */
.jobs-quick-nav {
  margin-top: 50px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Light Theme */
body:not(.dark-mode) .jobs-quick-nav {
  background: white;
}

/* Dark Theme */
body.dark-mode .jobs-quick-nav {
  background: #1e293b;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.quick-nav-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.quick-nav-title i {
  font-size: 24px;
}

/* Light Theme */
body:not(.dark-mode) .quick-nav-title i {
  color: #f59e0b;
}

/* Dark Theme */
body.dark-mode .quick-nav-title i {
  color: #fbbf24;
}

.quick-nav-title span {
  font-size: 20px;
  font-weight: 700;
}

/* Light Theme */
body:not(.dark-mode) .quick-nav-title span {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .quick-nav-title span {
  color: #f8fafc;
}

.quick-nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.quick-nav-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Light Theme */
body:not(.dark-mode) .quick-nav-btn {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #475569;
}

/* Dark Theme */
body.dark-mode .quick-nav-btn {
  background: #0f172a;
  color: #cbd5e1;
  border: 1px solid #334155;
}

.quick-nav-btn:hover {
  transform: translateY(-3px);
}

/* Light Theme */
body:not(.dark-mode) .quick-nav-btn:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Dark Theme */
body.dark-mode .quick-nav-btn:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Deadline text styling */
.deadline-text {
  font-weight: 600;
}

/* Light Theme */
body:not(.dark-mode) .deadline-text {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .deadline-text {
  color: #e2e8f0;
}

/* ===== RESPONSIVE DESIGN FOR ALL DEVICES ===== */
@media (max-width: 1024px) {
  .job-card-header {
    flex-direction: column;
    gap: 20px;
  }
  
  .job-header-right {
    text-align: left;
    margin-left: 0;
    width: 100%;
  }
  
  .job-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timer-display {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .jobs-stacked {
    padding: 40px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .job-card-main {
    padding: 25px;
  }
  
  .job-card-title {
    font-size: 24px;
  }
  
  .job-meta-grid {
    grid-template-columns: 1fr;
  }
  
  .timer-display {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .job-card-actions {
    flex-direction: column;
  }
  
  .quick-nav-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .jobs-stacked {
    padding: 30px 0;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .job-card-main {
    padding: 20px;
  }
  
  .job-card-title {
    font-size: 20px;
  }
  
  .job-salary {
    font-size: 20px;
  }
  
  .timer-display {
    grid-template-columns: 1fr;
  }
  
  .timer-unit {
    padding: 15px;
  }
  
  .timer-number {
    font-size: 28px;
  }
  
  .quick-nav-buttons {
    gap: 10px;
  }
  
  .quick-nav-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ===== FORCE THEME CONSISTENCY ===== */
/* These ensure no theme mixing on any device */
body:not(.dark-mode) .job-stacked-card *:not(.job-card-badge) {
  color: #1e293b !important;
}

body.dark-mode .job-stacked-card *:not(.job-card-badge) {
  color: #e2e8f0 !important;
}

/* Ensure buttons keep their colors */
body:not(.dark-mode) .btn-apply,
body:not(.dark-mode) .btn-copy {
  color: white !important;
}

body.dark-mode .btn-apply,
body.dark-mode .btn-copy {
  color: white !important;
}

/* Fix for any remaining white/black issues */
body:not(.dark-mode) .job-stacked-card {
  --card-bg: #ffffff;
  --card-text: #1e293b;
  --card-border: #e2e8f0;
}

body.dark-mode .job-stacked-card {
  --card-bg: #1e293b;
  --card-text: #f8fafc;
  --card-border: #334155;
}

/* Print styles */
@media print {
  .job-stacked-card {
    background: white !important;
    color: black !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
  }
  
  .job-card-title {
    color: black !important;
  }
  
  .btn {
    display: none !important;
  }
}




























/* ===== SCHOLARSHIPS HORIZONTAL SECTION ===== */

.scholarships-horizontal {
  padding: 80px 0;
  overflow-x: hidden;
}

/* Light Theme */
body:not(.dark-mode) .scholarships-horizontal {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Dark Theme */
body.dark-mode .scholarships-horizontal {
  background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
}

/* Section Header */
.scholarships-header {
  text-align: center;
  margin-bottom: 50px;
}

.scholarships-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Light Theme */
body:not(.dark-mode) .scholarships-header h2 {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .scholarships-header h2 {
  color: #f8fafc;
}

.section-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Light Theme */
body:not(.dark-mode) .section-subtitle {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .section-subtitle {
  color: #cbd5e1;
}

/* Horizontal Stats Bar */
.scholarship-stats-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding: 25px;
  border-radius: 15px;
  flex-wrap: wrap;
  gap: 20px;
}

/* Light Theme */
body:not(.dark-mode) .scholarship-stats-horizontal {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* Dark Theme */
body.dark-mode .scholarship-stats-horizontal {
  background: rgba(30, 41, 59, 0.7);
  border: 2px solid #334155;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.stat-horizontal {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 180px;
}

/* Light Theme */
body:not(.dark-mode) .stat-horizontal {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

/* Dark Theme */
body.dark-mode .stat-horizontal {
  background: #1e293b;
  border: 1px solid #334155;
}

.stat-horizontal:hover {
  transform: translateY(-5px);
}

/* Light Theme */
body:not(.dark-mode) .stat-horizontal:hover {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Dark Theme */
body.dark-mode .stat-horizontal:hover {
  background: #0f172a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-horizontal i {
  font-size: 2rem;
  min-width: 40px;
}

/* Light Theme */
body:not(.dark-mode) .stat-horizontal i {
  color: #3b82f6;
}

/* Dark Theme */
body.dark-mode .stat-horizontal i {
  color: #60a5fa;
}

.stat-horizontal strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

/* Light Theme */
body:not(.dark-mode) .stat-horizontal strong {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .stat-horizontal strong {
  color: #f8fafc;
}

.stat-horizontal span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Light Theme */
body:not(.dark-mode) .stat-horizontal span {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .stat-horizontal span {
  color: #94a3b8;
}

/* Horizontal Track for Scholarships */
.scholarships-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 20px 10px;
  scrollbar-width: thin;
  margin-bottom: 50px;
  scroll-behavior: smooth;
}

/* Custom scrollbar for light theme */
body:not(.dark-mode) .scholarships-track::-webkit-scrollbar {
  height: 8px;
}

body:not(.dark-mode) .scholarships-track::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

body:not(.dark-mode) .scholarships-track::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

body:not(.dark-mode) .scholarships-track::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Custom scrollbar for dark theme */
body.dark-mode .scholarships-track::-webkit-scrollbar {
  height: 8px;
}

body.dark-mode .scholarships-track::-webkit-scrollbar-track {
  background: #334155;
  border-radius: 10px;
}

body.dark-mode .scholarships-track::-webkit-scrollbar-thumb {
  background: #64748b;
  border-radius: 10px;
}

body.dark-mode .scholarships-track::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Horizontal Scholarship Cards */
.scholarship-horizontal-card {
  flex: 0 0 400px;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 320px;
  position: relative;
}

/* Light Theme */
body:not(.dark-mode) .scholarship-horizontal-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Dark Theme */
body.dark-mode .scholarship-horizontal-card {
  background: #1e293b;
  border: 2px solid #334155;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.scholarship-horizontal-card:hover {
  transform: translateY(-10px);
}

/* Light Theme */
body:not(.dark-mode) .scholarship-horizontal-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

/* Dark Theme */
body.dark-mode .scholarship-horizontal-card:hover {
  border-color: #60a5fa;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
}

/* Scholarship Header */
.scholarship-header {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Badge Styles */
.badge-urgent, .badge-new, .badge-popular, .badge-regular,
.badge-fully, .badge-partial {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
}

.badge-urgent {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  animation: pulse 2s infinite;
}

.badge-new {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.badge-popular {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.badge-regular {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  color: white;
}

.badge-fully {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.badge-partial {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Scholarship Content */
.scholarship-horizontal-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Light Theme */
body:not(.dark-mode) .scholarship-horizontal-card h3 {
  color: #1e293b;
}

/* Dark Theme */
body.dark-mode .scholarship-horizontal-card h3 {
  color: #f8fafc;
}

.scholarship-horizontal-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Light Theme */
body:not(.dark-mode) .scholarship-horizontal-card p {
  color: #64748b;
}

/* Dark Theme */
body.dark-mode .scholarship-horizontal-card p {
  color: #94a3b8;
}

/* Scholarship Meta */
.scholarship-meta {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.meta-line i {
  width: 20px;
  text-align: center;
}

/* Light Theme */
body:not(.dark-mode) .meta-line i {
  color: #3b82f6;
}

body:not(.dark-mode) .meta-line span {
  color: #475569;
}

/* Dark Theme */
body.dark-mode .meta-line i {
  color: #60a5fa;
}

body.dark-mode .meta-line span {
  color: #cbd5e1;
}

/* Scholarship Footer */
.scholarship-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-apply-horizontal {
  padding: 14px 25px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-apply-horizontal:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.scholarship-note {
  font-size: 0.85rem;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
}

/* Light Theme */
body:not(.dark-mode) .scholarship-note {
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Dark Theme */
body.dark-mode .scholarship-note {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Need Help Section */
.scholarship-help {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  border-radius: 20px;
  margin-top: 50px;
}

/* Light Theme */
body:not(.dark-mode) .scholarship-help {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

/* Dark Theme */
body.dark-mode .scholarship-help {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.help-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.help-content {
  flex: 1;
}

.help-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.help-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.btn-help {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: white;
  color: #3b82f6;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-help:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .scholarship-stats-horizontal {
    justify-content: center;
  }
  
  .stat-horizontal {
    min-width: 150px;
  }
  
  .scholarship-horizontal-card {
    flex: 0 0 350px;
  }
}

@media (max-width: 768px) {
  .scholarships-horizontal {
    padding: 50px 0;
  }
  
  .scholarships-header h2 {
    font-size: 2rem;
  }
  
  .scholarship-stats-horizontal {
    flex-direction: column;
    align-items: stretch;
  }
  
  .stat-horizontal {
    min-width: 100%;
  }
  
  .scholarship-horizontal-card {
    flex: 0 0 320px;
    padding: 25px;
  }
  
  .scholarship-help {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  
  .help-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .scholarships-header h2 {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .scholarship-horizontal-card {
    flex: 0 0 280px;
    padding: 20px;
  }
  
  .scholarship-horizontal-card h3 {
    font-size: 1.2rem;
  }
}



























/* ===== TESTIMONIALS WITH SUBMISSION ===== */

.testimonials-with-submission {
  padding: 60px 0;
  background: #f8fafc;
}

.dark-mode .testimonials-with-submission {
  background: #1e293b;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 10px;
}

.dark-mode .section-header h2 {
  color: #f8fafc;
}

.section-header p {
  color: #64748b;
  font-size: 1.1rem;
}

.dark-mode .section-header p {
  color: #94a3b8;
}

/* Add Testimonial Form */
.add-testimonial-form {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid #e2e8f0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.dark-mode .add-testimonial-form {
  background: #0f172a;
  border-color: #334155;
}

.add-testimonial-form h3 {
  color: #1e293b;
  margin-bottom: 25px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dark-mode .add-testimonial-form h3 {
  color: #f8fafc;
}

.add-testimonial-form h3::before {
  content: '✍️';
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
  color: #1e293b;
}

.dark-mode .form-group input,
.dark-mode .form-group textarea {
  background: #1e293b;
  border-color: #475569;
  color: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.char-count {
  text-align: right;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 5px;
}

.dark-mode .char-count {
  color: #94a3b8;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-item {
  background: white;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dark-mode .testimonial-item {
  background: #0f172a;
  border-color: #334155;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dark-mode .testimonial-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-info strong {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
}

.dark-mode .user-info strong {
  color: #f8fafc;
}

.user-info span {
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 2px;
}

.dark-mode .user-info span {
  color: #94a3b8;
}

.testimonial-text p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.dark-mode .testimonial-text p {
  color: #cbd5e1;
}

.testimonial-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}

.dark-mode .testimonial-footer {
  border-top-color: #334155;
}

.like-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.like-btn:hover {
  background: #f1f5f9;
}

.dark-mode .like-btn:hover {
  background: #334155;
}

.like-btn i {
  font-size: 1.1rem;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.like-btn i.fas {
  color: #ef4444;
}

.like-btn:hover i {
  color: #ef4444;
}

.like-count {
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  min-width: 20px;
  text-align: center;
}

.dark-mode .like-count {
  color: #94a3b8;
}

.like-btn:hover .like-count {
  color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-with-submission {
    padding: 40px 20px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .add-testimonial-form {
    padding: 20px;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .user-avatar {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}
































/* ===== ENHANCED CONTACT SECTION STYLES ===== */
.contact-enhanced {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.dark-mode .contact-enhanced {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.contact-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #2563eb, #10b981, #f59e0b);
  z-index: 1;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.contact-header h2 {
  font-size: 2.8rem;
  color: #2563eb;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.dark-mode .contact-header h2 {
  color: #60a5fa;
}

.contact-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.dark-mode .contact-header p {
  color: #cbd5e1;
}

.contact-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-stats .stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 200px;
  border: 1px solid #e2e8f0;
}

.dark-mode .contact-stats .stat {
  background: #1e293b;
  border-color: #334155;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-stats .stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dark-mode .contact-stats .stat:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-stats .stat i {
  font-size: 1.5rem;
  color: #2563eb;
  min-width: 24px;
}

.dark-mode .contact-stats .stat i {
  color: #60a5fa;
}

.contact-stats .stat span {
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.4;
}

.dark-mode .contact-stats .stat span {
  color: #f8fafc;
}

.contact-stats .stat strong {
  color: #2563eb;
  font-weight: 700;
  display: block;
}

.dark-mode .contact-stats .stat strong {
  color: #60a5fa;
}

/* Service Wizard */
.service-wizard {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #e2e8f0;
}

.dark-mode .service-wizard {
  background: #1e293b;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: #334155;
}

.service-wizard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #10b981);
}

.wizard-header {
  text-align: center;
  margin-bottom: 40px;
}

.wizard-header h3 {
  font-size: 1.8rem;
  color: #2563eb;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.dark-mode .wizard-header h3 {
  color: #60a5fa;
}

.wizard-header p {
  color: #64748b;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.dark-mode .wizard-header p {
  color: #cbd5e1;
}

/* Progress Bar */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 40px 0 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.wizard-progress::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: #e2e8f0;
  z-index: 1;
}

.dark-mode .wizard-progress::before {
  background: #475569;
}

.wizard-progress .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  flex: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dark-mode .step-number {
  background: #334155;
  color: #cbd5e1;
  border-color: #1e293b;
}

.step.active .step-number {
  background: #2563eb;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

.dark-mode .step.active .step-number {
  background: #3b82f6;
}

.step-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dark-mode .step-label {
  color: #94a3b8;
}

.step.active .step-label {
  color: #2563eb;
  font-weight: 700;
}

.dark-mode .step.active .step-label {
  color: #60a5fa;
}

/* Categories Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.category-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dark-mode .category-card {
  background: #1e293b;
  border-color: #334155;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

.dark-mode .category-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
}

.category-card.selected {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-color: #2563eb;
  color: white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: translateY(-8px); }
  50% { transform: translateY(-10px); }
}

.category-card.selected .category-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.category-card.selected h5,
.category-card.selected p,
.category-card.selected .service-count {
  color: white;
}

.category-icon {
  width: 70px;
  height: 70px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
  border: 3px solid rgba(37, 99, 235, 0.1);
}

.dark-mode .category-icon {
  background: #3b82f6;
}

.category-card h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #1e293b;
  font-weight: 700;
}

.dark-mode .category-card h5 {
  color: #f8fafc;
}

.category-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.4;
}

.dark-mode .category-card p {
  color: #94a3b8;
}

.service-count {
  font-size: 0.85rem;
  color: #2563eb;
  font-weight: 600;
  padding: 5px 15px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  display: inline-block;
  margin-top: 5px;
}

.dark-mode .service-count {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.2);
}

/* Wizard Steps */
.wizard-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.wizard-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
}

.dark-mode .step-header {
  border-bottom-color: #334155;
}

.btn-back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #334155;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dark-mode .btn-back {
  background: #334155;
  border-color: #475569;
  color: #f8fafc;
}

.btn-back:hover {
  background: #cbd5e1;
  color: #1e293b;
  transform: translateX(-5px);
}

.dark-mode .btn-back:hover {
  background: #475569;
  color: #f8fafc;
}

.step-header h4 {
  font-size: 1.5rem;
  color: #1e293b;
  margin: 0;
  flex-grow: 1;
  line-height: 1.4;
}

.dark-mode .step-header h4 {
  color: #f8fafc;
}

#selectedCategoryName {
  color: #2563eb;
  font-weight: 700;
}

.dark-mode #selectedCategoryName {
  color: #60a5fa;
}

/* Services Grid */
#servicesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  justify-content: space-between;
}

.dark-mode .service-card {
  background: #1e293b;
  border-color: #334155;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
}

.dark-mode .service-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1);
}

.service-card.selected {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-color: #2563eb;
  color: white;
}

.service-card.selected h6,
.service-card.selected p,
.service-card.selected .budget-hint {
  color: white;
}

.service-card h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.dark-mode .service-card h6 {
  color: #f8fafc;
}

.service-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 10px;
  flex-grow: 1;
}

.dark-mode .service-card p {
  color: #94a3b8;
}

.budget-hint {
  font-size: 0.85rem;
  color: #2563eb;
  font-weight: 600;
  padding: 5px 10px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 6px;
  display: inline-block;
  margin-top: 10px;
  align-self: flex-start;
}

.dark-mode .budget-hint {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.2);
}

/* Step Actions */
.step-actions {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e2e8f0;
}

.step-actions .btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  justify-content: center;
}

.dark-mode .step-actions {
  border-top-color: #334155;
}

/* Selected Service Info */
.selected-service-info {
  background: rgba(37, 99, 235, 0.05);
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  animation: slideIn 0.5s ease;
}

.dark-mode .selected-service-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Form Styles */
#serviceRequestForm {
  max-width: 800px;
  margin: 0 auto;
}

.form-section {
  margin-bottom: 40px;
  animation: fadeIn 0.5s ease;
}

.section-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e2e8f0;
}

.dark-mode .section-header {
  border-bottom-color: #334155;
}

.section-header h5 {
  font-size: 1.3rem;
  color: #2563eb;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.dark-mode .section-header h5 {
  color: #60a5fa;
}

.section-subtitle {
  color: #64748b;
  font-size: 0.95rem;
  margin-top: 5px;
  line-height: 1.4;
}

.dark-mode .section-subtitle {
  color: #94a3b8;
}

/* Form Layout */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}

.dark-mode .form-group label {
  color: #f8fafc;
}

.form-group label i {
  color: #2563eb;
  min-width: 20px;
}

.dark-mode .form-group label i {
  color: #60a5fa;
}

.sub-text {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 400;
  margin-left: 5px;
}

.dark-mode .sub-text {
  color: #94a3b8;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #cbd5e1;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
  color: #1e293b;
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
  background: #0f172a;
  border-color: #475569;
  color: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.dark-mode .form-group input:focus,
.dark-mode .form-group select:focus,
.dark-mode .form-group textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
  opacity: 0.7;
}

.dark-mode .form-group input::placeholder,
.dark-mode .form-group textarea::placeholder {
  color: #64748b;
}

/* Error States */
.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 8px;
  display: none;
  line-height: 1.4;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.dark-mode .form-group.error input,
.dark-mode .form-group.error select,
.dark-mode .form-group.error textarea {
  background: rgba(239, 68, 68, 0.1);
}

.form-group.error .error-message {
  display: block;
}

/* CV Upload Section */
.cv-upload-method {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.upload-method-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: none;
}

.dark-mode .upload-method-card {
  background: #1e293b;
  border-color: #334155;
}

.upload-method-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.upload-method-card:hover {
  border-color: #2563eb;
}

.dark-mode .upload-method-card:hover {
  border-color: #3b82f6;
}

.method-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(37, 99, 235, 0.05);
  border-bottom: 1px solid #e2e8f0;
}

.dark-mode .method-header {
  background: rgba(59, 130, 246, 0.1);
  border-bottom-color: #334155;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: #2563eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.dark-mode .method-icon {
  background: #3b82f6;
}

.method-info h6 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #1e293b;
  font-weight: 700;
}

.dark-mode .method-info h6 {
  color: #f8fafc;
}

.method-info p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.dark-mode .method-info p {
  color: #94a3b8;
}

.method-content {
  padding: 20px;
}

.whatsapp-instructions {
  background: rgba(37, 211, 102, 0.05);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(37, 211, 102, 0.1);
}

.dark-mode .whatsapp-instructions {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-instructions ol {
  padding-left: 20px;
  margin-bottom: 0;
}

.whatsapp-instructions li {
  margin-bottom: 10px;
  color: #1e293b;
  line-height: 1.5;
  padding-left: 5px;
}

.dark-mode .whatsapp-instructions li {
  color: #f8fafc;
}

.whatsapp-instructions li:last-child {
  margin-bottom: 0;
}

.whatsapp-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 15px;
}

.whatsapp-send-btn:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.method-note {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.dark-mode .method-note {
  color: #94a3b8;
}

.method-note i {
  color: #2563eb;
  flex-shrink: 0;
}

.dark-mode .method-note i {
  color: #60a5fa;
}

/* File Upload */
.file-drop-area {
  border: 3px dashed #cbd5e1;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.dark-mode .file-drop-area {
  border-color: #475569;
}

.file-drop-area:hover,
.file-drop-area.dragover {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
}

.dark-mode .file-drop-area:hover,
.dark-mode .file-drop-area.dragover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
}

.upload-icon {
  font-size: 3rem;
  color: #94a3b8;
  margin-bottom: 15px;
  opacity: 0.7;
}

.dark-mode .upload-icon {
  color: #64748b;
}

.file-msg {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 10px;
  font-weight: 600;
}

.dark-mode .file-msg {
  color: #f8fafc;
}

.file-types {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}

.dark-mode .file-types {
  color: #94a3b8;
}

.file-info {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 15px;
  animation: fadeIn 0.3s ease;
  margin-top: 15px;
  border: 1px solid #e2e8f0;
}

.dark-mode .file-info {
  background: #0f172a;
  border-color: #334155;
}

.file-details {
  display: flex;
  align-items: center;
  gap: 15px;
}

.file-details i {
  font-size: 1.5rem;
  color: #2563eb;
  flex-shrink: 0;
}

.dark-mode .file-details i {
  color: #60a5fa;
}

.file-details div {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#fileName {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}

.dark-mode #fileName {
  color: #f8fafc;
}

.file-size {
  font-size: 0.85rem;
  color: #64748b;
}

.dark-mode .file-size {
  color: #94a3b8;
}

.remove-file {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-file:hover {
  background: rgba(239, 68, 68, 0.1);
}

/* Method Switch */
.method-switch {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding: 15px;
  background: #f1f5f9;
  border-radius: 12px;
  flex-wrap: wrap;
  border: 1px solid #e2e8f0;
}

.dark-mode .method-switch {
  background: #0f172a;
  border-color: #334155;
}

.switch-label {
  font-weight: 600;
  color: #1e293b;
  margin-right: 10px;
}

.dark-mode .switch-label {
  color: #f8fafc;
}

.switch-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  color: #1e293b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  min-width: 140px;
}

.dark-mode .switch-btn {
  background: #1e293b;
  border-color: #475569;
  color: #f8fafc;
}

.switch-btn.active {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.dark-mode .switch-btn.active {
  background: #3b82f6;
  border-color: #3b82f6;
}

.switch-btn:hover:not(.active) {
  border-color: #2563eb;
  color: #2563eb;
}

.dark-mode .switch-btn:hover:not(.active) {
  border-color: #3b82f6;
  color: #60a5fa;
}

/* CV Alternative */
.cv-alternative {
  background: #f1f5f9;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  border: 1px solid #e2e8f0;
}

.dark-mode .cv-alternative {
  background: #0f172a;
  border-color: #334155;
}

.cv-alternative p {
  font-size: 0.95rem;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.dark-mode .cv-alternative p {
  color: #f8fafc;
}

.cv-alternative strong {
  color: #2563eb;
}

.dark-mode .cv-alternative strong {
  color: #60a5fa;
}

/* Char Counter */
.char-counter {
  text-align: right;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 8px;
}

.dark-mode .char-counter {
  color: #94a3b8;
}

/* Terms Agreement */
.terms-agreement {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f1f5f9;
  border-radius: 12px;
  line-height: 1.6;
  border: 1px solid #e2e8f0;
}

.dark-mode .terms-agreement {
  background: #0f172a;
  border-color: #334155;
}

.terms-agreement input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.terms-agreement label {
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.6;
  cursor: pointer;
  flex-grow: 1;
}

.dark-mode .terms-agreement label {
  color: #f8fafc;
}

.terms-link,
.privacy-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.dark-mode .terms-link,
.dark-mode .privacy-link {
  color: #60a5fa;
}

.terms-link:hover,
.privacy-link:hover {
  text-decoration: underline;
}

/* Form Actions */
.form-actions {
  text-align: center;
  margin-top: 40px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px 50px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 250px;
  margin: 0 auto;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-note {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.4;
}

.dark-mode .form-note {
  color: #94a3b8;
}

.form-note i {
  color: #2563eb;
  flex-shrink: 0;
}

.dark-mode .form-note i {
  color: #60a5fa;
}

/* Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid #e2e8f0;
}

.dark-mode .modal-content {
  background: #1e293b;
  border-color: #334155;
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-icon {
  font-size: 5rem;
  color: #10b981;
  margin-bottom: 20px;
  animation: bounce 1s ease;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-20px);}
  60% {transform: translateY(-10px);}
}

.modal-content h3 {
  font-size: 1.8rem;
  color: #2563eb;
  margin-bottom: 15px;
  line-height: 1.3;
}

.dark-mode .modal-content h3 {
  color: #60a5fa;
}

.modal-content p {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.dark-mode .modal-content p {
  color: #cbd5e1;
}

.modal-details {
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
  text-align: left;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.dark-mode .modal-details {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.modal-details p {
  margin: 10px 0;
  color: #1e293b;
  font-size: 1rem;
  line-height: 1.5;
}

.dark-mode .modal-details p {
  color: #f8fafc;
}

.modal-details strong {
  color: #2563eb;
  font-weight: 700;
}

.dark-mode .modal-details strong {
  color: #60a5fa;
}

#referenceId,
#transactionId {
  font-family: 'Courier New', monospace;
  background: rgba(37, 99, 235, 0.1);
  padding: 5px 10px;
  border-radius: 6px;
  color: #2563eb;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.dark-mode #referenceId,
.dark-mode #transactionId {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.3);
}

.modal-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1;
  min-width: 150px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.btn-tertiary {
  background: #f1f5f9;
  color: #334155;
  border: 2px solid #cbd5e1;
}

.dark-mode .btn-tertiary {
  background: #334155;
  color: #f8fafc;
  border-color: #475569;
}

.btn-tertiary:hover {
  background: #cbd5e1;
  color: #1e293b;
}

.dark-mode .btn-tertiary:hover {
  background: #475569;
  color: #f8fafc;
}

/* Transaction Toast */
.transaction-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  z-index: 10000;
  animation: slideInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  max-width: 400px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes slideInUp {
  from { transform: translateY(100%) translateX(20px); opacity: 0; }
  to { transform: translateY(0) translateX(0); opacity: 1; }
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  width: 100%;
}

.toast-content i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.toast-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-grow: 1;
}

.toast-info strong {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 600;
}

#toastTransactionId {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.btn-copy-toast,
.btn-close-toast {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-copy-toast:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.btn-close-toast {
  background: rgba(255, 255, 255, 0.1);
}

.btn-close-toast:hover {
  background: rgba(239, 68, 68, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .service-wizard {
    padding: 30px;
  }
  
  .category-grid,
  #servicesGrid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 992px) {
  .contact-header h2 {
    font-size: 2.2rem;
  }
  
  .contact-stats {
    gap: 20px;
  }
  
  .contact-stats .stat {
    min-width: 180px;
  }
  
  .wizard-progress {
    max-width: 500px;
  }
  
  .wizard-progress::before {
    left: 50px;
    right: 50px;
  }
}

@media (max-width: 768px) {
  .contact-enhanced {
    padding: 60px 0;
  }
  
  .service-wizard {
    padding: 25px;
    margin: 0 15px;
  }
  
  .contact-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-stats .stat {
    width: 100%;
    max-width: 300px;
  }
  
  .wizard-progress {
    gap: 10px;
    margin: 30px 0 40px;
  }
  
  .wizard-progress::before {
    left: 40px;
    right: 40px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-label {
    font-size: 0.8rem;
  }
  
  .category-grid,
  #servicesGrid {
    grid-template-columns: 1fr;
  }
  
  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .btn-back {
    align-self: flex-start;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .method-switch {
    flex-direction: column;
    align-items: stretch;
  }
  
  .switch-btn {
    min-width: 100%;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .modal-actions .btn {
    min-width: 100%;
  }
  
  .transaction-toast {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .contact-header h2 {
    font-size: 1.8rem;
  }
  
  .wizard-header h3 {
    font-size: 1.4rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .step-actions .btn {
    min-width: 100%;
    padding: 15px 20px;
  }
  
  .btn-submit {
    min-width: 100%;
    padding: 16px 20px;
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .contact-enhanced {
    background: white !important;
    color: black !important;
  }
  
  .service-wizard,
  .modal-content {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
  
  .btn,
  .wizard-progress,
  .contact-stats,
  .transaction-toast {
    display: none !important;
  }
}





















/* ===== COMPACT WHATSAPP BUTTONS ===== */
.whatsapp-compact {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
}

/* Toggle Button */
.whatsapp-toggle-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    animation: pulse 2s infinite;
    border: 3px solid white;
}

.whatsapp-toggle-btn i {
    font-size: 28px;
    color: white;
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF4757;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Hidden Options */
.whatsapp-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.whatsapp-compact.active .whatsapp-options {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Option Buttons */
.option-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.channel-option {
    background: linear-gradient(135deg, #FF6B6B, #FFA726);
}

.group-option {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045);
}

.option-btn i {
    font-size: 22px;
    color: white;
}

.option-tooltip {
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.option-btn:hover .option-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .whatsapp-compact {
        bottom: 70px;
        right: 15px;
    }
    
    .whatsapp-toggle-btn {
        width: 56px;
        height: 56px;
    }
    
    .option-tooltip {
        display: none; /* Hide tooltips on mobile */
    }
    
    .whatsapp-options {
        gap: 12px;
    }
}

/* Touch Device */
@media (hover: none) and (pointer: coarse) {
    .option-btn:active {
        transform: scale(0.9);
    }
}























/* ===== FOOTER STYLES ===== */
footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #e5e7eb;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
}

/* Light theme variation */
.light-mode footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #f8fafc;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column {
  padding: 0 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 2rem;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  padding: 12px;
  border-radius: 12px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.footer-description {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.light-mode .footer-description {
  color: #cbd5e1;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #cbd5e1;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.light-mode .social-link {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  transform: translateY(-5px);
  color: white;
  border-color: transparent;
}

.social-link:nth-child(1):hover { background: #1877f2; } /* Facebook */
.social-link:nth-child(2):hover { background: #1da1f2; } /* Twitter */
.social-link:nth-child(3):hover { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); } /* Instagram */
.social-link:nth-child(4):hover { background: #0077b5; } /* LinkedIn */
.social-link:nth-child(5):hover { background: #25d366; } /* WhatsApp */

.social-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.social-link:hover::after {
  transform: translateX(100%);
}

/* Column Headers */
.footer-column h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #f8fafc;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 5px;
}

.footer-links li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  background: #3b82f6;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-links li:hover::before {
  width: 8px;
  height: 8px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.light-mode .footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: #3b82f6;
  transform: translateX(10px);
}

.footer-links a i {
  font-size: 0.8rem;
  color: #3b82f6;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-links a:hover i {
  opacity: 1;
  transform: scale(1.2);
}

.footer-links a span {
  flex: 1;
}

/* Contact Info */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.light-mode .contact-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: #3b82f6;
  font-size: 1.1rem;
}

.contact-info {
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.light-mode .contact-label {
  color: #cbd5e1;
}

.contact-value {
  display: block;
  color: #f8fafc;
  font-weight: 500;
  font-size: 0.95rem;
}

.email-link {
  color: #3b82f6;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.email-link:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.email-link::after {
  content: '📧';
  margin-left: 8px;
  font-size: 0.9em;
  opacity: 0.8;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 40px 0;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
}

.copyright p {
  color: #94a3b8;
  margin: 5px 0;
  font-size: 0.9rem;
}

.light-mode .copyright p {
  color: #cbd5e1;
}

.tagline {
  color: #3b82f6 !important;
  font-weight: 600;
  font-style: italic;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.legal-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.light-mode .legal-link {
  color: #cbd5e1;
}

.legal-link:hover {
  color: #3b82f6;
  text-decoration: underline;
}

.divider {
  color: #64748b;
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 60px 0 25px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-column {
    padding: 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-logo i {
    padding: 15px;
    font-size: 2.2rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .contact-icon {
    margin: 0 auto;
  }
}

/* Animation for footer elements */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column {
  animation: slideUp 0.6s ease forwards;
  opacity: 0;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }