/**
 * Mediox-style Layout
 * Inspired by Mediox Medical & Healthcare Template
 * https://pixydrops.com/mediox-html/
 */

/* Top Bar - Emergency/Contact strip */
.top-bar {
  background: linear-gradient(135deg, #f7c637 0%, #d4a52e 100%);
  color: #fff;
  padding: var(--spacing-sm) 0;
  font-size: 0.875rem;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: color 0.2s;
}

.top-bar__item:hover {
  color: #fff;
}

.top-bar__item i {
  font-size: 1rem;
  opacity: 0.9;
}

.top-bar__label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: var(--spacing-sm);
}

@media (max-width: 767px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
}

/* Header - Mediox style */
.site-header.mediox-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Section labels - "about us", "our services" */
.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  display: block;
}

/* About block - two columns */
.about-block {
  display: grid;
  gap: var(--spacing-2xl);
  align-items: center;
}

@media (min-width: 992px) {
  .about-block {
    grid-template-columns: 1fr 1fr;
  }
}

.about-block__content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.about-block__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.about-stat {
  text-align: center;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.06) 0%, rgba(0, 131, 143, 0.06) 100%);
  border-radius: var(--radius-lg);
}

.about-stat__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.about-stat__label {
  font-size: 0.875rem;
  color: var(--color-neutral);
}

/* About-modern - Modern & Stylish */
.about-modern {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-modern {
    padding: 5.5rem 0;
  }
}

.about-modern__wrap {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-modern__wrap {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.about-modern__media {
  position: relative;
}

.about-modern__img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(13, 71, 161, 0.2), 0 0 0 1px rgba(0,0,0,0.04);
}

.about-modern__img-card img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 360px;
  object-fit: cover;
}

.about-modern__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #f7c637;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.about-modern__badge i {
  font-size: 1rem;
  opacity: 0.9;
}

.about-modern__blob {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.08) 0%, rgba(0, 131, 143, 0.06) 100%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: -1;
}

@media (max-width: 991px) {
  .about-modern__blob {
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
  }
}

.about-modern__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #f7c637;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.08) 0%, rgba(0, 131, 143, 0.06) 100%);
  border-radius: 40px;
}

.about-modern__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.about-modern__title-accent {
  background: linear-gradient(135deg, #f7c637 0%, #f9d66d 50%, #00acc1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-modern__desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 2rem;
}

.about-modern__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about-modern__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(13, 71, 161, 0.08);
  transition: all 0.3s ease;
}

.about-modern__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 71, 161, 0.15);
  border-color: rgba(13, 71, 161, 0.2);
}

.about-modern__stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7c637 0%, #f9d66d 100%);
  color: #fff;
  border-radius: 14px;
  font-size: 1.125rem;
}

.about-modern__stat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.about-modern__stat:last-child .about-modern__stat-num {
  font-size: 1rem;
}

.about-modern__stat-text {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
}

.about-modern__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-button);
  border: none;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(21, 51, 77, 0.35);
  transition: all 0.3s ease;
}

.about-modern__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(21, 51, 77, 0.45);
  color: #fff;
  background: var(--color-button-hover);
}

.about-modern__btn i {
  font-size: 0.875rem;
  transition: transform 0.3s;
}

.about-modern__btn:hover i {
  transform: translateX(4px);
}

/* Stats Showcase - Awesome format */
.stats-showcase {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(247, 198, 55, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  pointer-events: none;
}

.stats-showcase .container {
  position: relative;
  z-index: 1;
}

.stats-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-showcase__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stats-showcase__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(247, 198, 55, 0.08);
  border: 1px solid rgba(247, 198, 55, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stats-showcase__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 198, 55, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.stats-showcase__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(247, 198, 55, 0.18);
  border-color: rgba(247, 198, 55, 0.2);
}

.stats-showcase__card:hover::before {
  opacity: 1;
}

.stats-showcase__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7c637 0%, #f9d66d 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.4s;
}

.stats-showcase__card:hover .stats-showcase__icon {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(247, 198, 55, 0.4);
}

.stats-showcase__number {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stats-showcase__suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f7c637;
  margin-left: 2px;
}

/* Keep number + suffix on same line */
.stats-showcase__card .stats-showcase__number,
.stats-showcase__card .stats-showcase__suffix {
  display: inline;
}

.stats-showcase__label {
  font-size: 0.9375rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Topics Section - Professional & Awesome */
.topics-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 4.5rem 0;
}

.topics-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.topics-section__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #f7c637;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.75rem;
}

.topics-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.topics-section__desc {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .topics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.topic-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 71, 161, 0.06);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f7c637 0%, #f9d66d 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(13, 71, 161, 0.12);
  border-color: rgba(13, 71, 161, 0.12);
}

