/* Import Google Fonts - Imposing Bold + Clean Body */
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@500,600,700&f[]=satoshi@300,400,500,700&display=swap');

/* =============================================
   COLOR VARIABLES — WHITE THEME
   ============================================= */
:root {
  --primary-color: #4e002d;
  --secondary-color: #ffffff;
  --accent-color: #4e002d;
  --accent-glow: #6a003f;
  --text-light: #1F2937;
  --text-dark: #FFFFFF;
  --text-muted: #4B5563;
  --background-dark: #FFFFFF;
  --background-light: #F9FAFB;
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(78, 0, 45, 0.15);
  --cool-grey-border: #E5E7EB;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Satoshi', sans-serif;
  background-color: var(--background-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

/* Imposing Bold Headlines */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

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

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

/* =============================================
   GRADIENT BACKGROUND ANIMATION
   ============================================= */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-header {
  background: linear-gradient(-45deg, #ffffff, #f4f4f6, #e2e8f0, #ffffff);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

/* =============================================
   NAVIGATION HEADER
   ============================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cool-grey-border);
  transition: var(--transition-smooth);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.logo-text {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-light);
  white-space: nowrap;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

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

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

.nav-link:hover {
  color: var(--accent-glow);
}

.btn-nav {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.btn-nav:hover {
  background: var(--accent-color);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(78, 0, 45, 0.4);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* =============================================
   MOBILE NAVIGATION — CSS-driven
   ============================================= */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-color) !important;
    padding: 1.5rem 2rem;
    border-bottom: 3px solid var(--accent-glow) !important;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    text-align: center;
  }

  .nav-menu.active-mobile {
    display: flex !important;
  }

  .nav-link {
    font-size: 1.1rem !important;
    padding: 0.8rem 0;
    color: #ffffff !important;
    display: block;
  }

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

  .btn-nav {
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
    display: inline-block;
    margin-top: 10px;
  }

  .btn-nav:hover {
    background: #ffffff;
    color: var(--primary-color);
  }
}

/* =============================================
   PAGE LAYOUT SPACER
   ============================================= */
main {
  margin-top: 76px;
  min-height: calc(100vh - 76px - 300px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  padding: 7rem 2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 70vh;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.6) 70%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0));
  z-index: 0;
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #1E293B !important;
}

.hero-content h1 span {
  background: linear-gradient(to right, var(--primary-color), var(--accent-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: #4B5563 !important;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero .btn-secondary {
  color: #1E293B !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}

.hero .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.5);
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-glow) 100%);
  color: #FFFFFF;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(78, 0, 45, 0.3);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(78, 0, 45, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  padding: 4px;
  background: linear-gradient(135deg, rgba(78, 0, 45, 0.2), rgba(255,255,255,0.85));
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* =============================================
   SECTION LAYOUT
   ============================================= */
.section-padding {
  padding: 5rem 1.5rem;
}

.section-title-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
  padding: 0 0.5rem;
}

.section-subtitle {
  color: var(--accent-color);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--text-light);
}

.section-desc {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  margin-top: 1rem;
  line-height: 1.7;
}

/* =============================================
   CARD GRID SYSTEM
   ============================================= */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Premium Border Hover Gradient Cards */
.border-gradient-card {
  position: relative;
  background: var(--secondary-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: var(--transition-smooth);
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--cool-grey-border);
}

.border-gradient-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  padding: 1.5px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 2;
}

.border-gradient-card:hover::before {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color), var(--accent-glow));
}

.border-gradient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(78, 0, 45, 0.15);
}

.card-icon {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
}

.card-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* =============================================
   ABOUT / CONTENT SECTION
   ============================================= */
.about-section {
  background-color: rgba(255, 255, 255, 1);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 5px;
  background: linear-gradient(45deg, var(--accent-color), transparent, var(--secondary-color));
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-content h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  line-height: 1.7;
}

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

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.highlight-icon {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.highlight-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* =============================================
   PROGRAM SPECIFIC LAYOUTS
   ============================================= */
.program-tier-badge {
  background: rgba(78, 0, 45, 0.1);
  border: 1px solid rgba(78, 0, 45, 0.3);
  color: var(--accent-color);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.25rem 0;
  border-top: 1px solid var(--cool-grey-border);
  border-bottom: 1px solid var(--cool-grey-border);
  padding: 0.65rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.program-meta span strong {
  color: var(--text-light);
}

.program-syllabus-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.program-syllabus-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.program-syllabus-list li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.55;
}

.program-syllabus-list li::before {
  content: '✓';
  color: var(--accent-color);
  flex-shrink: 0;
}

/* =============================================
   FORM STYLES
   ============================================= */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--secondary-color);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--cool-grey-border);
  box-shadow: var(--card-shadow);
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--cool-grey-border);
  border-radius: 4px;
  padding: 0.7rem 0.9rem;
  color: var(--text-light);
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 10px var(--glass-border);
}

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

