/* ==========================================================================
   AATC Training & Consultancy - Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

:root {
  /* Colors */
  --primary: #0b2545;
  --primary-hover: #133e87;
  --primary-active: #081a31;
  --primary-light: #d5e3ff;
  
  --secondary: #f59e0b;
  --secondary-hover: #d97706;
  --secondary-light: #fef3c7;
  
  --tertiary: #133e87;
  
  /* Neutrals & Surfaces */
  --background: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-inverse: #ffffff;
  
  --border: #e2e8f0;
  --border-hover: #cbd5e1;

  /* Semantic Colors */
  --success: #059669;
  --success-bg: #ecfdf5;
  --success-border: #a7f3d0;
  
  --warning: #d97706;
  --warning-bg: #fffbeb;
  --warning-border: #fcd34d;
  
  --critical: #dc2626;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem; /* 4px */
  --space-sm: 0.5rem;  /* 8px */
  --space-md: 1rem;    /* 16px */
  --space-lg: 1.5rem;  /* 24px */
  --space-xl: 2.5rem;  /* 40px */
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-pill: 9999px;

  /* Shadows (Elevations) */
  --shadow-1: 0 1px 3px 0 rgba(11, 37, 69, 0.05), 0 1px 2px -1px rgba(11, 37, 69, 0.05);
  --shadow-2: 0 4px 6px -1px rgba(11, 37, 69, 0.08), 0 2px 4px -2px rgba(11, 37, 69, 0.06);
  --shadow-3: 0 10px 15px -3px rgba(11, 37, 69, 0.1), 0 4px 6px -4px rgba(11, 37, 69, 0.08);
  --shadow-glow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 80px; /* For fixed header */
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* Typography Classes */
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1.2;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

/* Flex Grid */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-12 { grid-template-columns: repeat(12, 1fr); }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
  .lg\:col-span-5 { grid-column: span 5; }
  .lg\:col-span-7 { grid-column: span 7; }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

/* ==========================================================================
   Components
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  height: 48px;
}

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

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

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-hover);
  color: var(--primary);
}
.btn-outline:hover {
  background-color: var(--surface-alt);
  border-color: var(--primary);
}

.btn-sm {
  height: 40px;
  padding: 0.5rem 1rem;
}

/* Cards */
.card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.card-body {
  padding: var(--space-lg);
}

/* Status Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pill-hrd {
  background-color: var(--secondary-light);
  color: #92400E;
  border: 1px solid #FDE68A;
}

.pill-success {
  background-color: var(--success-bg);
  color: var(--success);
  border: 1px solid var(--success-border);
}

/* Material Icon Setup */
.material-symbols-outlined {
  font-size: 1.25rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }
