/* CSS Variables & Design Tokens based on the Logo (Black and Blue) */
:root {
  --primary: #0088D1; /* WRC Blue */
  --primary-dark: #006FB0;
  --primary-light: #E1F3FE;
  
  --dark: #1A1A1A; /* WRC Blackish Text */
  --darker: #121212;
  --gray-dark: #333333;
  --gray: #666666;
  --gray-light: #E0E0E0;
  
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  
  --danger: #E53935;
  --success: #43A047;
  
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
  
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky header */
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--darker);
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1em;
  color: var(--gray);
}

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.text-center { text-align: center; }
.text-white { color: white !important; }
.text-primary { color: var(--primary) !important; }
.text-danger { color: var(--danger) !important; }
.text-gray { color: var(--gray) !important; }
.text-gray-300 { color: #E0E0E0 !important; }
.text-gray-dark { color: var(--gray-dark) !important; }
.text-darker { color: var(--darker) !important; }
.text-sm { font-size: 0.9rem; }
.font-medium { font-weight: 500; }

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--darker); }
.bg-blue-light { background-color: var(--primary-light); }
.bg-light-blue { background-color: var(--primary-light); }

.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-5 { padding-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 800px; }

.rounded { border-radius: var(--radius); }
.radius-lg { border-radius: var(--radius-lg); }
.border-t { border-top: 1px solid var(--gray-light); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-md); }
.shadow-xl { box-shadow: var(--shadow-lg); }
.pos-relative { position: relative; }
.block { display: block; }

.grid {
  display: grid;
  gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.align-center { align-items: center; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

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

.text-gradient {
  background: linear-gradient(90deg, var(--primary), #00C6FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: var(--transition);
  gap: 8px;
}

.btn-sm { padding: 8px 16px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; border-radius: 8px; }

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 136, 209, 0.4);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 136, 209, 0.5);
  color: white;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.btn-outline-light:hover {
  background: white;
  color: var(--darker);
}

.shine-effect {
  position: relative;
  overflow: hidden;
}
.shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  opacity: 0;
  transform: rotate(30deg);
  background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right, 
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0.0) 100%
  );
  transition: opacity 0.3s ease;
  animation: shine 3s infinite;
}
@keyframes shine {
  0% { left: -60%; opacity: 0; }
  20% { opacity: 1; }
  80% { left: 120%; opacity: 0; }
  100% { left: 120%; opacity: 0; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
  background-color: transparent;
}
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
}

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

.logo-wrc {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--darker);
  letter-spacing: -1px;
}
.header.scrolled .logo-wrc {
  color: var(--darker); /* In case of dark mode initial header */
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: white;
  font-weight: 500;
  position: relative;
}
.header.scrolled .nav-link {
  color: var(--dark);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}
.header.scrolled .mobile-menu-btn { color: var(--dark); }

/* Language Switcher */
.mobile-header-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}
.mobile-lang-switcher {
  display: none; /* Hidden on desktop */
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
.lang-btn {
  color: white;
  opacity: 0.6;
  text-decoration: none;
}
.lang-btn:hover {
  opacity: 1;
}
.lang-btn.active {
  opacity: 1;
  color: #00C6FF;
}
.lang-sep {
  color: white;
  opacity: 0.4;
  font-weight: 300;
}
.header.scrolled .lang-btn {
  color: var(--darker);
}
.header.scrolled .lang-btn.active {
  color: var(--primary);
}
.header.scrolled .lang-sep {
  color: var(--gray);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero_background.png');
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05); /* slightly scale for cool effect */
}
.hero-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(18,18,18,0.85) 0%, rgba(18,18,18,0.4) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgba(225, 243, 254, 0.15); /* Translucent */
  color: #00C6FF; /* Brighter blue for dark bg */
  border: 1px solid rgba(0, 198, 255, 0.3);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
}
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 700px;
  margin-bottom: 20px;
  color: #E0E0E0;
}
.hero-highlight {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary);
  padding-left: 15px;
}

.hero-features {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: white;
  font-size: 1rem;
}
.feature-tag i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* Sections */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Cards */
.card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.card:hover .card-icon {
  background-color: var(--primary);
  color: white;
  transform: scale(1.1);
}
.card-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.card-text {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.competency-highlight {
  padding: 40px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary);
}
.lead-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--darker);
  margin-bottom: 0;
}

/* Ops List */
.feature-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.list-icon {
  font-size: 1.5rem;
  margin-top: 3px;
}
.list-content h4 {
  color: white;
  margin-bottom: 5px;
}
.list-content p {
  margin-bottom: 0;
  color: #B0BEC5;
}

.quote-box {
  padding: 25px;
  background-color: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}
.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: white;
}

/* Image Stack */
.img-main {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  padding: 20px 30px;
  border-radius: var(--radius);
  color: white;
  box-shadow: var(--shadow-lg);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-text {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
}

/* Model Section - Vertical Timeline */
.process-steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 20px;
  border-left: 2px dashed var(--primary-light);
}

.step-v {
  position: relative;
  padding-left: 30px;
}

