.study-abroad-page main {
  background: var(--color-page-bg);
}

.study-abroad-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(69, 145, 204, 0.76) 0%, rgba(106, 180, 224, 0.52) 48%, rgba(179, 222, 245, 0.18) 100%),
    url("../../images/hero/study-abroad.jpg") center/cover no-repeat;
}

.study-abroad-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, rgba(234, 244, 255, 0) 0%, var(--color-page-bg) 100%);
}

.study-abroad-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
  color: #fff;
}

.eyebrow,
.hero-panel > span,
.study-cta span {
  display: inline-block;
  margin-bottom: 14px;
  color: #e5a12a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: #4fae55;
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.hero-content p {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-action {
  background: #e5a12a;
  color: #062b63;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-3px);
}

.primary-action:hover {
  background: #f1b344;
  color: #062b63;
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-panel h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 30px;
  line-height: 1.25;
}

.hero-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-panel li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: #e5a12a;
  content: "\F26A";
  font-family: "bootstrap-icons";
}

.study-abroad-section {
  padding: 70px 0 80px;
}

.study-abroad-page .section-title {
  margin-bottom: 40px;
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: -70px 0 78px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1200px) {
  .service-icons {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.service-item {
  min-height: 150px;
  padding: 26px 16px;
  border-radius: 8px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  box-shadow: 0 10px 28px rgba(5, 43, 99, 0.1);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(5, 43, 99, 0.16);
}

.service-item i {
  display: block;
  margin-bottom: 14px;
  color: #073b73;
  font-size: 38px;
}

.service-item span {
  display: block;
  color: #10233f;
  font-weight: 800;
  line-height: 1.35;
}

.destinations-section {
  padding: 0;
}

.destinations-section .section-title {
  margin-bottom: 36px;
}

.country-item {
  position: relative;
  display: block;
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(5, 43, 99, 0.14);
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.country-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(5, 43, 99, 0.2);
  color: #fff;
}

.country-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.country-item:hover img {
  transform: scale(1.05);
}

.country-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 43, 99, 0.04) 10%, rgba(1, 16, 36, 0.88) 100%);
}

.country-content {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.country-content span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.country-content h3 {
  margin: 2px 0 10px;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
}

.country-content strong {
  color: #e5a12a;
  font-size: 15px;
}

.study-insights-section {
  padding: 80px 0 70px;
}

.study-insights-section .section-title {
  margin-bottom: 34px;
}

.study-insights-section p {
  color: #4b5d79;
  line-height: 1.85;
  margin-bottom: 22px;
}

.study-insights-section .info-box {
  padding: 36px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(7, 59, 115, 0.08);
  box-shadow: 0 24px 50px rgba(7, 59, 115, 0.06);
}

.study-insights-section .info-box h3 {
  margin-bottom: 18px;
  color: #073b73;
  font-size: 30px;
  line-height: 1.2;
}

.study-insights-section .info-box ul {
  margin-top: 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.study-insights-section .info-box li {
  position: relative;
  padding-left: 26px;
  color: #4b5d79;
}

.study-insights-section .info-box li::before {
  content: "\f111";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 6px;
  color: #e5a12a;
  font-size: 10px;
}

.study-services-section {
  padding: 80px 0 75px;
  background: #f7fbff;
}

.study-services-section .service-card {
  padding: 32px;
  min-height: 260px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(7, 59, 115, 0.08);
  box-shadow: 0 18px 34px rgba(7, 59, 115, 0.05);
}

.study-services-section .service-card h3 {
  margin-bottom: 18px;
  color: #073b73;
  font-size: 24px;
  line-height: 1.2;
}

.study-services-section .service-card p {
  color: #4b5d79;
  line-height: 1.8;
}

.study-services-section .service-card:last-child {
  grid-column: span 2;
}

@media (max-width: 991.98px) {
  .study-services-section .service-card:last-child {
    grid-column: auto;
  }
}

.study-countries-section {
  padding: 75px 0;
}

.study-countries-section .country-highlight {
  padding: 28px 26px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(7, 59, 115, 0.08);
  box-shadow: 0 18px 32px rgba(7, 59, 115, 0.05);
}

.study-countries-section .country-highlight h4 {
  margin-bottom: 14px;
  color: #073b73;
  font-size: 22px;
}

.study-countries-section .country-highlight p {
  margin: 0;
  color: #4b5d79;
  line-height: 1.8;
}

.study-prep-section {
  padding: 80px 0 70px;
}

.study-prep-section .section-title {
  margin-bottom: 24px;
}

.study-prep-section p {
  max-width: 760px;
  color: #4b5d79;
  line-height: 1.9;
  margin-bottom: 26px;
}

.study-prep-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.study-prep-section ul li {
  position: relative;
  padding-left: 26px;
  color: #4b5d79;
}

.study-prep-section ul li::before {
  content: "\f111";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 7px;
  color: #e5a12a;
  font-size: 10px;
}

.study-cta {
  padding: 90px 0;
}

.study-cta .cta-box {
  max-width: 1120px;
  margin: 0 auto;
}

.destinations-section .btn-primary {
  padding: 13px 26px;
  border: 0;
  border-radius: 6px;
  background: #073b73;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(5, 43, 99, 0.16);
}

.destinations-section .btn-primary:hover {
  background: #052b63;
}

.study-process-section {
  padding: 82px 0;
  background: var(--color-page-bg);
}

.study-process-section p {
  margin-bottom: 28px;
  color: #5a6678;
  line-height: 1.8;
}

.study-process-section .section-title {
  margin-bottom: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.process-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid #e4ebf4;
  border-radius: 8px;
  background: var(--color-card-bg);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: #e5a12a;
}

.process-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #073b73;
  color: #fff;
  font-weight: 900;
}

.process-card h3 {
  margin-bottom: 10px;
  color: #073b73;
  font-size: 22px;
  font-weight: 900;
}

.process-card p {
  margin: 0;
}

.study-cta {
  padding: 76px 0;
  background: var(--color-page-bg);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(5, 43, 99, 0.96), rgba(5, 43, 99, 0.84)),
    url("../../images/destinations/UK.jpg") center/cover no-repeat;
  box-shadow: 0 20px 44px rgba(5, 43, 99, 0.18);
}

.cta-box h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.25;
}

@media (max-width: 1199.98px) {
  .service-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .study-abroad-hero {
    min-height: auto;
    padding: 100px 0 120px;
  }

  .service-icons {
    margin-top: -80px;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .study-abroad-hero {
    padding: 82px 0 108px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero-panel {
    padding: 26px;
  }

  .service-icons,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .country-item {
    height: 240px;
  }

  .study-process-section,
  .study-cta {
    padding: 62px 0;
  }

  .cta-box {
    padding: 30px;
  }

  .cta-box h2 {
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  .hero-actions {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .service-item {
    min-height: auto;
  }
}
