/* MERGED PAGES CSS: About, Gallery, Contact, Find Your Fit */

:root {
  --primary: #0851af;
  --primary-hover: #06408a;
  --secondary: #eb55a3;
  --dark: #0f172a;
  --gray-50: #f5f5f5;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-600: #475569;
}

body {
  margin: 0;
  background: var(--gray-50);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

/* HERO */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

.about-hero-text h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-text p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 40px;
}

.about-hero-image {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 20px 40px rgba(8, 81, 175, 0.15);
}

.about-hero-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 400px;
  border-radius: 24px;
}

.hero-stats-badge {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: var(--cream);
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-stats-badge .icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(235, 85, 163, 0.1);
  color: var(--secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stats-badge .icon-wrapper svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 2; fill: none; }

.hero-stats-badge h4 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: var(--dark);
  line-height: 1;
}

.hero-stats-badge p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-500);
  margin: 6px 0 0;
  font-weight: 500;
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

/* APPROACH GRID */
.approach-section {
  margin-bottom: 120px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.approach-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
  border: 1px solid rgba(8, 81, 175, 0.05);
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(8, 81, 175, 0.08);
}

.approach-card .icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 81, 175, 0.05);
  color: var(--primary);
}

.approach-card .icon-wrapper svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.approach-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 12px;
}

.approach-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
  border: 1px solid rgba(8, 81, 175, 0.05);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.team-photo {
  height: 260px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-info h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 6px;
}

.team-info p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
  margin: 0;
}

/* NEW CONTENT SECTIONS */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}
.content-block.reverse {
  direction: rtl;
}
.content-block.reverse > * {
  direction: ltr;
}
.content-block-text h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 20px;
  line-height: 1.3;
}
.content-block-text p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0 0 20px;
}
.content-block-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.content-block-image img {
  width: 100%;
  display: block;
}

/* MISSION CALLOUT */
.mission-callout {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  margin-bottom: 120px;
  box-shadow: 0 20px 40px rgba(8, 81, 175, 0.2);
}
.mission-callout .kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.mission-callout h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin: 0 auto 20px;
  max-width: 800px;
  line-height: 1.4;
}
.mission-callout p {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* CORE VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 120px;
}
.value-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(8, 81, 175, 0.05);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.value-card .icon-wrapper {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border-radius: 12px;
  background: rgba(235, 85, 163, 0.05);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card .icon-wrapper svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 10px;
}
.value-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .approach-grid { gap: 20px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-stats-badge { left: -20px; }
}

@media (max-width: 992px) {
  .about-hero { grid-template-columns: 1fr; text-align: center; gap: 40px; margin-bottom: 80px; }
  .hero-stats-badge { left: 50%; bottom: -40px; transform: translateX(-50%); width: max-content; }
  .about-hero-image { margin-left: 0 !important; width: 90%; margin: 0 auto; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .content-block { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .content-block.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .approach-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-hero-text h1 { font-size: 36px; }
  .about-container { padding-top: 120px; }
  .hero-stats-badge { padding: 16px 24px; }
  .hero-stats-badge h4 { font-size: 24px; }
  .mission-callout { padding: 40px 24px; }
  .mission-callout h2 { font-size: 28px; }
}


/* ================= GALLERY ================= */





.gallery-page {
  padding: 140px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-header h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
}

.gallery-header .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery-header p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--gray-600);
  margin: 0;
}

/* FILTERS */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: var(--gray-100);
  color: var(--dark);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(8, 81, 175, 0.2);
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  height: 250px;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hide {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
}

.gallery-overlay span {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .gallery-header h1 { font-size: 36px; }
  .gallery-page { padding-top: 120px; }
  .lightbox-close { right: 0; top: -50px; }
}


/* ================= CONTACT ================= */





.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 24px 80px; /* High top padding to prevent header overlap */
}

/* Typography */
.contact-container h1, 
.contact-container h2, 
.contact-container h3 { 
  font-family: var(--font-heading); 
  color: var(--dark); 
  margin: 0; 
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero */
.hero-section { text-align: center; margin-bottom: 72px; }
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(8, 81, 175, 0.1);
  color: var(--primary);
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-section h1 { font-size: 48px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.hero-section p { font-size: 18px; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* Info Cards */
.contact-cards { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 30px; 
  margin-bottom: 80px; 
}

.contact-card {
  background: var(--cream);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
  border: 1px solid rgba(255,255,255,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0; transition: opacity 0.3s ease;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1); }
.contact-card:hover::before { opacity: 1; }

.contact-card .card-icon {
  width: 64px; height: 64px; margin: 0 auto 24px;
  background: var(--gray-50); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 24px;
  transition: background 0.3s ease, color 0.3s ease;
}
.contact-card:hover .card-icon { background: var(--primary); color: #fff; }
.contact-card .card-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; }

.contact-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.contact-card p { font-size: 15px; line-height: 1.6; margin: 0; }
.contact-card a { color: var(--primary); font-weight: 500; text-decoration: none; transition: color 0.2s; display: inline-block; margin-top: 10px; }
.contact-card a:hover { color: var(--primary-hover); text-decoration: underline; }

/* Main Grid */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; margin-bottom: 80px; }

/* Form Container */
.form-wrapper {
  background: var(--cream);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-200);
}
.form-wrapper h2 { font-size: 28px; margin-bottom: 10px; }
.form-wrapper > p { margin-bottom: 32px; font-size: 15px; }

.input-group { margin-bottom: 24px; position: relative; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.input-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 8px;
}
.input-group input, .input-group select, .input-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.input-group textarea { height: 140px; resize: vertical; }
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  outline: none; background: var(--cream); border-color: var(--primary); box-shadow: 0 0 0 4px rgba(8, 81, 175, 0.1);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -10px var(--primary); }
.btn-submit:active { transform: translateY(0); }

