/* ===== CUSTOM PROPERTIES (VARIABLES) ===== */
:root {
  /* Colors */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  
  --secondary-50: #f0fdfa;
  --secondary-500: #14b8a6;
  --secondary-600: #0d9488;
  
  --dark-900: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #334155;
  --dark-600: #475569;
  
  --light-50: #f8fafc;
  --light-100: #f1f5f9;
  --light-200: #e2e8f0;
  
  --danger: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;
  --info: #3b82f6;

  /* Typography */
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.5);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  color: var(--dark-700);
  background-color: var(--light-50);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--dark-900);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.btn-primary {
  background-color: var(--primary-600);
  color: white;
  box-shadow: var(--shadow-md);
}

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

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

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

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: var(--primary-50);
  color: var(--primary-700);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--dark-600);
  max-width: 600px;
  margin: 0 auto;
}

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

/* Utility Classes */
.bg-blue { background-color: var(--primary-100); color: var(--primary-600); }
.bg-green { background-color: #d1fae5; color: var(--success); }
.bg-orange { background-color: #fef3c7; color: var(--warning); }
.bg-purple { background-color: #f3e8ff; color: #9333ea; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--light-200);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-900);
}

.logo-icon {
  color: var(--primary-600);
  font-size: 1.75rem;
}

.logo-accent {
  color: var(--primary-600);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-700);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-600);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-600);
  transition: width var(--transition-normal);
}

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

.nav-btn-outline, .nav-btn-primary {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.nav-btn-outline::after, .nav-btn-primary::after {
  display: none;
}

.nav-btn-outline {
  border: 1px solid var(--primary-600);
  color: var(--primary-600);
}

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

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

.nav-btn-primary:hover {
  background-color: var(--primary-700);
  color: white;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-900);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
  background-color: var(--light-50);
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.shape-1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background-color: rgba(59, 130, 246, 0.3); /* Primary */
}

.shape-2 {
  bottom: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(20, 184, 166, 0.2); /* Secondary */
}

.shape-3 {
  top: 40%;
  right: 20%;
  width: 300px;
  height: 300px;
  background-color: rgba(147, 51, 234, 0.15); /* Purple */
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: white;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark-700);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge i {
  color: var(--primary-600);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--dark-600);
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--dark-900);
}

.stat-item span:not(.stat-number) {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-600);
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--dark-600);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--light-200);
}

.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  width: 350px;
  height: 450px;
  background: linear-gradient(135deg, var(--dark-800), var(--dark-900));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-img-placeholder {
  text-align: center;
  color: white;
}

.hero-img-placeholder i {
  font-size: 4rem;
  color: var(--primary-500);
  margin-bottom: 1rem;
}

.hero-img-placeholder p {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.hero-img-placeholder span {
  font-size: 0.875rem;
  color: var(--dark-400);
}

.floating-card {
  position: absolute;
  background-color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.card-top {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.card-bottom {
  bottom: 15%;
  right: -5%;
  animation-delay: 3s;
}

.fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.fc-title {
  font-weight: 700;
  color: var(--dark-900);
  font-size: 0.9rem;
}

.fc-sub {
  font-size: 0.75rem;
  color: var(--dark-600);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* ===== JOB LISTINGS SECTION ===== */
.jobs-section {
  padding: 6rem 0;
  background-color: white;
}

.jobs-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  background-color: var(--light-100);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--dark-600);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background-color: var(--light-200);
}

.filter-btn.active {
  background-color: var(--primary-600);
  color: white;
  box-shadow: var(--shadow-md);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.job-card {
  background-color: white;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.job-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background-color: var(--primary-50);
  color: var(--primary-600);
}

.job-type {
  padding: 0.25rem 0.75rem;
  background-color: var(--light-100);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark-600);
}

.job-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.job-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

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

.job-tag {
  padding: 0.25rem 0.5rem;
  background-color: var(--light-50);
  border: 1px solid var(--light-200);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--dark-600);
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-200);
}

.job-salary {
  font-weight: 700;
  color: var(--dark-900);
}

.job-salary span {
  font-size: 0.75rem;
  color: var(--dark-600);
  font-weight: 400;
}

.apply-link {
  font-weight: 600;
  color: var(--primary-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.apply-link:hover {
  color: var(--primary-700);
  gap: 0.75rem;
}

/* ===== APPLICATION FORM SECTION ===== */
.apply-section {
  padding: 6rem 0;
  background-color: var(--light-50);
}

.apply-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  color: var(--dark-800);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: var(--primary-500);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark-900);
  transition: all var(--transition-fast);
  background-color: var(--light-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px var(--primary-100);
  background-color: white;
}

.field-error {
  color: var(--danger);
  font-size: 0.75rem;
  font-weight: 500;
  height: 1rem;
}

.field-hint {
  color: var(--dark-500);
  font-size: 0.75rem;
}

/* Experience Slider */
.experience-slider-wrapper {
  padding: 1rem 0;
}

.exp-slider {
  width: 100%;
  height: 6px;
  background: var(--light-200);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}

.exp-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-600);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.exp-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.exp-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--dark-600);
}

.exp-value {
  font-weight: 700;
  color: var(--primary-600);
}

