/* ==============================================
   IDP Landing Pages — Shared Stylesheet
   Covers: Home (cn-landing) + Country pages
   ============================================== */

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans SC", "Microsoft JhengHei", "Inter", "Farro", sans-serif;
  color: #333;
  background: #ffffff;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.bg__light__gray{ background-color: #f2f2f2; }

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 1px 2px 4px rgba(102,102,102,0.2);
}
.nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 40px;
  height: 76px;
}
.nav__left { display: flex; align-items: center; gap: 8px; }
.nav__logo-img { height: 31px; width: auto; object-fit: contain; }
.nav__tabs { display: flex; gap: 0; }
.nav__tab,
.nav__tab-trigger {
  padding: 0px 16px;
  font-size: 18px;
  color: #333;
  white-space: nowrap;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__tab:hover,
.nav__tab-trigger:hover { color: #0874e7; }
.nav__tab--active { color: #0874e7; font-weight: 600; }
.nav__dropdown {
  position: relative;
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
  margin-top: 0;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  display: flex;
}
.nav__dropdown-link {
  display: block;
  padding: 12px 18px;
  font-size: 16px;
  color: #333;
  transition: background 0.2s, color 0.2s;
}
.nav__dropdown-link:hover {
  background: #f2f7ff;
  color: #0874e7;
}
.nav__right { display: flex; align-items: center; }
.nav__phone { font-size: 16px; color: #333; white-space: nowrap; }
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: #333;
}
.nav__mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 76px);
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 0 0 20px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.1);
  overflow-y: auto;
}
.nav__mobile-menu.open {
  transform: translateX(0);
}
.nav__mobile-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav__mobile-tab,
.nav__mobile-tab-trigger {
  padding: 18px 20px;
  font-size: 17px;
  color: #333;
  background: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  display: block;
  width: 100%;
  text-decoration: none;
}
.nav__mobile-tab:hover,
.nav__mobile-tab-trigger:hover {
  color: #0874e7;
  background: #f7f9ff;
}
.nav__mobile-tab--active {
  color: #0874e7;
  font-weight: 600;
}
.nav__mobile-dropdown {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.nav__mobile-tab-trigger {
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.nav__mobile-tab-trigger .nav__mobile-chevron {
  font-size: 20px;
  transition: transform 0.25s ease;
  color: #888;
  flex-shrink: 0;
}
.nav__mobile-dropdown.open .nav__mobile-chevron {
  transform: rotate(180deg);
}
.nav__mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  background: #f7f9ff;
  border-top: 1px solid #e8eef8;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.nav__mobile-dropdown.open .nav__mobile-dropdown-menu {
  display: flex;
  max-height: 500px;
}
.nav__mobile-dropdown-link {
  padding: 14px 20px 14px 36px;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #edf1f9;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  display: block;
}
.nav__mobile-dropdown-link:last-child {
  border-bottom: none;
}
.nav__mobile-dropdown-link:hover {
  color: #0874e7;
  background: #eaf1ff;
}
.nav__mobile-contact {
  margin-top: auto;
  padding: 20px 20px 0;
  border-top: 1px solid #e0e0e0;
}
.nav__mobile-contact .nav__phone {
  font-size: 16px;
  color: #333;
}

/* ===== Hero Banner ===== */
.hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.hero--country { height: 300px; }
.hero__bg { 
  position: absolute; 
  inset: 0;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.homepage-hero-bg {
  background: url("/images/banners/home_banner.png") top right/cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 112px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.hero__content--country {
  padding: 50px 112px 60px;
  gap: 20px;
}
.hero__title {
  font-size: 40px;
  font-weight: bold;
  line-height: 52px;
  color: #333;
  letter-spacing: 0.048px;
}
.hero--country .hero__title { color: #fff; }
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0874e7;
  color: #fff;
  font-size: 20px;
  padding: 12px 28px;
  border-radius: 108px;
  line-height: 30px;
  transition: background 0.2s;
}
.hero__cta:hover { background: #065ec0; }

/* ===== Breadcrumb ===== */
.breadcrumb,
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
/* Light breadcrumb (on dark/colored backgrounds) */
.breadcrumb { color: rgba(255,255,255,0.8); gap: 8px; }
.breadcrumb a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb__current { color: #fff; }
/* Dark breadcrumb (on light backgrounds) */
.page-breadcrumb { color: #999; }
.page-breadcrumb a { color: #999; transition: color 0.2s; }
.page-breadcrumb a:hover { color: #333; }
.page-breadcrumb__current { color: #333; }
/* Light variant for IELTS breadcrumb */
.page-breadcrumb--light { color: rgba(255,255,255,0.8); }
.page-breadcrumb--light a { color: rgba(255,255,255,0.8); }
.page-breadcrumb--light a:hover { color: #fff; }
.page-breadcrumb--light .page-breadcrumb__current { color: #fff; }

/* ===== Info Cards (Home page) ===== */
.info-cards {
  padding: 56px 0;
}
.info-cards__inner { 
  display: flex; 
  flex-direction: column;
  gap: 32px; 
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
}
.info-cards__grid {
  display: flex;
  gap: 32px;
}
.info-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(102,102,102,0.3);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-card__icon { font-size: 36px; color: #333; }
.info-card__title { font-size: 20px; font-weight: bold; color: #333; line-height: 31.2px; }
.info-card__desc { font-size: 16px; color: #333f48; line-height: 24px; }
.info-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #28558c;
}
.info-card__link .info-card__link-text { text-decoration: underline; }
.info-card__link .material-icons { font-size: 20px; }

/* ===== Section Title ===== */
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  line-height: 41.6px;
}
.section-title--light h2 { color: #fff; }
.section-title__bar {
  width: 24px;
  height: 6px;
  background: #e07400;
  border-radius: 6px;
  margin-top: 4px;
}

/* ===== Destinations Carousel (Home page) ===== */
.destinations {
  background: #fff;
  padding: 80px 0;
}
.destinations__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.destinations__carousel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}
.destinations__carousel {
  display: flex;
  gap: 38px;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  touch-action: none;
  scroll-behavior: smooth;
}
.destinations__carousel::-webkit-scrollbar { display: none; }
.destination-card {
  flex: 0 0 380px;
  height: 300px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  scroll-snap-align: start;
  cursor: grab;
  transition: transform 0.3s;
  text-decoration: none;
  pointer-events: auto;
}
.destination-card:active {
  cursor: grabbing;
}
.destination-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  transition: background 0.3s;
}
.destination-card:hover { transform: scale(1.02); }
.destination-card:hover::after { background: rgba(0,0,0,0.15); }
.destination-card__label {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  letter-spacing: -0.64px;
}
.destinations__nav { display: flex; gap: 12px; }

/* ===== Carousel Buttons (shared) ===== */
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-btn:hover { background: rgba(0,0,0,0.05); border-color: #999; }
.carousel-btn--prev { opacity: 1; }
.carousel-btn .material-icons { font-size: 24px; color: #333; }

/* ===== Destinations Carousel Grab (Home page) ===== */
.destinations__carousel {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  scroll-snap-type: x mandatory; 
  
  /* 關鍵新增：允許上下捲動網頁，但左右滑動交由 JS 處理 */
  touch-action: pan-y; 
}
/* 拖曳時關閉平滑過渡與吸附，確保跟隨手指的反應即時 */
.destinations__carousel.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none; 
  cursor: grabbing;
}

/* ===== Student Stories (Home page) ===== */
.stories {
  background: #333f48;
  padding: 80px 0;
}
.stories__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.stories__grid { display: flex; gap: 38px; }
.story-card { flex: 1; display: flex; flex-direction: column; gap: 28px; }
.story-card__media {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.story-card__media img, .story-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}
.story-card__media { cursor: pointer; }
.story-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.story-card__play .material-icons {
  font-size: 52px;
  color: #fff;
  text-shadow: 0 8px 18px rgba(0,0,0,0.25);
}
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
}
.video-modal.open {
  display: flex;
}
.video-modal__content {
  position: relative;
  width: min(960px, 100%);
  max-height: 90vh;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
}
.video-modal__player {
  width: 100%;
  height: min(72vh, 580px);
  background: #000;
}
.video-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal__close .material-icons {
  font-size: 20px;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
}
.story-card__duration {
  position: absolute;
  bottom: 24px;
  right: 20px;
  z-index: 1;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.story-card__title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 31.2px;
  letter-spacing: 0.0288px;
}

/* ===== Universities Grid (Home page) ===== */
.universities {
  background: #fff;
  padding: 80px 0;
}
.universities__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.universities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 41px;
}
.uni-img {
  width: 100%;
  height: 138px;
  object-fit: contain;
  border-radius: 16px;
}

/* ===== Country Intro (Country pages) ===== */
.country-intro {
  background: #fff;
  padding: 49px 0 32px 0;
}
.country-intro__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.country-intro__text { font-size: 16px; color: #333f48; line-height: 26px; }

/* ===== Destination Grid (Country pages) ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  border-bottom: 1px solid #949494;
}
.dest-grid__item {
  /* position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 160px; */
  display: block;
  cursor: pointer;
  padding-bottom: 20px;
  text-align: center;
}
/* .dest-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.dest-grid__item:hover img { transform: scale(1.05); }
.dest-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s;
} */
.dest-grid__item:hover::after { background: rgba(0,0,0,0.15); }
.dest-grid__item--active::after { background: rgba(0,0,0,0.25) !important; }
.dest-grid__item--active { 
  /* outline: 3px solid #fff; 
  outline-offset: -3px;  */
  border-bottom: 2px #28558C solid;
}
.dest-grid__item--active .dest-grid__label { color: #28558C; font-weight: bold;}
.dest-grid__label {
  /* position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1; */
  font-size: 20px;
  font-weight: normal;
  color: #333;
}

/* ===== Country Detail (Country pages) ===== */
.country-detail {
  background: #fff;
  padding: 0 0 60px 0;
}
.country-detail__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.country-detail__title { font-size: 28px; font-weight: bold; color: #333; line-height: 1.4; }
.country-detail__body { font-size: 16px; color: #333f48; line-height: 28px; }
.country-detail__body p { margin-bottom: 16px; }
.country-detail__body strong { color: #333; }
.country-detail__body ul { margin: 8px 0 16px 20px; list-style: disc; }
.country-detail__body li { margin-bottom: 6px; line-height: 28px; }

/* ===== Partner Universities (Country pages) ===== */
.partner-unis {
  background: #f2f2f2;
  padding: 80px 0;
}
.partner-unis__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.partner-unis__carousel { display: flex; flex-direction: column; gap: 32px; }
.partner-unis__wrapper { }
.partner-unis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.partner-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.2s;
}
.partner-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.partner-card__logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.partner-card__info { display: flex; flex-direction: column; gap: 2px; }
.partner-card__cn { font-size: 16px; font-weight: bold; color: #333; }
.partner-card__en { font-size: 13px; color: #666; line-height: 1.3; }

/* Partner Nav */
.partner-unis__nav { display: flex; align-items: center; justify-content: space-between; }
.partner-unis__dots { display: flex; gap: 8px; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
}
.dot--active { background: #333; }
.partner-unis__arrows { display: flex; gap: 12px; }

/* ===== Footer ===== */
.footer {
  background: #333;
  padding: 60px 0;
}
.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__text { color: #fff; font-size: 16px; line-height: 24px; }
.footer__text p { margin-bottom: 0; }
.footer__links { display: flex; align-items: center; gap: 16px; }
.footer__links a { color: #fff; font-size: 14px; text-decoration: underline; line-height: 21px; }
.footer__divider { width: 1px; height: 14px; background: #fff; }

/* ==============================================
   Shared Page Patterns
   ============================================== */

/* Shared page hero (Contact, About, Business) */
.page-hero {
  /* background: #f2f2f2; */
  padding: 24px 112px 48px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.page-hero--white { background: #fff; }
.page-hero__inner { display: flex; flex-direction: column; gap: 16px; }
.page-hero__title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  padding-top: 50px;
}
.page-hero__images {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  height: 100%;
}
.page-hero__img-block {
  width: 120px;
  height: 160px;
  background: linear-gradient(135deg, #f9a825, #ef6c00);
  border-radius: 0 0 0 24px;
}
.page-hero__photo {
  width: 200px;
  height: 100%;
  object-fit: cover;
}

/* Shared section container */
.page-section { background: #fff; padding: 60px 0; }
.page-section--flush { padding: 0 0 60px; }
.page-section--top { padding: 60px 0 0; }
.page-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Shared body text */
.body-text {
  font-size: 16px;
  color: #333f48;
  line-height: 28px;
}

/* Shared styled list */
.styled-list {
  list-style: disc;
  margin-left: 20px;
  font-size: 16px;
  color: #333f48;
  line-height: 28px;
}
.styled-list li { margin-bottom: 6px; }
.styled-list__label { font-weight: bold; color: #333; }

/* Shared icon row (icon + text) */
.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #333f48;
  line-height: 24px;
}
.icon-row--top { align-items: flex-start; }
.icon-row .material-icons { font-size: 22px; color: #555; flex-shrink: 0; }

/* ==============================================
   Contact Page (contact-*)
   ============================================== */

/* Contact-specific hero spacing */
.contact-hero { 
  min-height: 300px;
  background: #f2f2f2 url("/images/banners/contactus_banner.png") right/cover no-repeat;
}
.contact-hero .page-hero__inner { gap: 24px; }

/* Contact Section */
.contact-section { background: #fff; padding: 60px 0; }
.contact-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Contact Main (text + image) */
.contact-main { display: flex; gap: 48px; align-items: flex-start; }
.contact-main__left { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.contact-main__desc { font-size: 16px; color: #333f48; line-height: 28px; }
.contact-main__right { flex: 0 0 340px; }
.contact-main__right img { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; }

/* Contact Info */
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-info__title { font-size: 18px; font-weight: bold; color: #333; }

/* Offices */
.contact-offices { border-top: 1px solid #eee; }
.offices-grid { display: flex; flex-direction: column; gap: 32px; }
.office-card { display: flex; flex-direction: column; gap: 12px; }
.office-card__title { font-size: 20px; font-weight: bold; color: #333; }

/* ==============================================
   About Page (about-*)
   ============================================== */

/* About-specific hero */
.about-hero { 
  min-height: 300px;
  background: #f2f2f2 url("/images/banners/aboutus_banner.png") right/cover no-repeat;
}

/* About Section */
.about-section { background: #fff; padding: 60px 0 0; }
.about-section:last-of-type { padding-bottom: 60px; }
.about-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-sub { font-size: 20px; font-weight: bold; color: #333; margin-top: 25px; }

/* About Row (text + image side by side) */
.about-row { display: flex; gap: 40px; align-items: flex-start; }
.about-row__text { flex: 1; font-size: 16px; color: #333f48; line-height: 28px; }
.about-row__text p { margin-bottom: 12px; }
.about-row__image { flex: 0 0 320px; }
.about-row__image img { width: 100%; height: 400px; object-fit: cover; border-radius: 12px; }

/* About Video */
.about-video-section { background: #fff; }
.about-video {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  /* aspect-ratio: 16 / 9; */
  background: #1a1a2e;
}
.about-video__thumb { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.about-video__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}
.about-video__controls {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.about-video__time { font-size: 14px; }
.about-video__right-controls { display: flex; gap: 16px; }
.about-video__right-controls .material-icons { font-size: 22px; cursor: pointer; opacity: 0.8; }
.about-video__right-controls .material-icons:hover { opacity: 1; }

/* About Timeline */
.about-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: #333f48;
  line-height: 26px;
  padding-left: 0;
}
.about-timeline li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-left: 16px;
  position: relative;
}
.about-timeline li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #e07400;
  font-weight: bold;
}
.about-timeline__year {
  font-weight: bold;
  color: #333;
  flex-shrink: 0;
  min-width: 48px;
}

/* About Reasons */
.about-reasons { padding-bottom: 60px; }
.about-reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-reason-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.about-reason-card:hover { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.about-reason-card__icon { font-size: 36px; color: #e07400; }
.about-reason-card__title { font-size: 20px; font-weight: bold; color: #333; }
.about-reason-card__desc { font-size: 16px; color: #666; line-height: 22px; }

/* ==============================================
   IELTS Page (ielts-*)
   ============================================== */

/* IELTS Hero */
.ielts-hero {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}
.ielts-hero__bg {
  position: absolute;
  inset: 0;
  background: url("/images/banners/ielts_banner.png") top right/cover no-repeat;
  /* background: linear-gradient(135deg, #2196f3 0%, #1976d2 40%, #1565c0 100%); */
}
/* .ielts-hero__bg::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,152,0,0.7) 0%, rgba(255,152,0,0.3) 40%, transparent 70%);
  border-radius: 50%;
}
.ielts-hero__bg::before {
  content: '';
  position: absolute;
  right: 80px;
  top: -20px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(244,67,54,0.6) 0%, rgba(244,67,54,0.2) 40%, transparent 70%);
  border-radius: 50%;
} */
.ielts-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 112px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.ielts-hero__title {
  font-family: 'Farro';
  font-size: 40px;
  font-weight: bold;
  color: #333333;
  line-height: 1.3;
}
.ielts-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0874e7;
  color: #fff;
  font-size: 16px;
  padding: 12px 32px;
  border-radius: 108px;
  transition: background 0.2s;
}
.ielts-hero__cta:hover { background: #0a3a80; }

/* IELTS Content */
.ielts-content { background: #fff; padding: 60px 0 80px; }
.ielts-content__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
}
.ielts-content__body { display: flex; flex-direction: column; gap: 48px; }

/* IELTS Block */
.ielts-block { display: flex; flex-direction: column; gap: 16px; }
.ielts-block__title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}
.ielts-block__subtitle {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}
.ielts-block__row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.ielts-block__text {
  flex: 1;
  font-size: 16px;
  color: #333f48;
  line-height: 28px;
}
.ielts-block__image {
  flex: 0 0 380px;
}
.ielts-block__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
}
.ielts-list{
  padding-left: 20px;
  line-height: 35px;
}

/* IELTS CTA Button */
.ielts-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0874e7;
  color: #fff;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 8px;
}
.ielts-cta-btn:hover { background: #1565c0; }

/* ==============================================
   Business Cooperation Page (biz-*)
   ============================================== */

/* Biz Hero */
.biz-hero {
  background: #fff;
  padding: 20px 112px 48px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.biz-hero__inner { display: flex; flex-direction: column; gap: 16px; }
.biz-hero__title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}
.biz-hero__qr {
  position: absolute;
  top: 20px;
  right: 112px;
}
.biz-hero__qr img { width: 120px; height: 120px; border-radius: 8px; }

/* Shared biz section */
.biz-section { background: #fff; padding: 0 0 60px; }
.biz-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Biz Partners (who we seek) */
.biz-partners__label { font-weight: bold; color: #333; }

/* Biz Advantages */
.biz-advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.biz-adv-card {
  background: #f9a825;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  transition: transform 0.2s;
}
.biz-adv-card:hover { transform: translateY(-2px); }
.biz-adv-card__icon {
  font-size: 36px;
  color: #fff;
  background: rgba(255,255,255,0.25);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.biz-adv-card__title { font-size: 20px; font-weight: bold; }
.biz-adv-card__desc { font-size: 14px; line-height: 22px; opacity: 0.95; }

/* Biz Services */
.biz-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 40px;
}
.biz-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #333;
  padding: 8px 0;
}
.biz-service-item__icon { font-size: 24px; color: #555; }

/* Biz Contacts */
.biz-contacts__notes {
  list-style: disc;
  margin-left: 20px;
  font-size: 14px;
  color: #666;
  line-height: 26px;
}
.biz-contacts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 60px;
}
.biz-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
}
.biz-contact-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.biz-contact-card__qr {
  width: 72px;
  height: 72px;
  border-radius: 4px;
  flex-shrink: 0;
}
.biz-contact-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.biz-contact-card__region { font-size: 14px; color: #333; }
.biz-contact-card__name { font-size: 14px; color: #666; }

/* ==============================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================== */
@media (max-width: 1024px) {
  .nav__inner { padding: 8px 24px; }
  .nav__tab { font-size: 16px; padding: 16px 12px; }
  .nav__phone { font-size: 16px; }

  /* Hero */
  .hero { height: 450px; }
  .hero--country { height: 350px; }
  .hero__content { padding: 100px 40px 60px; }
  .hero__content--country { padding: 60px 40px 40px; }
  .hero__title { font-size: 32px; line-height: 42px; }

  /* Home: Info Cards */
  .info-cards { padding: 40px; }
  .info-cards__inner { gap: 20px; padding: 0; }

  /* Home: Destinations */
  .destinations__inner { padding: 0 40px; }
  .destination-card { flex: 0 0 300px; height: 240px; }

  /* Home: Stories */
  .stories__inner { padding: 0 40px; }
  .stories__grid { gap: 24px; }
  .story-card__media { height: 240px; }
  .story-card__title { font-size: 20px; }

  /* Home: Universities */
  .universities__inner { padding: 0 40px; }
  .universities__grid { gap: 20px 24px; }
  .uni-img { height: 110px; }

  /* Country: Intro + Grid */
  .country-intro__inner { padding: 0 40px; }
  .dest-grid { grid-template-columns: repeat(7, 1fr); }

  /* Country: Detail */
  .country-detail__inner { padding: 0 40px; }

  /* Country: Partners */
  .partner-unis__inner { padding: 0 40px; }
  .partner-unis__grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact page */
  .contact-section__inner { padding: 0 40px; }
  .contact-main__right { flex: 0 0 280px; }
  .contact-main__right img { height: 240px; }

  /* About page */
  .about-section__inner { padding: 0 40px; }
  .about-row__image { flex: 0 0 260px; }
  .about-row__image img { height: 320px; }
  .about-reasons__grid { grid-template-columns: repeat(2, 1fr); }

  /* Shared page hero/section */
  .page-hero { padding: 20px 40px 40px; }
  .page-section__inner { padding: 0 40px; }

  /* IELTS page */
  .ielts-hero__content { padding: 20px 16px 0px; }
  .ielts-hero__title { font-size: 32px; }
  .ielts-content__inner { padding: 0 40px; }
  .ielts-block__image { flex: 0 0 300px; }
  .ielts-block__image img { height: 200px; }

  /* Business page */
  .biz-hero { padding: 20px 40px 40px; }
  .biz-hero__qr { right: 40px; }
  .biz-hero__title { font-size: 30px; }
  .biz-section__inner { padding: 0 40px; }
  .biz-advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .biz-contacts__grid { gap: 24px 40px; }

  /* Footer */
  .footer__inner { padding: 0 40px; }
}

/* ==============================================
   RESPONSIVE — Mobile (≤767px)
   ============================================== */
@media (max-width: 767px) {
  /* Nav */
  .nav__inner { padding: 8px 16px; height: 60px; }
  .nav__tabs {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .nav__tabs--open { display: flex; }
  .nav__tabs .nav__tab { padding: 14px 20px; border-bottom: 1px solid #eee; }
  .nav__phone { display: none; }
  .nav__hamburger { display: block; }

  /* Hero */
  .hero { height: 380px; }
  .hero--country { height: 300px; }
  .hero__content { padding: 80px 16px 40px; gap: 20px; }
  .hero__content--country { padding: 50px 16px 30px; gap: 14px; }
  .hero__title { font-size: 26px; line-height: 36px; }
  .hero__cta { font-size: 16px; padding: 10px 24px; }
  .breadcrumb { font-size: 12px; }

  /* Section Title */
  .section-title h2 { font-size: 24px; line-height: 32px; }

  /* Home: Info Cards */
  .info-cards__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
  .info-cards { padding: 32px; }
  .info-cards__inner { flex-direction: column; gap: 16px; }
  .info-card__title { font-size: 20px; }
  .info-card__desc { font-size: 14px; }

  /* Home: Destinations */
  .destinations { padding: 48px 0; }
  .destinations__inner { padding: 0 16px; gap: 16px; }
  .destination-card { flex: 0 0 260px; height: 200px; }
  .destination-card__label { font-size: 24px; }

  /* Home: Stories */
  .stories { padding: 48px 0; }
  .stories__inner { padding: 0 16px; gap: 32px; }
  .stories__grid { flex-direction: column; gap: 32px; }
  .story-card__media { height: 220px; }
  .story-card__title { font-size: 18px; line-height: 26px; }

  /* Home: Universities */
  .universities { padding: 48px 0; }
  .universities__inner { padding: 0 16px; }
  .universities__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .uni-img { height: 100px; }

  /* Country: Intro + Grid */
  .country-intro { padding: 40px 0 20px 0; }
  .country-intro__inner { padding: 0 16px; gap: 24px; }
  .country-intro__text { font-size: 14px; line-height: 24px; }
  .dest-grid { grid-template-columns: repeat(7, 1fr); gap: 12px; width: 100%; overflow-x: auto;}
  .dest-grid__item { white-space: nowrap; }
  .dest-grid__label { font-size: 16px; }

  /* Country: Detail */
  .country-detail { padding: 20px 0 40px 0; }
  .country-detail__inner { padding: 0 16px; }
  .country-detail__title { font-size: 24px; }
  .country-detail__body { font-size: 16px; line-height: 24px; }

  /* Country: Partners */
  .partner-unis { padding: 48px 0; }
  .partner-unis__inner { padding: 0 16px; }
  .partner-unis__grid { grid-template-columns: 1fr; gap: 12px; }
  .partner-card { padding: 16px; }

  /* Contact page */
  .contact-section { padding: 40px 0; }
  .contact-section__inner { padding: 0 16px; }
  .contact-main { flex-direction: column; gap: 24px; }
  .contact-main__right { flex: none; width: 100%; }
  .contact-main__right img { height: 200px; }

  /* About page */
  .about-section { padding: 40px 0 0; }
  .about-section__inner { padding: 0 16px; }
  .about-row { flex-direction: column; gap: 20px; }
  .about-row__image { flex: none; width: 100%; }
  .about-row__image img { height: 240px; }
  .about-row__text { font-size: 14px; line-height: 24px; }
  .about-reasons__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-reason-card { padding: 20px 16px; }
  .about-timeline { font-size: 14px; }

  /* Shared page hero/section */
  .page-hero { padding: 16px 16px 32px; min-height: auto; }
  .page-hero__title { font-size: 24px; padding-top: 10px;}
  .page-hero__images { display: none; }
  .page-section__inner { padding: 0 16px; }
  .body-text { font-size: 14px; line-height: 24px; }
  .styled-list { font-size: 14px; line-height: 24px; }
  .icon-row { font-size: 14px; }

  /* IELTS page */
  .ielts-hero__title { font-size: 24px; }
  .ielts-content { padding: 40px 0 48px; }
  .ielts-content__inner { padding: 0 16px; }
  .ielts-content__body { gap: 32px; }
  .ielts-block__title { font-size: 22px; }
  .ielts-block__row { flex-direction: column; gap: 20px; }
  .ielts-block__image { flex: none; width: 100%; }
  .ielts-block__image img { height: 200px; }
  .ielts-block__text { font-size: 14px; line-height: 24px; }
  .ielts-list { font-size: 14px; line-height: 24px; }
  .ielts-cta-btn { font-size: 14px; padding: 12px 24px; width: 100%; justify-content: center; }

  /* Business page */
  .biz-hero__title { font-size: 24px; }
  .biz-hero__qr { position: static; margin-top: 16px; }
  .biz-hero__qr img { width: 100px; height: 100px; }
  .biz-section { padding: 0 0 40px; }
  .biz-section__inner { padding: 0 16px; }
  .biz-advantages__grid { grid-template-columns: 1fr; }
  .biz-services__grid { grid-template-columns: 1fr; }
  .biz-contacts__grid { grid-template-columns: 1fr; gap: 24px; }
  .biz-contact-card__photo { width: 60px; height: 60px; }
  .biz-contact-card__qr { width: 60px; height: 60px; }

  /* Footer */
  .footer { padding: 40px 0; }
  .footer__inner { padding: 0 16px; }
  .footer__text { font-size: 13px; line-height: 20px; }
  .footer__links { flex-wrap: wrap; gap: 12px; }
  .footer__links a { font-size: 13px; }
}

/* ===== Partnership Page ===== */

/* Hero */
.partnership-hero {
  background: url("/images/banners/partnership_banner.png") right/cover no-repeat;
  border-bottom: 1px solid #f0f0f0;
  padding: 0;
  overflow: hidden;
  height: 300px;
}
.partnership-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 112px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 0 40px;
  align-items: end;
}
.partnership-hero__breadcrumb {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #999;
  margin-bottom: 24px;
}
.partnership-hero__breadcrumb a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}
.partnership-hero__breadcrumb a:hover { color: #0874e7; }
.partnership-hero__breadcrumb span { color: #333; }
.partnership-hero__title {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  letter-spacing: -0.5px;
  align-self: center;
  padding-bottom: 32px;
  padding-top: 50px;
}
.partnership-hero__image {
  grid-row: 2;
  grid-column: 2;
  align-self: end;
  width: 340px;
  flex-shrink: 0;
  position: relative;
}
.partnership-hero__deco {
  position: absolute;
  top: -24px;
  right: -16px;
  display: flex;
  gap: 8px;
  z-index: 1;
}
.partnership-hero__deco-block {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 6px;
}
.partnership-hero__deco-block--orange { background: #e07400; }
.partnership-hero__deco-block--yellow { background: #f5c842; }
.partnership-hero__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
  position: relative;
  z-index: 2;
}

/* Sections */
.partnership-section {
  padding: 56px 0;
}
.partnership-section--gray {
  background: #f7f8fa;
}
.partnership-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
}
.partnership-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  display: inline-block;
}
.partnership-section__text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 860px;
}

/* Partner list */
.partnership-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.partnership-list li {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.partnership-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e07400;
}
.partnership-list li strong {
  color: #333;
}

/* Advantages grid */
.partnership-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.partnership-advantage-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.partnership-advantage-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.partnership-advantage-card__icon {
  font-size: 32px;
  color: #0874e7;
  margin-bottom: 14px;
  display: block;
}
.partnership-advantage-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.partnership-advantage-card__desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* Services grid */
.partnership-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.partnership-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 18px 20px;
  transition: box-shadow 0.2s;
}
.partnership-service-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.partnership-service-item__icon {
  font-size: 24px;
  color: #e07400;
  flex-shrink: 0;
}
.partnership-service-item__text {
  font-size: 20px;
  color: #333;
  font-weight: 700;
}

/* Contact notes */
.partnership-contact-notes {
  list-style: none;
  padding: 0;
  margin: 16px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.partnership-contact-notes li {
  font-size: 16px;
  color: #333;
  padding-left: 16px;
  position: relative;
}
.partnership-contact-notes li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #0874e7;
  font-weight: bold;
}

/* Contacts grid */
.partnership-contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.partnership-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow 0.2s;
}
.partnership-contact-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.partnership-contact-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.partnership-contact-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.partnership-contact-card__region {
  font-size: 16px;
  color: #666666;
}
.partnership-contact-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
}
.partnership-contact-card__qr {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 6px;
}

/* ==============================================
   RESPONSIVE — Mobile Banner
   ============================================== */
@media(max-width: 430px) {
  .homepage-hero-bg {
    background: #e5e5e5 url("/images/banners/home_banner_m.png") top right/cover no-repeat;
  }
  .ielts-hero__bg {
    background: url("/images/banners/ielts_banner_m.png") top right/cover no-repeat;
  }
  .partnership-hero {
    background: url("/images/banners/partnership_banner_m.png") top right/cover no-repeat;
  }
  .contact-hero{
    background: url("/images/banners/contactus_banner_m.png") top right/cover no-repeat;
  }
  .about-hero{
    background: url("/images/banners/aboutus_banner_m.png") top right/cover no-repeat;
  }
  .info-cards__grid { display: grid; grid-template-columns: 1fr; }
}

/* ===== Partnership Responsive ===== */
@media (max-width: 1024px) {
  .partnership-hero__inner {
    padding: 24px 24px 0;
    gap: 0 24px;
  }
  .partnership-hero__image { width: 260px; }
  .partnership-hero__title { font-size: 26px; }
  .partnership-section__inner { padding: 0 24px; }
  .partnership-advantages { grid-template-columns: repeat(2, 1fr); }
  .partnership-services { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .partnership-hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 20px 16px 0;
  }
  .partnership-hero__breadcrumb { grid-column: 1; margin-bottom: 16px; }
  .partnership-hero__title {
    grid-column: 1;
    grid-row: 2;
    font-size: 22px;
    padding-bottom: 20px;
    padding-top: 10px;
  }
  .partnership-hero__image {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
  }
  .partnership-hero__image img {
    height: 180px;
    border-radius: 12px 12px 0 0;
  }
  .partnership-section { padding: 36px 0; }
  .partnership-section__inner { padding: 0 16px; }
  .partnership-section__title { font-size: 20px; }
  .partnership-advantages { grid-template-columns: 1fr; gap: 14px; }
  .partnership-services { grid-template-columns: 1fr; gap: 12px; }
  .partnership-contacts { grid-template-columns: 1fr; gap: 14px; }
  .partnership-contact-card__photo,
  .partnership-contact-card__qr { width: 60px; height: 60px; }
}