.success-msg {
  display: none; margin-top: 20px; padding: 16px; border-radius: 12px;
  background: #dcfce7; color: #166534; font-weight: 500; font-size: 14px; text-align: center;
}
.success-msg.show { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* FAQ */
.faq-wrapper h2 { font-size: 28px; margin-bottom: 10px; }
.faq-wrapper > p { margin-bottom: 32px; font-size: 15px; }

.faq-item {
  background: var(--cream); border: 1px solid var(--gray-200); border-radius: 16px;
  margin-bottom: 16px; overflow: hidden; transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--primary); box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.faq-item.active { border-color: var(--primary); box-shadow: 0 8px 24px rgba(8, 81, 175, 0.08); }

.faq-header {
  padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: var(--dark);
  background: transparent; border: none; width: 100%; text-align: left;
}
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.active .faq-icon { background: var(--primary); color: #fff; transform: rotate(180deg); }

.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-content p { padding: 0 24px 24px; margin: 0; line-height: 1.6; font-size: 14px; }

/* Map */
.contact-map-container {
  border-radius: 24px; overflow: hidden; height: 450px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05); border: 1px solid var(--gray-200);
  position: relative;
}
.contact-map-container iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-section h1 { font-size: 36px; }
  .form-wrapper { padding: 32px; }
}
@media (max-width: 768px) {
  .input-row { grid-template-columns: 1fr; gap: 0; }
  .hero-section h1 { font-size: 32px; }
}


/* ================= FIND YOUR FIT ================= */





.fit-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

/* SECTION 1: HEADER */
.fit-header {
  text-align: center;
  padding: 40px 20px 60px;
}
.fit-header h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
}
.fit-header .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fit-header p {
  color: var(--gray-600);
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* SECTION 1: Banner (Option 3) */
.fit-banner {
  background: linear-gradient(135deg, var(--primary), #1e3a8a);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
  box-shadow: 0 20px 40px rgba(8, 81, 175, 0.2);
}

.fit-banner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin: 0 0 16px;
}

.fit-banner p {
  font-family: var(--font-body);
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.fit-banner-btn {
  display: inline-block;
  background: var(--cream);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fit-banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* SECTION 2: Compare Table (Option 2) */
.fit-table-section {
  margin-bottom: 80px;
}

.fit-section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
}

.table-wrapper {
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  overflow-x: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.compare-table th, .compare-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-family: var(--font-body);
}

.compare-table th {
  background: var(--gray-50);
  font-family: var(--font-heading);
  color: var(--dark);
  font-size: 16px;
  position: sticky;
  top: 0;
}

.compare-table td {
  color: var(--gray-600);
  font-size: 15px;
}

.country-cell {
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.country-cell img {
  width: 30px;
  height: 20px;
  object-fit: cover;
  border-radius: 4px;
}

/* SECTION 3: Interactive Quiz (Option 1) */
.quiz-section {
  background: var(--cream);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  max-width: 800px;
  margin: 0 auto;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.quiz-step.active {
  display: block;
}

.quiz-question {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 30px;
  text-align: center;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.quiz-btn {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  padding: 20px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
}

.quiz-btn i {
  color: var(--primary);
  font-size: 24px;
}

.quiz-btn:hover {
  border-color: var(--primary);
  background: rgba(8, 81, 175, 0.05);
}

.quiz-result {
  text-align: center;
}

.result-country {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--primary);
  margin: 20px 0;
}

.result-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 30px;
}

.retake-btn {
  background: none;
  border: none;
  color: var(--gray-500);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 20px;
  font-family: var(--font-body);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .fit-header h1 { font-size: 36px; }
  .fit-banner { padding: 30px 20px; }
  .quiz-section { padding: 30px 20px; }
}

/* SECTION 4: Flag Slider */
.flag-slider {
  padding: 20px 0;
  overflow: hidden;
}
.flag-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.flag-slider .swiper-slide {
  width: auto;
}
.flag-card {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  background: var(--cream);
  border-radius: 50px;
  padding: 10px 25px 10px 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.flag-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}
.flag-card img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
}
.flag-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  white-space: nowrap;
}