.form-actions {
  margin-top: 1.5rem;
}

.form-title {
  margin-bottom: 1.75rem;
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

.form-footer {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-footer a {
  color: var(--accent-color);
  font-weight: 500;
}

.form-footer a:hover {
  color: var(--accent-glow);
}

/* =============================================
   ALERT STYLING
   ============================================= */
.alert {
  padding: 0.9rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
}

.alert-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #A7F3D0;
}

/* =============================================
   STEPPER COMPONENT (USER DASHBOARD)
   ============================================= */
.stepper-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 2.5rem 0;
  padding: 0 1rem;
}

.stepper-container::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--cool-grey-border);
  z-index: 1;
}

.step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--secondary-color);
  border: 3px solid var(--cool-grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
}

.step-node.completed .step-circle {
  background: var(--primary-color);
  border-color: var(--accent-color);
  color: var(--accent-glow);
}

.step-node.active .step-circle {
  background: var(--accent-color);
  border-color: var(--accent-glow);
  color: #FFFFFF;
  box-shadow: 0 0 15px var(--accent-color);
}

.step-label {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-node.completed .step-label,
.step-node.active .step-label {
  color: var(--text-light);
}

/* =============================================
   DASHBOARD
   ============================================= */
.dashboard-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.dashboard-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--cool-grey-border);
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
  gap: 1rem;
}

.dashboard-card {
  background: var(--secondary-color);
  border-radius: 12px;
  border: 1px solid var(--cool-grey-border);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  margin-bottom: 1.5rem;
}