.topic-card:hover::before {
  opacity: 1;
}

.topic-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.08) 0%, rgba(2, 136, 209, 0.06) 100%);
  border-radius: 18px;
  font-size: 1.75rem;
  color: #f7c637;
  transition: all 0.3s;
}

.topic-card:hover .topic-card__icon {
  background: linear-gradient(135deg, #f7c637 0%, #f9d66d 100%);
  color: #fff;
  transform: scale(1.05);
}

.topic-card__tag {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #f9d66d;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.topic-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Legacy service cards (fallback) */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--spacing-lg);
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(13, 71, 161, 0.15);
  border-color: rgba(13, 71, 161, 0.2);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.1) 0%, rgba(0, 131, 143, 0.1) 100%);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--color-primary);
}

.service-card__count {
  font-size: 0.875rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.service-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0;
}

/* Welcome banner - clean professional design */
.welcome-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2.5rem;
  box-shadow: 0 4px 30px rgba(247, 198, 55, 0.08);
  border: 1px solid rgba(247, 198, 55, 0.12);
  position: relative;
  overflow: hidden;
}

.welcome-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #f7c637 0%, #f9d66d 100%);
  border-radius: 4px 0 0 4px;
}

.welcome-banner__content {
  flex: 1;
  min-width: 280px;
}

.welcome-banner__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #f7c637;
  margin-bottom: 0.5rem;
}

.welcome-banner__title {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.welcome-banner__desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 480px;
}

.welcome-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-button);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(21, 51, 77, 0.3);
}

.welcome-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(21, 51, 77, 0.4);
  color: #fff !important;
  background: var(--color-button-hover);
}

.welcome-banner__media {
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(247, 198, 55, 0.15);
  border: 2px solid rgba(247, 198, 55, 0.15);
}

.welcome-banner__media img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 200px;
  max-width: 280px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Experts Section - Our Expert Team - professional card style */
.experts-section {
  padding: 5rem 0;
}

.experts-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.experts-section__header .section-label {
  margin-bottom: 0.5rem;
}

.experts-section__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.75rem;
}

.experts-section__header p {
  font-size: 1.0625rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

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

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

.expert-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(247, 198, 55, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(247, 198, 55, 0.15);
  border-color: rgba(247, 198, 55, 0.2);
}

.expert-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.expert-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.expert-card:hover .expert-card__media img {
  transform: scale(1.08);
}

.expert-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(247, 198, 55, 0.08) 0%, rgba(249, 214, 109, 0.06) 100%);
  font-size: 4rem;
  color: #f7c637;
  opacity: 0.6;
}

.expert-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(247, 198, 55, 0.95) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.expert-card:hover .expert-card__overlay {
  opacity: 1;
}

.expert-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: #f7c637;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 50px;
  text-decoration: none;
  transform: translateY(10px);
  transition: all 0.3s;
}

.expert-card:hover .expert-card__link {
  transform: translateY(0);
}

.expert-card__link:hover {
  background: #f7c637;
  color: #fff;
}

.expert-card__body {
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.expert-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.expert-card__title {
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.experts-section__cta {
  text-align: center;
  margin-top: 3rem;
}

.experts-section__empty {
  text-align: center;
  color: #64748b;
}

/* Why choose - 3 cards */
.why-choose-grid {
  display: grid;
  gap: var(--spacing-lg);
}

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

.why-choose-card {
  background: #fff;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.why-choose-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.why-choose-card h3 i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.why-choose-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-neutral);
}

/* Skills/Progress bars */
.skills-section {
  display: grid;
  gap: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .skills-section {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.skill-item {
  margin-bottom: var(--spacing-lg);
}

.skill-item__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  font-size: 0.9375rem;
}

.skill-item__bar {
  height: 8px;
  background: var(--color-neutral-light);
  border-radius: 50px;
  overflow: hidden;
}

.skill-item__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 50px;
  transition: width 1s ease;
}

/* Process steps */
.process-steps {
  display: grid;
  gap: var(--spacing-lg);
}

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

.process-step {
  text-align: center;
  padding: var(--spacing-xl);
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 2rem;
  right: -20px;
  width: 40px;
  height: 2px;
  background: var(--color-neutral-light);
  display: none;
}

@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    display: block;
  }
}

.process-step__num {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.125rem;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: var(--spacing-sm);
}

.process-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-neutral);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-neutral-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
}

.faq-item.is-open .faq-item__header {
  background: rgba(13, 71, 161, 0.05);
  border-bottom-color: transparent;
}