.step-number-v {
  position: absolute;
  left: -53px; /* Align over the dashed border */
  top: 0;
  width: 44px;
  height: 44px;
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 2;
}

.step-content-v h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--darker);
}

.step-content-v p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Image Collage Styling for Model Section */
.model-image-collage {
  height: 500px;
  width: 100%;
}
.collage-item {
  position: absolute;
  transition: transform 0.4s ease, z-index 0s;
}
.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.border-white {
  border: 6px solid white;
}
.collage-item:hover {
  transform: scale(1.05);
  z-index: 10;
}
.collage-main {
  width: 65%;
  height: 350px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 2;
}
.collage-main:hover {
  transform: translateY(-50%) scale(1.05);
}
.collage-secondary-1 {
  width: 50%;
  height: 250px;
  top: 20px;
  left: 0;
  z-index: 3;
}
.collage-secondary-2 {
  width: 45%;
  height: 220px;
  bottom: 20px;
  left: 10%;
  z-index: 4;
}

/* Footprint Section Background */
.footprint-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.footprint-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/global_map.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.footprint-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.65); /* Translucent dark overlay so map is visible but text is readable */
}
.footprint-container {
  z-index: 2;
  position: relative;
}

.glass-dark {
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card-overlay {
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.small-tags .loc-tag {
  padding: 4px 12px;
  font-size: 0.8rem;
}
.loc-tag {
  background: var(--bg-light);
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--gray-light);
  color: var(--dark);
}
.loc-tag.dark {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}
.loc-tag.primary-glow {
  background: rgba(0, 136, 209, 0.2);
  border-color: rgba(0, 136, 209, 0.5);
  color: #00C6FF;
}

.glass-alert {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.border-l-primary {
  border-left: 4px solid var(--primary);
}

/* Stats */
.stat-box {
  padding: 40px 20px;
}
.stat-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.result-divider {
  width: 4px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 50%;
}
.result-item {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Footer CTAs & White Structure */
.cta-card {
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  height: 100%;
}
.employers-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray-dark) 100%);
  color: white;
}
.employers-cta .btn-outline-light {
  border-color: rgba(255,255,255,0.5);
}
.candidates-cta {
  background: linear-gradient(135deg, var(--primary-light) 0%, #E3F2FD 100%);
  border: 1px solid var(--primary-light);
}
.cta-title {
  font-size: 2rem;
  margin-bottom: 10px;
}
.employers-cta .cta-title { color: white; }
.candidates-cta .cta-title { color: var(--darker); }
.cta-highlight {
  font-size: 1.1rem;
  font-weight: 500;
}
.employers-cta .cta-highlight { color: white; }
.candidates-cta .cta-highlight { color: var(--darker); }

/* Changed to white background */
.footer {
  background-color: white;
  padding: 80px 0 30px;
  border-top: 1px solid var(--gray-light);
}
.footer .social-link {
  color: var(--primary);
  font-size: 1.5rem;
  margin-left: 15px;
  opacity: 0.8;
}
.footer .social-link:hover {
  opacity: 1;
  color: var(--primary-dark);
}
.footer .social-link-disabled {
  opacity: 0.45;
  cursor: default;
}
.footer .border-dark {
  border-color: var(--gray-light) !important;
}

/* Animations */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-spin {
  animation: spin 1s linear infinite;
  display: inline-block;
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}


/* Responsive Design */
@media (max-width: 992px) {
  .hero-title { font-size: 3rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .floating-card {
    left: 20px;
    bottom: -20px;
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-features { flex-direction: column; gap: 10px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  
  .process-steps { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  .step { margin-bottom: 30px; }
  
  .flex-center { flex-direction: column; }
  .result-divider { display: none; }
  
  .mobile-header-controls { display: flex; align-items: center; gap: 15px; }
  .mobile-menu-btn { display: block; }
  .mobile-lang-switcher { display: flex; }
  .desktop-lang-switcher { display: none !important; }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
  }
  .main-nav.active { left: 0; }
  .nav-list { flex-direction: column; width: 100%; gap: 20px; }
  .header-actions { margin-top: 20px; }
  
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  max-height: 90vh; /* Prevents container from taking full height */
  overflow-y: auto; /* Enables vertical scrolling within container */
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin: 20px;
}

.modal.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-dark);
}

.modal-close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
}

.modal-content {
  padding: 40px;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.modal-header p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* Contact Form Styles */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--darker);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(0, 136, 209, 0.1);
}

.btn-block {
  width: 100%;
  margin-top: 10px;
}

.form-status {
  text-align: center;
  padding: 40px 0;
}

.form-status i {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 20px;
  display: block;
}

.form-status h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.form-status p {
  color: var(--gray);
}

@media (max-width: 576px) {
  .modal-content {
    padding: 25px 15px; /* Reduced padding to fit more content on small screens */
  }
  .modal-header {
    margin-bottom: 20px;
  }
  .modal-header h2 {
    font-size: 1.5rem; /* Smaller title */
  }
  .contact-form .form-group {
    margin-bottom: 15px; /* Tighter spacing */
  }
}