.status-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  background: rgba(78, 0, 45, 0.05);
  border: 1px dashed var(--accent-color);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.status-badge {
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.status-badge.submitted { background: #3B82F6; color: white; }
.status-badge.review { background: #F59E0B; color: white; }
.status-badge.interview { background: #8B5CF6; color: white; }
.status-badge.offered { background: #10B981; color: white; }
.status-badge.enrolled { background: #059669; color: white; }
.status-badge.rejected { background: #EF4444; color: white; }

.status-message h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.status-message p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.info-box h3 {
  font-size: 1.2rem;
  border-bottom: 1px solid var(--cool-grey-border);
  padding-bottom: 0.6rem;
  margin-bottom: 0.9rem;
}

.info-item {
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.info-item strong {
  color: var(--accent-color);
  display: inline-block;
  min-width: 110px;
}

/* Action Box */
.action-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.action-box.interview-box {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.2);
}

.action-box h4 {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--text-light);
}

.action-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* =============================================
   ADMIN DASHBOARD TABLE
   ============================================= */
.admin-table-container {
  overflow-x: auto;
  background: var(--secondary-color);
  border-radius: 8px;
  border: 1px solid var(--cool-grey-border);
  box-shadow: var(--card-shadow);
  -webkit-overflow-scrolling: touch;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.admin-table th,
.admin-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--cool-grey-border);
}

.admin-table th {
  background: rgba(78, 0, 45, 0.8);
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.admin-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.btn-sm {
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: var(--accent-color);
  color: #FFFFFF;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-sm:hover {
  background: var(--accent-glow);
  box-shadow: 0 0 10px rgba(78, 0, 45, 0.3);
}

.btn-sm.btn-danger-sm {
  background: #EF4444;
  color: white;
}

.btn-sm.btn-danger-sm:hover {
  background: #DC2626;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

/* =============================================
   FOOTER SECTION
   ============================================= */
footer {
  background-color: #4e002d;
  border-top: none;
  padding: 3.5rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo img {
  height: 48px;
  margin-bottom: 0.9rem;
  border-radius: 4px;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer-contact li {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--accent-color);
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  gap: 1rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

.footer-social-icon:hover {
  background: var(--accent-color);
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* =============================================
   FLOATING WHATSAPP WIDGET
   ============================================= */
.whatsapp-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  padding: 0.7rem 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.whatsapp-widget svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.whatsapp-widget:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  background: #20BA5A;
  color: white;
}

.whatsapp-tooltip {
  background: var(--secondary-color);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  box-shadow: var(--card-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  position: absolute;
  right: 110%;
  white-space: nowrap;
}

.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* =============================================
   THEME TOGGLER BUTTON
   ============================================= */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  background: var(--accent-color);
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(78, 0, 45, 0.4);
}

.theme-toggle-icon {
  font-size: 1rem;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-group {
    justify-content: center;
  }

  .hero-bg-img {
    width: 100%;
    opacity: 0.15;
  }

  .hero-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 1.25rem;
  }

  .section-title-wrap {
    margin-bottom: 2.5rem;
  }

  .hero {
    padding: 5rem 1.25rem 3.5rem;
    min-height: auto;
  }

  .hero-image-wrapper {
    max-width: 360px;
  }

  /* Stepper vertical on mobile */
  .stepper-container {
    flex-direction: column;
    gap: 1.25rem;
  }

  .stepper-container::before {
    display: none;
  }

  .step-node {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .step-label {
    margin-top: 0;
    text-align: left;
  }

  /* Info grid stack */
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-item strong {
    display: block;
    min-width: auto;
    margin-bottom: 0.15rem;
  }

  /* Footer stack */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Form adjustments */
  .form-container {
    padding: 1.75rem 1.25rem;
  }

  /* Dashboard */
  .dashboard-card {
    padding: 1.5rem;
  }

  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* WhatsApp: icon only on small */
  .whatsapp-widget span:not(.whatsapp-tooltip) {
    /* Keep text but reduce */
    font-size: 0.82rem;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .nav-container {
    padding: 0.75rem 1rem;
  }

  .logo img {
    height: 36px;
  }

  .logo-text {
    font-size: 1rem;
  }

  main {
    margin-top: 68px;
  }

  .hero {
    padding: 4rem 1rem 3rem;
  }

  .hero-content h1 {
    font-size: 1.55rem;
  }

  .hero-content p {
    font-size: 0.92rem;
  }

  .cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.88rem;
    width: 100%;
    text-align: center;
  }

  .section-padding {
    padding: 3rem 1rem;
  }

  .section-title-wrap {
    margin-bottom: 2rem;
  }

  .border-gradient-card {
    padding: 1.5rem 1.25rem;
  }

  .card-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .card-desc {
    font-size: 0.88rem;
  }

  .about-container {
    gap: 2rem;
  }

  .form-container {
    padding: 1.5rem 1rem;
  }

  .form-title {
    font-size: 1.3rem;
  }

  /* WhatsApp: compact on very small screens */
  .whatsapp-widget {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
  }

  .whatsapp-widget svg {
    width: 20px;
    height: 20px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  /* Footer fine-tuning */
  .footer-logo img {
    height: 40px;
  }
}

/* =============================================
   NEW MODERN LANDING STYLES
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary-dark: #3a0022;
  --bg-white: #ffffff;
  --border-color: #E5E7EB;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-wrapper {
  padding: 5px 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-family: 'Inter', sans-serif;
  transition: all 0.4s ease-in-out;
}

.header-wrapper.sticky {
  position: fixed;
  top: -100px;
  padding: 10px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(100px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-pill {
  background: var(--bg-white);
  border-radius: 100px;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  max-width: 1400px;
  margin: 0 auto;
}

.logo-container img {
  height: 60px;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  background: var(--background-light);
  color: var(--primary-color);
}

.nav-actions .btn-contact, .nav-actions .btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-light);
  transition: var(--transition);
}
.nav-actions .btn-contact:hover, .nav-actions .btn-nav:hover {
  background: var(--background-light);
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  padding-top: 130px;
  padding-bottom: 100px;
  background: var(--bg-white);
  font-family: 'Inter', sans-serif;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-content h1 span {
  font-weight: 300;
  font-style: italic;
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
}
.btn-outline:hover {
  color: var(--primary-color);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
}

.stat-item h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  margin-bottom: 4px;
  color: var(--text-light);
}
.stat-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 120px;
  margin-bottom: 0;
}
.stat-avatars {
  display: flex;
  align-items: center;
}
.stat-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-white);
  margin-left: -12px;
}
.stat-avatars img:first-child {
  margin-left: 0;
}
.stat-avatars span {
  margin-left: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
}

.hero-visuals {
  position: relative;
}

.img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 500px;
}

.img-overlap {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 250px;
  height: 200px;
  border-radius: var(--radius-lg);
  border: 10px solid var(--bg-white);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

/* Feature Section (Primary Color Background) */
.feature-section {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 100px 0;
  margin: 60px 24px;
  border-radius: var(--radius-lg);
  font-family: 'Inter', sans-serif;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-images img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  height: 300px;
}
.feature-images img:first-child {
  transform: translateY(-40px);
}

.feature-content h2 {
  font-family: 'Outfit', sans-serif;
  color: var(--secondary-color);
  font-size: 3rem;
  margin-bottom: 24px;
}
.feature-content .badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.875rem;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}
.feature-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.feature-stats {
  display: flex;
  gap: 60px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 40px;
}
.feature-stats h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.feature-stats p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Why Choose Us Section */
.why-section {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-white);
  font-family: 'Inter', sans-serif;
}

.why-section .badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.why-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  max-width: 600px;
  margin: 0 auto 20px;
  color: var(--text-light);
}

.why-section > p {
  color: var(--text-muted);
  margin-bottom: 60px;
}

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.cards-grid .card {
  width: calc(33.333% - 16px);
}

.card {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: var(--transition);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-lg);
  padding: 2px; /* border thickness */
  background: linear-gradient(45deg, var(--primary-color), #ff6b6b, var(--primary-color));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

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

.card:hover::before {
  opacity: 1;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-light);
  border-radius: 50%;
}

.card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.btn-card {
  display: inline-block;
  padding: 10px 24px;
  background: var(--background-light);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-light);
}
.card:hover .btn-card {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/* Footer Section */
.footer-wrapper {
  position: relative;
  font-family: 'Inter', sans-serif;
  margin-top: 60px;
}

.footer-cta-banner {
  background: var(--bg-white, #ffffff);
  margin: 0 24px -80px; /* Overlaps into the dark footer */
  padding: 80px 40px;
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  z-index: 10;
  border: 1px solid var(--cool-grey-border, #E5E7EB);
  border-top: 4px solid var(--primary-color);
}

.footer-cta-banner h2 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.footer-cta-banner p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

.main-footer {
  background: var(--primary-color);
  padding: 140px 40px 40px; /* Extra top padding for overlapping CTA */
  color: var(--secondary-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  text-align: left;
  gap: 40px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--secondary-color);
  margin-bottom: 24px;
  font-size: 1.125rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-col ul a:hover {
  color: var(--secondary-color);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.newsletter-form input {
  padding: 12px 20px;
  border-radius: 100px;
  border: none;
  flex: 1;
  outline: none;
  font-family: 'Inter', sans-serif;
}
.newsletter-form button {
  padding: 12px 24px;
  border-radius: 100px;
  background: rgba(255,255,255,0.2);
  color: var(--secondary-color);
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.newsletter-form button:hover {
  background: var(--bg-white);
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-only {
  display: none;
}

/* WhatsApp Floating Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-widget:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  color: white;
}
.whatsapp-widget svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.whatsapp-tooltip {
  display: none;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .hero-grid, .feature-grid, .footer-content {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    flex-direction: column;
    align-items: center;
  }
  .cards-grid .card {
    width: 100%;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 16px;
  }
  .hero-actions a {
    width: 100%;
    justify-content: center;
  }
  .nav-pill {
    padding: 12px 20px;
    position: relative;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .nav-links.active-mobile {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: var(--bg-white);
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-radius: var(--radius-lg);
    z-index: 1001;
    gap: 15px;
    text-align: center;
  }
  .nav-links.active-mobile .mobile-only {
    display: inline-block;
  }
  .nav-actions {
    display: none; /* Hide on small mobile headers to save space */
  }
  .img-overlap {
    display: none;
  }
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

/* Animations & Image Hover */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.about-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.about-img-wrap:hover img {
  transform: scale(1.05);
}

/* Dark Section Styles for Alternating Layout */
.section-dark {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  padding: 100px 24px !important;
}

.section-dark h2, 
.section-dark h3, 
.section-dark h4,
.section-dark p, 
.section-dark .section-subtitle, 
.section-dark .section-desc {
  color: var(--secondary-color) !important;
}

/* About Highlights Grid */
.about-highlights {
  display: grid;
}
.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.highlight-icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: var(--radius-md);
  color: var(--secondary-color);
}

.section-dark strong {
  color: #fff !important;
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section-dark .btn-card {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.section-dark .btn-card:hover {
  background: var(--primary-dark);
  color: var(--secondary-color);
}