.bg-primary { background-color: var(--primary); }
.bg-surface { background-color: var(--surface); }
.bg-background { background-color: var(--background); }
.rounded-full { border-radius: 9999px; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.block { display: block; }
.inline-block { display: inline-block; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  box-shadow: var(--shadow-1);
}

.bilingual-switcher {
  display: none;
}
@media (min-width: 1024px) {
  .bilingual-switcher {
    display: inline-flex;
    background-color: var(--surface-alt);
    border-radius: var(--radius-sm);
    padding: 2px;
  }
}

.bilingual-btn {
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.bilingual-btn.active {
  background-color: var(--secondary);
  color: var(--primary);
}

.main-nav {
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.main-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.nav-links {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    gap: 1.5rem;
    height: 100%;
    align-items: center;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}

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

.nav-link.active {
  border-bottom-color: var(--secondary);
}

.nav-actions {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.book-btn {
  display: none;
}
@media (min-width: 1024px) {
  .book-btn {
    display: inline-flex;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--surface-alt);
}
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Slide-Down Panel */
.mobile-nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.mobile-nav-panel.open {
  max-height: 400px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 1rem var(--space-md);
}

.mobile-nav-link {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  background-color: var(--primary);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .hero {
    padding: 6rem 0;
  }
}

.hero-glow-1 {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background-color: rgba(73, 95, 130, 0.2);
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 500px;
  height: 12rem;
  background-color: rgba(245, 158, 11, 0.1);
  filter: blur(60px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 9999px;
  background-color: rgba(0, 34, 87, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffb95f;
  margin-bottom: 1.25rem;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-inverse);
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-title-highlight {
  background: linear-gradient(to right, var(--secondary), #ffb95f, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 1rem;
  color: #cbd5e1;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(100, 116, 139, 0.3);
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-value.gold { color: var(--secondary); }
.stat-value.light { color: #ffb95f; }
.stat-value.white { color: var(--text-inverse); }

.stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

/* Hero Card */
.hero-card {
  background-color: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  border: 1px solid var(--border);
}

.hero-card-accent {
  height: 8px;
  width: 100%;
  background: linear-gradient(to right, var(--secondary), #fcd34d, var(--secondary));
}

.hero-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.hero-card-img-wrapper {
  position: relative;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--primary);
}

.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.hero-card-img-wrapper:hover .hero-card-img {
  transform: scale(1.05);
}

.hero-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 37, 69, 0.9), transparent);
}

.hero-card-img-tags {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  color: var(--text-inverse);
  font-size: 0.75rem;
}

.hero-card-trainer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: var(--surface-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.trainer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.section-header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary);
  font-weight: 700;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 0.25rem;
}

@media (min-width: 1024px) {
  .section-title { font-size: 2.5rem; }
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon .material-symbols-outlined {
  color: var(--secondary);
  font-size: 24px;
}

.service-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.service-list .material-symbols-outlined {
  color: var(--secondary);
  font-size: 16px;
}

/* Special Featured Card */
.card-featured {
  background-color: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary-active);
  position: relative;
  z-index: 1;
}

.card-featured::before {
  content: '';
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background-color: rgba(245, 158, 11, 0.1);
  filter: blur(20px);
  z-index: -1;
}

.card-featured .service-icon {
  background-color: var(--primary-hover);
}

.card-featured h3 {
  color: var(--text-inverse);
}

.card-featured p {
  color: #cbd5e1;
}

.card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.card-featured .card-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: #ffb95f;
}

/* ==========================================================================
   Facilities Section
   ========================================================================== */
.facility-img {
  position: relative;
  height: 200px;
  background-color: var(--surface-alt);
}

.facility-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(11, 37, 69, 0.9);
  color: var(--text-inverse);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
}

.pricing-box {
  background-color: var(--surface-alt);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.pricing-item {
  background-color: var(--surface);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pricing-item.highlight {
  background-color: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-item.highlight .price {
  color: var(--secondary);
}

/* Banner */
.banner {
  background-color: var(--primary);
  color: var(--text-inverse);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-2);
}

@media (min-width: 768px) {
  .banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
  }
}

/* ==========================================================================
   Trainers Section
   ========================================================================== */
.trainer-img-wrapper {
  height: 280px;
  position: relative;
  background-color: var(--primary-hover);
}

.trainer-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: var(--primary);
  color: var(--text-inverse);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-1);
}

.trainer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}

.tag {
  background-color: var(--surface-alt);
  color: var(--text-main);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
}

.tag-highlight {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--secondary);
  font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-title {
  color: var(--text-inverse);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--secondary);
}

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

/* ==========================================================================
   Animations & Interactions
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  border: none;
  cursor: pointer;
}

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

.back-to-top:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
}

/* Enhance Card Hover */
.card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px -10px rgba(11, 37, 69, 0.15);
}

/* Trainer Image Hover Effect */
.trainer-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.trainer-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.trainer-img-wrapper .hover-img {
  opacity: 0;
  transform: scale(1.05);
}

.card:hover .trainer-img-wrapper .primary-img {
  opacity: 0;
}

.card:hover .trainer-img-wrapper .hover-img {
  opacity: 1;
  transform: scale(1);
}