.faq-item__header {
  padding: var(--spacing-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background 0.2s;
  border-bottom: 1px solid transparent;
}

.faq-item__header:hover {
  background: rgba(13, 71, 161, 0.03);
}

.faq-item__header i {
  transition: transform 0.3s;
  color: var(--color-primary);
}

.faq-item.is-open .faq-item__header i {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-item__body {
  max-height: 300px;
}

.faq-item__body-inner {
  padding: 0 0 var(--spacing-lg);
  color: var(--color-neutral);
  font-size: 0.9375rem;
}

/* Testimonial card */
.testimonial-card {
  background: #fff;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.testimonial-card__quote {
  font-size: 1rem;
  color: var(--color-neutral);
  margin-bottom: var(--spacing-lg);
  font-style: italic;
  line-height: 1.7;
}

.testimonial-card__author {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--spacing-xs);
}

.testimonial-card__role {
  font-size: 0.875rem;
  color: var(--color-accent);
}

/* Footer - Mediox style with background image + overlay */
.footer-mediox {
  position: relative;
  background: #0f172a;
  padding: 4rem 0 0;
  overflow: hidden;
  margin-top: auto;
}

/* Background image with dark overlay - text remains visible */
.footer-mediox::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: 
    linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.96) 100%),
    url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=1920');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.footer-mediox__pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(247, 198, 55, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(247, 198, 55, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.footer-mediox .container,
.footer-mediox__pattern {
  position: relative;
  z-index: 1;
}

.footer-mediox__main {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

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

@media (min-width: 992px) {
  .footer-mediox__main {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
  }
}

.footer-mediox__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-mediox__logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #f9d66d;
  font-size: 1rem;
  font-weight: 300;
  border: 1px solid rgba(249, 214, 109, 0.5);
  border-radius: 4px;
  margin-bottom: 8px;
}

.footer-mediox__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-mediox__logo-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.footer-mediox__desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 320px;
}

.footer-mediox__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-button);
  border: 2px solid var(--color-button);
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.footer-mediox__cta:hover {
  background: var(--color-button-hover);
  border-color: var(--color-button-hover);
  color: #fff;
}

.footer-mediox__social {
  display: flex;
  gap: 12px;
}

.footer-mediox__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  transition: all 0.3s;
}

.footer-mediox__social a:hover {
  color: #f9d66d;
}

.footer-mediox__heading {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f9d66d;
  display: inline-block;
}

.footer-mediox__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-mediox__col li {
  margin-bottom: 0.5rem;
}

.footer-mediox__col a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-mediox__col a:hover {
  color: #f9d66d;
}

.footer-mediox__news-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-mediox__news-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer-mediox__news-meta {
  font-size: 0.75rem;
  color: #f9d66d;
  display: block;
  margin-bottom: 4px;
}

.footer-mediox__news-meta i {
  margin-right: 4px;
}

.footer-mediox__news-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff !important;
  line-height: 1.35;
}

.footer-mediox__news-title:hover {
  color: #f9d66d !important;
}

/* Footer Contact Details (replaces Latest Updates) */
.footer-mediox__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-mediox__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.footer-mediox__contact-list li:last-child {
  margin-bottom: 0;
}

.footer-mediox__contact-list i {
  color: #f9d66d;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-mediox__contact-list a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-mediox__contact-list a:hover {
  color: #f9d66d;
}

/* Contact bar - gradient horizontal bar */
.footer-mediox__contact-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(247, 198, 55, 0.25) 0%, rgba(212, 165, 46, 0.4) 100%);
  border-radius: 16px 16px 0 0;
  margin-left: calc(-1 * var(--spacing-md));
  margin-right: calc(-1 * var(--spacing-md));
}

@media (min-width: 576px) {
  .footer-mediox__contact-bar {
    margin-left: calc(-1 * var(--spacing-lg));
    margin-right: calc(-1 * var(--spacing-lg));
  }
}

@media (min-width: 768px) {
  .footer-mediox__contact-bar {
    margin-left: calc(-1 * var(--spacing-xl));
    margin-right: calc(-1 * var(--spacing-xl));
  }
}

@media (min-width: 768px) {
  .footer-mediox__contact-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 2.5rem;
  }
}

.footer-mediox__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-mediox__contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 198, 55, 0.9);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-mediox__contact-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
}

.footer-mediox__contact-value {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.footer-mediox__contact-value:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-mediox__bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.footer-mediox__bottom p {
  margin: 0;
}

/* Back to top - ROUND shape, modern style */
.footer-mediox__back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  background: #0f172a;
  color: #f9d66d;
  border: 2px solid #f9d66d;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer-mediox__back-top:hover {
  background: #f9d66d;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 214, 109, 0.35);
}

.footer-mediox__back-top i {
  font-size: 1.25rem;
}