/* File Drop Zone */
.file-drop-zone {
  border: 2px dashed var(--light-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  background-color: var(--light-50);
  transition: all var(--transition-fast);
}

.file-drop-zone.dragover {
  border-color: var(--primary-500);
  background-color: var(--primary-50);
}

.file-drop-inner i {
  font-size: 2.5rem;
  color: var(--primary-400);
  margin-bottom: 1rem;
}

.file-drop-inner p {
  font-weight: 600;
  color: var(--dark-700);
}

.file-drop-inner span {
  display: block;
  margin: 0.5rem 0;
  color: var(--dark-500);
  font-size: 0.875rem;
}

.file-browse-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: white;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--primary-600);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.file-browse-btn:hover {
  background-color: var(--primary-50);
  border-color: var(--primary-200);
}

.file-hint {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--dark-500);
}

.file-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: white;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-md);
}

.file-preview i {
  font-size: 1.5rem;
  color: var(--danger);
}

.file-preview span {
  flex-grow: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-preview button {
  background: none;
  border: none;
  color: var(--dark-500);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.file-preview button:hover {
  color: var(--danger);
}

.form-actions {
  margin-top: 2rem;
  text-align: center;
}

.form-actions button {
  width: 100%;
  max-width: 300px;
}

.form-success {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--secondary-50);
  border: 1px solid var(--secondary-500);
  border-radius: var(--radius-lg);
  text-align: center;
}

.form-success i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--dark-900);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--dark-700);
}

/* ===== HR DASHBOARD SECTION ===== */
.dashboard-section {
  padding: 6rem 0;
  background-color: white;
  border-top: 1px solid var(--light-200);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.dash-stat-card {
  background-color: white;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.dash-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.dsc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.dsc-info {
  flex-grow: 1;
}

.dsc-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--dark-900);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.dsc-label {
  font-size: 0.875rem;
  color: var(--dark-600);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.dsc-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.dsc-trend.up { color: var(--success); }
.dsc-trend.down { color: var(--danger); }

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

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.panel-header h3 {
  font-size: 1.25rem;
}

.panel-search {
  position: relative;
}

.panel-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark-400);
}

.panel-search input {
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  width: 250px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.panel-search input:focus {
  border-color: var(--primary-500);
}

.candidates-panel {
  background-color: white;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.candidates-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.candidates-list::-webkit-scrollbar {
  width: 6px;
}
.candidates-list::-webkit-scrollbar-track {
  background: var(--light-50);
}
.candidates-list::-webkit-scrollbar-thumb {
  background: var(--light-200);
  border-radius: 3px;
}

.candidate-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.candidate-item:hover {
  background-color: var(--light-50);
  border-color: var(--light-200);
}

.c-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-100);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.c-info {
  flex-grow: 1;
}

.c-name {
  font-weight: 600;
  color: var(--dark-900);
}

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

.c-status {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-new { background-color: var(--primary-50); color: var(--primary-700); }
.status-shortlisted { background-color: #f3e8ff; color: #9333ea; }
.status-interview { background-color: #fef3c7; color: var(--warning); }
.status-rejected { background-color: #fee2e2; color: var(--danger); }

.c-actions {
  display: flex;
  gap: 0.5rem;
}

.c-actions button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background-color: var(--light-100);
  color: var(--dark-600);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.c-actions button:hover {
  background-color: var(--primary-50);
  color: var(--primary-600);
}

.interview-panel {
  background-color: var(--light-50);
  border: 1px solid var(--light-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.interview-form .form-group input,
.interview-form .form-group select,
.interview-form .form-group textarea {
  background-color: white;
}

.interview-success {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #d1fae5;
  color: var(--success);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 6rem 0;
  background-color: var(--dark-900);
  color: white;
}

.about-section .section-title {
  color: white;
}

.about-section .section-tag {
  background-color: rgba(255,255,255,0.1);
  color: var(--primary-100);
}

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

.about-content p {
  color: var(--dark-100);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-feature i {
  font-size: 1.5rem;
  color: var(--primary-400);
}

.about-feature span {
  font-weight: 600;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-card {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform var(--transition-normal);
}

.about-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255,255,255,0.1);
}

.ac-1 { transform: translateY(20px); }
.ac-3 { transform: translateY(20px); }

.about-card i {
  font-size: 2rem;
  color: var(--primary-400);
  margin-bottom: 1rem;
}

.about-card h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.about-card p {
  color: var(--dark-100);
  font-size: 0.875rem;
  margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 6rem 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-50);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--dark-600);
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-form {
  background-color: var(--light-50);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-200);
}

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

.contact-success {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #d1fae5;
  color: var(--success);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark-900);
  color: var(--dark-100);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-top {
  padding: 5rem 0;
}

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

.footer-brand .nav-logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--dark-100);
}

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

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.social-btn:hover {
  background-color: var(--primary-600);
}

.footer-col h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: var(--dark-100);
  font-size: 0.875rem;
}

.footer-col a:hover {
  color: var(--primary-400);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.875rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background-color: var(--primary-600);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-700);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-container, .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-ctas, .hero-stats {
    justify-content: center;
  }
  
  .hero-card-stack {
    margin-top: 2rem;
  }
  
  .dashboard-main {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: left var(--transition-normal);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  
  .hero-img-wrapper {
    width: 280px;
    height: 380px;
  }
  
  .floating-card {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
