/**
* Template Name: MySchool
* Template URL: https://bootstrapmade.com/myschool-bootstrap-school-template/
* Updated: Jul 28 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto", sans-serif;
  --nav-font: "Roboto", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2e0a13;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1b4d3e;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.6);
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1b4d3e;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #fafafa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #1b4d3e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.logo img {
  width: 150px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    width: 110px;
  }
}

.header .logo i {
  font-size: 24px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-16 {
  background: #1b4d3e;
  color: white;
  font-size: 15px;
  padding: 100px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.footer-16 .footer-main {
  margin-bottom: 80px;
}

.footer-16 .brand-section .logo {
  text-decoration: none;
}

.footer-16 .brand-section .logo .sitename {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.footer-16 .brand-section .brand-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  max-width: 380px;
  margin: 0;
}

.footer-16 .brand-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer-16 .brand-section .contact-info .contact-item i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-16 .brand-section .contact-info .contact-item span {
  line-height: 1.6;
}

.footer-16 .footer-nav-wrapper {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .footer-16 .footer-nav-wrapper {
    padding-left: 0;
    margin-top: 50px;
  }
}

.footer-16 .nav-column {
  margin-bottom: 40px;
}

.footer-16 .nav-column h6 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.footer-16 .nav-column .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-16 .nav-column .footer-nav a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.footer-16 .nav-column .footer-nav a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-16 .footer-social {
  padding: 50px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.footer-16 .footer-social .newsletter-section h5 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.footer-16 .footer-social .newsletter-section p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.6;
  max-width: 340px;
}

.footer-16 .footer-social .social-section {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .footer-16 .footer-social .social-section {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

.footer-16 .footer-social .social-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 576px) {
  .footer-16 .footer-social .social-links {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.footer-16 .footer-social .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link span {
  transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.footer-16 .footer-social .social-links .social-link:hover i {
  transform: scale(1.1);
}

.footer-16 .footer-bottom {
  padding: 30px 0;
}

.footer-16 .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-weight: 300;
}

.footer-16 .footer-bottom .copyright p .sitename {
  color: var(--heading-color);
  font-weight: 400;
}

.footer-16 .footer-bottom .legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

@media (max-width: 991px) {
  .footer-16 .footer-bottom .legal-links {
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

.footer-16 .footer-bottom .legal-links a {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-16 .footer-bottom .legal-links a:hover {
  color: var(--accent-color);
}

.footer-16 .footer-bottom .legal-links .credits {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .footer-16 .footer-bottom .legal-links .credits {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    width: 100%;
    margin-top: 12px;
  }
}

.footer-16 .footer-bottom .legal-links .credits a {
  color: var(--accent-color);
  font-size: 12px;
}

.footer-16 .footer-bottom .legal-links .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-16 {
    padding: 70px 0 0;
  }

  .footer-16 .brand-section {
    text-align: center;
    margin-bottom: 50px;
  }

  .footer-16 .brand-section .brand-description {
    max-width: none;
  }

  .footer-16 .brand-section .contact-info {
    text-align: left;
    display: inline-block;
  }

  .footer-16 .footer-nav-wrapper .nav-column {
    text-align: left;
  }

  .footer-16 .footer-nav-wrapper .nav-column h6 {
    margin-bottom: 16px;
  }

  .footer-16 .footer-nav-wrapper .nav-column .footer-nav {
    gap: 10px;
  }

  .footer-16 .footer-social {
    text-align: center;
  }

  .footer-16 .footer-social .newsletter-section p {
    max-width: none;
  }

  .footer-16 .footer-social .social-links {
    justify-content: center;
  }

  .footer-16 .footer-bottom {
    text-align: center;
  }

  .footer-16 .footer-bottom .legal-links {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: #fff;
  position: relative;
  background-image: url('../img/Lead-Page.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-title .heading,
.page-title nav {
  position: relative;
  z-index: 2;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: white;
}

.page-title nav {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}

.page-title nav ol li+li::before {
  color: rgba(255, 255, 255, 0.7);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero .hero-container {
  background: linear-gradient(rgba(0, 0, 0, 0.126), rgba(0, 0, 0, 0.6)), url("../img/Background.webp") center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--contrast-color);
  padding: 120px 20px;
  position: relative;
}

.hero .hero-container .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero .hero-container .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .hero .hero-container .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-container .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero .hero-container .hero-content p {
    font-size: 1.1rem;
  }
}

.hero .hero-container .hero-content .cta-buttons {
  margin-bottom: 30px;
}

.hero .hero-container .hero-content .cta-buttons a {
  display: inline-block;
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .hero .hero-container .hero-content .cta-buttons a {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
}

.hero .hero-container .hero-content .cta-buttons .btn-apply {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-container .hero-content .cta-buttons .btn-apply:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero .hero-container .hero-content .cta-buttons .btn-tour {
  background-color: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.hero .hero-container .hero-content .cta-buttons .btn-tour:hover {
  background-color: var(--contrast-color);
  color: #2c5e4f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero .hero-container .hero-content .announcement {
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
}

.hero .hero-container .hero-content .announcement .announcement-badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 15px;
  text-transform: uppercase;
}

.hero .hero-container .hero-content .announcement p {
  margin: 0;
  font-size: 1rem;
}

.hero .highlights-container {
  margin-top: -70px;
  position: relative;
  z-index: 10;
}

.hero .highlights-container .highlight-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.hero .highlights-container .highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero .highlights-container .highlight-item .icon {
  font-size: 2.5rem;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.hero .highlights-container .highlight-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero .highlights-container .highlight-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .event-banner {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  padding: 25px 0;
  margin-top: 40px;
}

.hero .event-banner .event-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.hero .event-banner .event-date .month {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .event-banner .event-date .day {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero .event-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.hero .event-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.hero .event-banner .btn-register {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

.hero .event-banner .btn-register:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero .event-banner .btn-register {
    margin-top: 15px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero .event-banner {
    text-align: center;
  }

  .hero .event-banner .event-date {
    margin: 0 auto 15px;
    max-width: 100px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  padding: 20px 0;
}

.about .content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about .content>p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.about .stats-row .stat-item {
  text-align: center;
}

.about .stats-row .stat-item .number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

.about .stats-row .stat-item .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .about .stats-row {
    gap: 20px;
  }

  .about .stats-row .stat-item {
    flex: 1;
    min-width: 80px;
  }
}

.about .mission-statement {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  margin-bottom: 35px;
}

.about .mission-statement p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--heading-color);
}

.about .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.about .btn-learn-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .btn-learn-more i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.about .btn-learn-more:hover i {
  transform: translateX(3px);
}

.about .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 80%);
  border: 3px solid var(--accent-color);
}

.about .image-wrapper .experience-badge .years {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

.about .image-wrapper .experience-badge .text {
  font-size: 12px;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .about .content {
    margin-bottom: 30px;
  }

  .about .content h2 {
    font-size: 28px;
  }

  .about .image-wrapper {
    min-height: 350px;
  }

  .about .image-wrapper .experience-badge {
    bottom: 20px;
    left: 20px;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .about .content h2 {
    font-size: 24px;
  }

  .about .stats-row {
    justify-content: center;
  }

  .about .mission-statement {
    padding: 20px;
  }

  .about .image-wrapper {
    min-height: 300px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-2 .about-2-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-2 .about-2-content h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.about-2 .about-2-content p {
  margin-bottom: 30px;
}

.about-2 .about-2-content .timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 30px;
}

.about-2 .about-2-content .timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about-2 .about-2-content .timeline .timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.about-2 .about-2-content .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.about-2 .about-2-content .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about-2 .about-2-content .timeline .timeline-item .timeline-content h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.about-2 .about-2-content .timeline .timeline-item .timeline-content p {
  margin-bottom: 0;
}

.about-2 .about-2-image {
  position: relative;
}

.about-2 .about-2-image img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-2 .about-2-image .mission-vision {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .about-2 .about-2-image .mission-vision {
    grid-template-columns: 1fr;
  }
}

.about-2 .about-2-image .mission-vision .mission,
.about-2 .about-2-image .mission-vision .vision {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.about-2 .about-2-image .mission-vision .mission h3,
.about-2 .about-2-image .mission-vision .vision h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}

.about-2 .about-2-image .mission-vision .mission h3:before,
.about-2 .about-2-image .mission-vision .vision h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 20px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.about-2 .about-2-image .mission-vision .mission p,
.about-2 .about-2-image .mission-vision .vision p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.about-2 .core-values {
  margin-top: 30px;
}

.about-2 .core-values h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.about-2 .core-values .value-card {
  background-color: var(--surface-color);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-2 .core-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-2 .core-values .value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.about-2 .core-values .value-card .value-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.about-2 .core-values .value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-2 .core-values .value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.about-2-content .btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(90deg, #005900, #009c42);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.about-2-content .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 156, 66, 0.4);
}

/*--------------------------------------------------------------
# Featured Programs Section
--------------------------------------------------------------*/
.featured-programs {
  padding: 80px 0;
  background: linear-gradient(45deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 98%));
}

.featured-programs .featured-programs-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-programs .programs-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.featured-programs .programs-overview .overview-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 24px;
  color: var(--heading-color);
  line-height: 1.2;
}

.featured-programs .programs-overview .overview-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}

.featured-programs .programs-overview .overview-content .overview-stats {
  display: flex;
  gap: 40px;
}

.featured-programs .programs-overview .overview-content .overview-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 200;
  color: var(--accent-color);
  line-height: 1;
}

.featured-programs .programs-overview .overview-content .overview-stats .stat-item .stat-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 8px;
  font-weight: 500;
}

.featured-programs .programs-overview .overview-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--heading-color), transparent 88%);
}

.featured-programs .programs-overview .overview-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-programs .programs-overview .overview-image:hover img {
  transform: scale(1.05);
}

.featured-programs .programs-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.featured-programs .featured-program {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--heading-color), transparent 92%);
  transition: all 0.5s ease;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 95%);
}

.featured-programs .featured-program:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--heading-color), transparent 85%);
}

.featured-programs .featured-program .card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.featured-programs .featured-program .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-programs .featured-program .card-image:hover img {
  transform: scale(1.08);
}

.featured-programs .featured-program .card-image .program-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--surface-color);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--heading-color), transparent 85%);
}

.featured-programs .featured-program .card-image .program-badge i {
  font-size: 0.9rem;
}

.featured-programs .featured-program .card-content {
  padding: 32px 28px;
}

.featured-programs .featured-program .card-content .program-category {
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.featured-programs .featured-program .card-content h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--heading-color);
  line-height: 1.3;
}

.featured-programs .featured-program .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.featured-programs .featured-program .card-content .program-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.featured-programs .featured-program .card-content .program-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-programs .featured-program .card-content .program-meta .meta-item i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.featured-programs .featured-program .card-content .program-meta .meta-item span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.featured-programs .featured-program .card-content .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-programs .featured-program .card-content .card-footer .learn-more {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.featured-programs .featured-program .card-content .card-footer .learn-more:hover {
  color: color-mix(in srgb, var(--accent-color), #000 20%);
  transform: translateX(3px);
}

.featured-programs .featured-program .card-content .card-footer .enrollment {
  display: flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.85rem;
}

.featured-programs .featured-program .card-content .card-footer .enrollment i {
  font-size: 0.9rem;
}

.featured-programs .programs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured-programs .program-item {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 95%);
  cursor: pointer;
}

.featured-programs .program-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--heading-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.featured-programs .program-item:hover .item-action i {
  color: var(--accent-color);
  transform: translateX(4px);
}

.featured-programs .program-item .item-visual {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.featured-programs .program-item .item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-programs .program-item .item-details {
  flex: 1;
}

.featured-programs .program-item .item-details .item-category {
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.featured-programs .program-item .item-details h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.3;
}

.featured-programs .program-item .item-details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.featured-programs .program-item .item-details .item-info {
  display: flex;
  gap: 16px;
}

.featured-programs .program-item .item-details .item-info span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.featured-programs .program-item .item-action {
  margin-left: 16px;
}

.featured-programs .program-item .item-action i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .featured-programs {
    padding: 60px 0;
  }

  .featured-programs .programs-overview {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .featured-programs .programs-overview .overview-content {
    order: 2;
  }

  .featured-programs .programs-overview .overview-content h2 {
    font-size: 2rem;
  }

  .featured-programs .programs-overview .overview-content .overview-stats {
    justify-content: space-between;
    gap: 20px;
  }

  .featured-programs .programs-overview .overview-image {
    order: 1;
  }

  .featured-programs .programs-overview .overview-image img {
    height: 300px;
  }

  .featured-programs .programs-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .featured-programs .overview-content .overview-stats {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .featured-programs .featured-program .card-content {
    padding: 24px 20px;
  }

  .featured-programs .program-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .featured-programs .program-item .item-visual {
    width: 120px;
    height: 120px;
  }

  .featured-programs .program-item .item-action {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .featured-programs {
    padding: 40px 0;
  }

  .featured-programs .programs-overview {
    margin-bottom: 40px;
  }

  .featured-programs .programs-overview .overview-content h2 {
    font-size: 1.8rem;
  }

  .featured-programs .programs-overview .overview-image img {
    height: 250px;
  }

  .featured-programs .programs-showcase {
    gap: 30px;
  }
}

/*--------------------------------------------------------------
# Students Life Block Section
--------------------------------------------------------------*/
.students-life-block .content-wrapper .section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  position: relative;
}

.students-life-block .content-wrapper .section-tag::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

.students-life-block .content-wrapper h2 {
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .students-life-block .content-wrapper h2 {
    font-size: 2.25rem;
  }
}

.students-life-block .content-wrapper .description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

.students-life-block .stats-row {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.students-life-block .stats-row .stat-item {
  display: flex;
  flex-direction: column;
}

.students-life-block .stats-row .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.students-life-block .stats-row .stat-item .stat-label {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 300;
}

@media (max-width: 576px) {
  .students-life-block .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.students-life-block .action-links .primary-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.students-life-block .action-links .primary-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.students-life-block .action-links .primary-link:hover {
  color: var(--accent-color);
}

.students-life-block .action-links .primary-link:hover::after {
  width: 100%;
}

.students-life-block .visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  height: 100%;
}

.students-life-block .visual-grid .main-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.students-life-block .visual-grid .main-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.students-life-block .visual-grid .main-visual:hover img {
  transform: scale(1.05);
}

.students-life-block .visual-grid .main-visual .overlay-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--surface-color);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.students-life-block .visual-grid .main-visual .overlay-badge i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.students-life-block .visual-grid .main-visual .overlay-badge span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.students-life-block .visual-grid .secondary-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.students-life-block .visual-grid .secondary-visuals .small-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.students-life-block .visual-grid .secondary-visuals .small-visual img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.students-life-block .visual-grid .secondary-visuals .small-visual:hover img {
  transform: scale(1.1);
}

.students-life-block .visual-grid .secondary-visuals .small-visual:hover .visual-caption {
  opacity: 1;
  transform: translateY(0);
}

.students-life-block .visual-grid .secondary-visuals .small-visual .visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1.5rem 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.students-life-block .visual-grid .secondary-visuals .small-visual .visual-caption span {
  color: var(--contrast-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.students-life-block .highlights-section {
  margin-top: 6rem;
}

.students-life-block .highlights-section .highlight-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.students-life-block .highlights-section .highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.students-life-block .highlights-section .highlight-card .highlight-image {
  overflow: hidden;
}

.students-life-block .highlights-section .highlight-card .highlight-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.students-life-block .highlights-section .highlight-card:hover .highlight-image img {
  transform: scale(1.1);
}

.students-life-block .highlights-section .highlight-card .highlight-content {
  padding: 2rem;
}

.students-life-block .highlights-section .highlight-card .highlight-content h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.students-life-block .highlights-section .highlight-card .highlight-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

@media (max-width: 991.98px) {
  .students-life-block .content-wrapper {
    margin-bottom: 2rem;
  }

  .students-life-block .visual-grid .main-visual img {
    height: 300px;
  }

  .students-life-block .visual-grid .secondary-visuals .small-visual img {
    height: 140px;
  }

  .students-life-block .highlights-section {
    margin-top: 4rem;
  }
}

@media (max-width: 768px) {
  .students-life-block .stats-row {
    justify-content: center;
    text-align: center;
  }

  .students-life-block .visual-grid .main-visual .overlay-badge {
    top: 20px;
    right: 20px;
    padding: 0.75rem 1.25rem;
  }

  .students-life-block .visual-grid .secondary-visuals {
    grid-template-columns: 1fr;
  }

  .students-life-block .visual-grid .secondary-visuals .small-visual img {
    height: 200px;
  }

  .students-life-block .highlights-section {
    margin-top: 3rem;
  }

  .students-life-block .highlights-section .highlight-card .highlight-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .students-life-block .visual-grid .main-visual .overlay-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 1rem;
    display: inline-flex;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  min-height: 400px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item {
    height: 100%;
    min-height: 300px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(145deg, var(--surface-color) 0%, color-mix(in srgb, var(--background-color), var(--accent-color) 2%) 100%);
  position: relative;
  padding: 100px 0;
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 80px 0;
  }
}

.call-to-action .content-wrapper {
  max-width: 480px;
}

@media (max-width: 991px) {
  .call-to-action .content-wrapper {
    max-width: 100%;
    margin-bottom: 60px;
  }
}

.call-to-action .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.call-to-action .badge i {
  font-size: 1rem;
}

.call-to-action h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .call-to-action h2 {
    font-size: 2.25rem;
  }
}

.call-to-action p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
}

.call-to-action .highlight-stats {
  margin-bottom: 48px;
}

.call-to-action .highlight-stats .stat-group {
  display: flex;
  gap: 48px;
}

@media (max-width: 576px) {
  .call-to-action .highlight-stats .stat-group {
    flex-direction: column;
    gap: 24px;
  }
}

.call-to-action .highlight-stats .stat-item .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

.call-to-action .highlight-stats .stat-item .number::after {
  content: "+";
  font-size: 1.5rem;
}

.call-to-action .highlight-stats .stat-item .label {
  font-size: 0.875rem;
  color: var(--heading-color);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.call-to-action .action-buttons {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 576px) {
  .call-to-action .action-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.call-to-action .action-buttons .btn-primary {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action .action-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--contrast-color);
}

.call-to-action .action-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action .action-buttons .btn-secondary:hover {
  color: color-mix(in srgb, var(--accent-color), black 10%);
}

.call-to-action .action-buttons .btn-secondary:hover i {
  transform: translateX(4px);
}

.call-to-action .action-buttons .btn-secondary i {
  transition: transform 0.3s ease;
}

.call-to-action .visual-section {
  position: relative;
  height: 500px;
}

@media (max-width: 991px) {
  .call-to-action .visual-section {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .call-to-action .visual-section {
    height: 300px;
  }
}

.call-to-action .main-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.call-to-action .main-image-container .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-to-action .main-image-container .overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 50%);
}

.call-to-action .feature-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.call-to-action .feature-cards .feature-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--heading-color), transparent 90%);
  backdrop-filter: blur(12px);
  min-width: 200px;
}

@media (max-width: 768px) {
  .call-to-action .feature-cards .feature-card {
    padding: 16px;
    min-width: 180px;
  }
}

.call-to-action .feature-cards .feature-card.achievement {
  top: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .call-to-action .feature-cards .feature-card.achievement {
    top: 15px;
    right: 15px;
  }
}

.call-to-action .feature-cards .feature-card.flexibility {
  bottom: 120px;
  left: -20px;
}

@media (max-width: 768px) {
  .call-to-action .feature-cards .feature-card.flexibility {
    left: -10px;
    bottom: 100px;
  }
}

.call-to-action .feature-cards .feature-card.community {
  bottom: 20px;
  right: 40px;
}

@media (max-width: 768px) {
  .call-to-action .feature-cards .feature-card.community {
    right: 20px;
    bottom: 15px;
  }
}

.call-to-action .feature-cards .feature-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.call-to-action .feature-cards .feature-card .icon i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.call-to-action .feature-cards .feature-card .content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.call-to-action .feature-cards .feature-card .content p {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.4;
}

/*--------------------------------------------------------------
# Recent News Section
--------------------------------------------------------------*/
.recent-news .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-news .post-box .post-img {
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}

.recent-news .post-box .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  border-radius: 8px;
}

.recent-news .post-box:hover .post-img img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .recent-news .post-box .post-img {
    height: 180px;
  }
}

.recent-news .post-box .meta {
  margin-top: 15px;
}

.recent-news .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-color);
}

.recent-news .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-news .post-box .post-title {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-news .post-box p {
  margin: 15px 0 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-news .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-news .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-news .post-box:hover .post-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .section-title {
  margin-bottom: 3rem;
}

.events .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.events .section-title p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .event-filters .form-select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.events .event-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.events .event-card {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.events .event-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.events .event-card .event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  min-width: 100px;
}

.events .event-card .event-date .month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.events .event-card .event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.5rem 0;
}

.events .event-card .event-date .year {
  font-size: 0.9rem;
}

.events .event-card .event-content {
  padding: 1.5rem;
  flex: 1;
}

.events .event-card .event-content h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  font-weight: 600;
}

.events .event-card .event-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.events .event-card .event-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.events .event-card .event-tag.academic {
  background-color: #e3f2fd;
  color: #0d47a1;
}

.events .event-card .event-tag.sports {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.events .event-card .event-tag.arts {
  background-color: #ffebee;
  color: #c62828;
}

.events .event-card .event-tag.community {
  background-color: #fff3e0;
  color: #e65100;
}

.events .event-card .event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.events .event-card .event-meta .meta-item {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.events .event-card .event-meta .meta-item i {
  margin-right: 0.5rem;
  font-size: 1rem;
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events .event-card .event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.events .event-card .event-actions .btn-learn-more {
  padding: 0.5rem 1.25rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
}

.events .event-card .event-actions .btn-learn-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.events .event-card .event-actions .btn-calendar {
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.events .event-card .event-actions .btn-calendar i {
  margin-right: 0.3rem;
}

.events .event-card .event-actions .btn-calendar:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.events .btn-view-all {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.events .btn-view-all:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .events .event-card {
    flex-direction: column;
  }

  .events .event-card .event-date {
    flex-direction: row;
    padding: 1rem;
    gap: 0.5rem;
    min-width: auto;
  }

  .events .event-card .event-date .month,
  .events .event-card .event-date .day,
  .events .event-card .event-date .year {
    margin: 0;
  }

  .events .event-card .event-date .day {
    font-size: 1.5rem;
    margin: 0 0.3rem;
  }

  .events .event-actions {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# History Section
--------------------------------------------------------------*/
.history {
  padding: 100px 0;
}

.history .section-badge {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
}

.history .section-badge::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

.history .hero-content {
  margin-bottom: 80px;
}

.history .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .history .hero-content .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .history .hero-content .hero-title {
    font-size: 2rem;
  }
}

.history .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.history .section-heading {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .history .section-heading {
    font-size: 2rem;
  }
}

.history .section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
}

.history .leadership-showcase {
  margin-bottom: 100px;
}

.history .leadership-showcase .leadership-content {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .history .leadership-showcase .leadership-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.history .leadership-showcase .leader-profile {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
  border-radius: 2px;
}

.history .leadership-showcase .leader-profile .profile-image {
  flex-shrink: 0;
}

.history .leadership-showcase .leader-profile .profile-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.history .leadership-showcase .leader-profile .profile-info h4 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.history .leadership-showcase .leader-profile .profile-info .title {
  display: block;
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.history .leadership-showcase .leader-profile .profile-info .bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.history .leadership-showcase .faculty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.history .leadership-showcase .faculty-grid .faculty-member {
  text-align: center;
}

.history .leadership-showcase .faculty-grid .faculty-member:first-child {
  grid-column: 1/-1;
}

.history .leadership-showcase .faculty-grid .faculty-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--surface-color);
}

.history .leadership-showcase .faculty-grid .faculty-member .member-info h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.history .leadership-showcase .faculty-grid .faculty-member .member-info span {
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 400;
}

.history .values-section {
  margin-bottom: 100px;
}

.history .values-section .values-header {
  margin-bottom: 60px;
}

.history .values-section .value-block {
  padding: 3rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
}

.history .values-section .value-block:hover .value-number {
  color: var(--accent-color);
  transform: scale(1.1);
}

.history .values-section .value-block .value-number {
  font-size: 4rem;
  font-weight: 100;
  color: color-mix(in srgb, var(--default-color), transparent 85%);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.history .values-section .value-block h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.history .values-section .value-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.history .values-section .value-block::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3rem;
  bottom: 3rem;
  width: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .history .values-section .value-block::after {
    display: none;
  }
}

.history .values-section .value-block:last-child::after {
  display: none;
}

.history .accomplishments-section .campus-visual {
  position: relative;
}

.history .accomplishments-section .campus-visual .main-image {
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.history .accomplishments-section .campus-visual .floating-stats {
  position: absolute;
  bottom: -20px;
  right: 20px;
}

@media (max-width: 992px) {
  .history .accomplishments-section .campus-visual .floating-stats {
    position: static;
    margin-top: 2rem;
    text-align: center;
  }
}

.history .accomplishments-section .campus-visual .floating-stats .stat-card {
  background: var(--contrast-color);
  padding: 1.5rem 2rem;
  border-radius: 2px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 180px;
}

.history .accomplishments-section .campus-visual .floating-stats .stat-card .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 200;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.history .accomplishments-section .campus-visual .floating-stats .stat-card .stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--heading-color);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.history .accomplishments-section .accomplishments-content {
  padding-left: 4rem;
}

@media (max-width: 992px) {
  .history .accomplishments-section .accomplishments-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.history .accomplishments-section .achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.history .accomplishments-section .achievements-grid .achievement-item {
  text-align: left;
}

.history .accomplishments-section .achievements-grid .achievement-item .achievement-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 200;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.history .accomplishments-section .achievements-grid .achievement-item .achievement-desc {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 400;
}

.history .accomplishments-section .credentials .credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.history .accomplishments-section .credentials .credential-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.history .accomplishments-section .credentials .credential-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 768px) {
  .history {
    padding: 60px 0;
  }

  .history .leadership-showcase,
  .history .values-section {
    margin-bottom: 60px;
  }

  .history .values-section .value-block {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .history .accomplishments-section .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Leadership Section
--------------------------------------------------------------*/
.leadership .intro-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.leadership .intro-section .content-wrapper .intro-label {
  display: inline-block;
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.leadership .intro-section .content-wrapper .intro-label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--accent-color);
}

.leadership .intro-section .content-wrapper .intro-title {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 300;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 30px;
}

.leadership .intro-section .content-wrapper .intro-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}

.leadership .leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.leadership .leadership-grid .featured-leader .leader-image-large {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.leadership .leadership-grid .featured-leader .leader-image-large img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.leadership .leadership-grid .featured-leader .leader-details h3 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.leadership .leadership-grid .featured-leader .leader-details .leader-title {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 25px;
}

.leadership .leadership-grid .featured-leader .leader-details .leader-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.leadership .leadership-grid .featured-leader .leader-details .leader-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.leadership .leadership-grid .featured-leader .leader-details .leader-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leadership .leadership-grid .featured-leader .leader-details .leader-stats .stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.leadership .leadership-grid .featured-leader .leader-details .leader-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.leadership .leadership-grid .featured-leader .leader-details .social-connect {
  display: flex;
  gap: 15px;
}

.leadership .leadership-grid .featured-leader .leader-details .social-connect .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.leadership .leadership-grid .featured-leader .leader-details .social-connect .social-link:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.leadership .leadership-grid .leadership-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo {
  position: relative;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay .member-social {
  display: flex;
  gap: 10px;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay .member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay .member-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo:hover .member-overlay {
  opacity: 1;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo:hover img {
  transform: scale(1.05);
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-info h4 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-info .member-role {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-info .member-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.leadership .leadership-philosophy {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 60px 40px;
  border-radius: 8px;
  text-align: center;
}

.leadership .leadership-philosophy .philosophy-content {
  max-width: 700px;
  margin: 0 auto;
}

.leadership .leadership-philosophy .philosophy-content h3 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 25px;
}

.leadership .leadership-philosophy .philosophy-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 40px;
}

.leadership .leadership-philosophy .philosophy-content .philosophy-points {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.leadership .leadership-philosophy .philosophy-content .philosophy-points .point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.leadership .leadership-philosophy .philosophy-content .philosophy-points .point i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.leadership .leadership-philosophy .philosophy-content .philosophy-points .point span {
  font-size: 0.95rem;
  color: var(--default-color);
  text-align: center;
  max-width: 140px;
}

@media (max-width: 992px) {
  .leadership .intro-section {
    margin-bottom: 60px;
  }

  .leadership .intro-section .content-wrapper .intro-title {
    font-size: 2.2rem;
  }

  .leadership .intro-section .content-wrapper .intro-description {
    font-size: 1.1rem;
  }

  .leadership .leadership-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .leadership .leadership-grid .featured-leader .leader-image-large img {
    height: 400px;
  }

  .leadership .leadership-grid .featured-leader .leader-details .leader-stats {
    gap: 25px;
  }

  .leadership .leadership-grid .leadership-team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .leadership .leadership-philosophy {
    padding: 50px 30px;
  }

  .leadership .leadership-philosophy .philosophy-content .philosophy-points {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .leadership .intro-section {
    margin-bottom: 50px;
  }

  .leadership .intro-section .content-wrapper .intro-title {
    font-size: 1.8rem;
  }

  .leadership .leadership-grid {
    gap: 50px;
  }

  .leadership .leadership-grid .featured-leader .leader-details .leader-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .leadership .leadership-grid .leadership-team-grid {
    grid-template-columns: 1fr;
  }

  .leadership .leadership-grid .leadership-team-grid .team-member .member-photo img {
    height: 320px;
  }

  .leadership .leadership-philosophy {
    padding: 40px 20px;
  }

  .leadership .leadership-philosophy .philosophy-content h3 {
    font-size: 1.6rem;
  }

  .leadership .leadership-philosophy .philosophy-content .philosophy-points {
    flex-direction: column;
    gap: 25px;
  }
}

/*--------------------------------------------------------------
# Admissions Section
--------------------------------------------------------------*/
.admissions .admission-hero {
  margin-bottom: 5rem;
}

.admissions .admission-hero .hero-content h2 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .admissions .admission-hero .hero-content h2 {
    font-size: 2.2rem;
  }
}

.admissions .admission-hero .hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.admissions .admission-hero .hero-stats {
  display: flex;
  gap: 3rem;
}

@media (max-width: 576px) {
  .admissions .admission-hero .hero-stats {
    gap: 1.5rem;
  }
}

.admissions .admission-hero .hero-stats .stat-item {
  text-align: center;
}

.admissions .admission-hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1;
}

.admissions .admission-hero .hero-stats .stat-item .stat-label {
  display: block;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.3rem;
}

.admissions .admission-hero .hero-image {
  position: relative;
}

.admissions .admission-hero .hero-image img {
  border-radius: 16px;
}

.admissions .admission-hero .hero-image .floating-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.admissions .admission-hero .hero-image .floating-badge i {
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .admissions .admission-hero .hero-image .floating-badge {
    position: static;
    margin-top: 1rem;
    align-self: flex-start;
  }
}

.admissions .application-timeline {
  margin-bottom: 5rem;
}

.admissions .application-timeline .timeline-header {
  text-align: center;
  margin-bottom: 3rem;
}

.admissions .application-timeline .timeline-header h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.admissions .application-timeline .timeline-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.admissions .application-timeline .timeline-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

@media (max-width: 992px) {
  .admissions .application-timeline .timeline-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .admissions .application-timeline .timeline-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.admissions .application-timeline .timeline-container::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 60%) 100%);
  z-index: 0;
}

@media (max-width: 992px) {
  .admissions .application-timeline .timeline-container::before {
    display: none;
  }
}

.admissions .application-timeline .timeline-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.admissions .application-timeline .timeline-item .timeline-marker {
  width: 50px;
  height: 50px;
  background-color: var(--surface-color);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.admissions .application-timeline .timeline-item .timeline-marker i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.admissions .application-timeline .timeline-item .timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
}

.admissions .application-timeline .timeline-item .timeline-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
}

.admissions .application-timeline .timeline-item .timeline-content .timeline-duration {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.admissions .requirements-checklist h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.admissions .requirements-checklist .checklist-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.admissions .requirements-checklist .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.admissions .requirements-checklist .checklist-item .check-icon {
  width: 24px;
  height: 24px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.admissions .requirements-checklist .checklist-item .check-icon i {
  font-size: 0.9rem;
  color: var(--contrast-color);
}

.admissions .requirements-checklist .checklist-item .check-content h5 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--heading-color);
}

.admissions .requirements-checklist .checklist-item .check-content p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.admissions .requirements-checklist .international-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.admissions .requirements-checklist .international-note i {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-top: 2px;
}

.admissions .requirements-checklist .international-note h6 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--heading-color);
}

.admissions .requirements-checklist .international-note p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.admissions .tuition-overview h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.admissions .tuition-overview .tuition-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.admissions .tuition-overview .tuition-card {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.admissions .tuition-overview .tuition-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.admissions .tuition-overview .tuition-card .card-header {
  padding: 1.2rem 1.5rem;
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.admissions .tuition-overview .tuition-card .card-header h4 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--heading-color);
}

.admissions .tuition-overview .tuition-card .card-header .program-type {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.admissions .tuition-overview .tuition-card .pricing-details {
  padding: 1.5rem;
}

.admissions .tuition-overview .tuition-card .price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.admissions .tuition-overview .tuition-card .price-item:last-child {
  border-bottom: none;
}

.admissions .tuition-overview .tuition-card .price-item .label {
  font-size: 0.9rem;
  color: var(--default-color);
}

.admissions .tuition-overview .tuition-card .price-item .amount {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
}

.admissions .tuition-overview .financial-support {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 12px;
}

.admissions .tuition-overview .financial-support h5 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
}

.admissions .tuition-overview .financial-support p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.admissions .tuition-overview .financial-support .support-link {
  color: var(--accent-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.admissions .tuition-overview .financial-support .support-link:hover {
  gap: 0.8rem;
}

.admissions .tuition-overview .financial-support .support-link i {
  font-size: 0.9rem;
}

.admissions .deadlines-showcase {
  margin-bottom: 4rem;
}

.admissions .deadlines-showcase .showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.admissions .deadlines-showcase .showcase-header h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.admissions .deadlines-showcase .showcase-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.admissions .deadlines-showcase .deadlines-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .admissions .deadlines-showcase .deadlines-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .admissions .deadlines-showcase .deadlines-slider {
    grid-template-columns: 1fr;
  }
}

.admissions .deadlines-showcase .deadline-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.admissions .deadlines-showcase .deadline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.admissions .deadlines-showcase .deadline-card.priority::before {
  background-color: var(--accent-color);
}

.admissions .deadlines-showcase .deadline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.admissions .deadlines-showcase .deadline-card .date-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.admissions .deadlines-showcase .deadline-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
}

.admissions .deadlines-showcase .deadline-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
}

.admissions .deadlines-showcase .deadline-card .card-footer {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admissions .contact-section .contact-content h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.admissions .contact-section .contact-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.admissions .contact-section .inquiry-form .form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 576px) {
  .admissions .contact-section .inquiry-form .form-group-row {
    grid-template-columns: 1fr;
  }
}

.admissions .contact-section .inquiry-form .form-group.full-width {
  grid-column: 1/-1;
}

.admissions .contact-section .inquiry-form .form-group input,
.admissions .contact-section .inquiry-form .form-group select,
.admissions .contact-section .inquiry-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: all 0.3s ease;
}

.admissions .contact-section .inquiry-form .form-group input:focus,
.admissions .contact-section .inquiry-form .form-group select:focus,
.admissions .contact-section .inquiry-form .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.admissions .contact-section .inquiry-form .form-group input::placeholder,
.admissions .contact-section .inquiry-form .form-group select::placeholder,
.admissions .contact-section .inquiry-form .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.admissions .contact-section .inquiry-form .form-actions {
  margin-top: 1.5rem;
}

.admissions .contact-section .inquiry-form .form-actions .submit-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admissions .contact-section .inquiry-form .form-actions .submit-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--heading-color) 15%);
  transform: translateY(-2px);
}

.admissions .contact-section .visit-invitation .visit-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.admissions .contact-section .visit-invitation .visit-image .visit-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--heading-color);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.admissions .contact-section .visit-invitation .visit-image .visit-overlay i {
  font-size: 1.5rem;
}

.admissions .contact-section .visit-invitation .visit-details h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.admissions .contact-section .visit-invitation .visit-details .visit-options {
  margin-bottom: 2rem;
}

.admissions .contact-section .visit-invitation .visit-details .visit-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.admissions .contact-section .visit-invitation .visit-details .visit-option i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 2px;
}

.admissions .contact-section .visit-invitation .visit-details .visit-option .option-title {
  display: block;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0.2rem;
}

.admissions .contact-section .visit-invitation .visit-details .visit-option .option-detail {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.admissions .contact-section .visit-invitation .visit-details .schedule-btn {
  display: inline-block;
  background-color: var(--surface-color);
  color: var(--accent-color);
  padding: 0.8rem 2rem;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.admissions .contact-section .visit-invitation .visit-details .schedule-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Academics Section
--------------------------------------------------------------*/
.academics .section-subtitle {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  position: relative;
}

.academics .section-subtitle:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--accent-color);
}

.academics .academic-programs .programs-grid {
  display: grid;
  gap: 2rem;
}

.academics .academic-programs .program-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.academics .academic-programs .program-item:last-child {
  border-bottom: none;
}

.academics .academic-programs .program-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.academics .academic-programs .program-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.academics .academic-programs .program-details h4 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.academics .academic-programs .program-details p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .academic-programs .program-details .program-stats {
  display: flex;
  gap: 1.5rem;
}

.academics .academic-programs .program-details .program-stats span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.academics .academic-programs .program-details .program-stats span strong {
  color: var(--accent-color);
  font-weight: 600;
}

@media (max-width: 576px) {
  .academics .academic-programs .program-details .program-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.academics .academic-achievements {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 4px;
  height: 100%;
}

.academics .academic-achievements .achievements-list {
  margin-bottom: 2.5rem;
}

.academics .academic-achievements .achievement-item {
  text-align: center;
  margin-bottom: 2rem;
}

.academics .academic-achievements .achievement-item:last-child {
  margin-bottom: 0;
}

.academics .academic-achievements .achievement-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
}

.academics .academic-achievements .achievement-number:after {
  content: "%";
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.academics .academic-achievements .achievement-item h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.academics .academic-achievements .achievement-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.academics .academic-achievements .accreditation-info {
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.academics .academic-achievements .accreditation-info h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.academics .academic-achievements .accreditation-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .academic-achievements .accreditation-info .accreditation-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.academics .academic-achievements .accreditation-info .accreditation-link:hover i {
  transform: translateX(3px);
}

.academics .academic-achievements .accreditation-info .accreditation-link i {
  transition: 0.3s ease;
}

.academics .featured-departments .departments-showcase {
  position: relative;
}

.academics .featured-departments .department-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 320px;
  margin-bottom: 1.5rem;
}

.academics .featured-departments .department-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.academics .featured-departments .department-card .department-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, color-mix(in srgb, var(--heading-color), transparent 20%));
  color: var(--contrast-color);
  padding: 2rem 1.5rem 1.5rem;
}

.academics .featured-departments .department-card .department-overlay h4 {
  color: var(--contrast-color);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.academics .featured-departments .department-card .department-overlay p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.academics .featured-departments .department-card .department-overlay .dept-link {
  color: var(--contrast-color);
  font-size: 0.9rem;
  border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
  transition: 0.3s ease;
}

.academics .featured-departments .department-card .department-overlay .dept-link:hover {
  border-bottom-color: var(--contrast-color);
}

.academics .featured-departments .departments-tabs {
  display: flex;
  gap: 0.5rem;
}

.academics .featured-departments .departments-tabs .tab-btn {
  background: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--default-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.academics .featured-departments .departments-tabs .tab-btn.active,
.academics .featured-departments .departments-tabs .tab-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .academics .featured-departments .departments-tabs .tab-btn {
    flex: 1;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
}

.academics .academic-calendar {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 4px;
  height: 100%;
}

.academics .academic-calendar .calendar-events {
  margin-bottom: 1.5rem;
}

.academics .academic-calendar .calendar-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.academics .academic-calendar .calendar-item:last-child {
  border-bottom: none;
}

.academics .academic-calendar .date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 4px;
  flex-shrink: 0;
}

.academics .academic-calendar .date-block .month {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  line-height: 1;
}

.academics .academic-calendar .date-block .day {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1;
}

.academics .academic-calendar .event-info h4 {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.academics .academic-calendar .event-info p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.academics .academic-calendar .view-full-calendar {
  color: var(--accent-color);
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.academics .academic-calendar .view-full-calendar:hover {
  color: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
}

.academics .curriculum-pathways .pathways-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .academics .curriculum-pathways .pathways-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.academics .curriculum-pathways .pathway-track {
  text-align: center;
  padding: 2rem 1rem;
}

.academics .curriculum-pathways .pathway-track .track-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.academics .curriculum-pathways .pathway-track .track-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.academics .curriculum-pathways .pathway-track h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.academics .curriculum-pathways .pathway-track p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .curriculum-pathways .pathway-track .track-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.academics .curriculum-pathways .pathway-track .track-features li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .curriculum-pathways .pathway-track .track-features li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 0.8rem;
}

.academics .faculty-research {
  padding-bottom: 1rem;
}

.academics .faculty-research .research-highlight {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.academics .faculty-research .research-highlight img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.academics .faculty-research .research-highlight .research-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 1.5rem;
  border-radius: 4px;
}

.academics .faculty-research .research-highlight .research-badge span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.academics .faculty-research .research-highlight .research-badge small {
  font-size: 0.8rem;
  opacity: 0.9;
}

.academics .faculty-research .faculty-content {
  padding: 0 2rem;
}

@media (max-width: 992px) {
  .academics .faculty-research .faculty-content {
    padding: 2rem 0 0;
  }
}

.academics .faculty-research .faculty-content h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.academics .faculty-research .faculty-content .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.academics .faculty-research .faculty-content .faculty-highlights {
  margin-bottom: 2rem;
}

.academics .faculty-research .faculty-content .faculty-stat {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.academics .faculty-research .faculty-content .faculty-stat .stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.academics .faculty-research .faculty-content .faculty-stat .stat-icon i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.academics .faculty-research .faculty-content .faculty-stat .stat-content h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.academics .faculty-research .faculty-content .faculty-stat .stat-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .faculty-research .faculty-content .research-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.academics .faculty-research .faculty-content .research-cta .btn-research {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.academics .faculty-research .faculty-content .research-cta .btn-research:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: translateY(-2px);
}

.academics .faculty-research .faculty-content .research-cta .faculty-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.academics .faculty-research .faculty-content .research-cta .faculty-link:hover i {
  transform: translateX(3px);
}

.academics .faculty-research .faculty-content .research-cta .faculty-link i {
  transition: 0.3s ease;
}

/*--------------------------------------------------------------
# Students Life Section
--------------------------------------------------------------*/
.students-life .content-wrapper {
  padding: 80px 0;
}

@media (max-width: 992px) {
  .students-life .content-wrapper {
    padding: 40px 0;
  }
}

.students-life h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .students-life h2 {
    font-size: 2.25rem;
  }
}

.students-life .lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
}

.students-life .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.students-life .stat-item {
  text-align: center;
}

.students-life .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  display: block;
  line-height: 1;
}

.students-life .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.students-life .image-showcase {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.students-life .image-showcase .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.students-life .image-showcase .floating-image {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .students-life .image-showcase .floating-image {
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
  }
}

.students-life .image-showcase .floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .students-life .image-showcase {
    margin-top: 40px;
    min-height: 400px;
  }
}

.students-life .activities-section {
  margin-top: 120px;
}

@media (max-width: 992px) {
  .students-life .activities-section {
    margin-top: 80px;
  }
}

.students-life .activities-section h3 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .students-life .activities-section h3 {
    font-size: 1.875rem;
  }
}

.students-life .activities-section>.row:first-child {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .students-life .activities-section>.row:first-child {
    margin-bottom: 60px;
  }
}

.students-life .activities-section>.row:first-child p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.students-life .activity-card {
  height: 100%;
  transition: transform 0.3s ease;
}

.students-life .activity-card:hover {
  transform: translateY(-8px);
}

.students-life .activity-card .activity-image {
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
}

.students-life .activity-card .activity-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.students-life .activity-card:hover .activity-image img {
  transform: scale(1.05);
}

.students-life .activity-card .activity-content h4 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.students-life .activity-card .activity-content p {
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.students-life .testimonial-section {
  margin-top: 120px;
}

@media (max-width: 992px) {
  .students-life .testimonial-section {
    margin-top: 80px;
  }
}

.students-life .testimonial-section .testimonial-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .students-life .testimonial-section .testimonial-image img {
    height: 300px;
    margin-bottom: 40px;
  }
}

.students-life .testimonial-section .testimonial-content {
  padding-left: 60px;
}

@media (max-width: 992px) {
  .students-life .testimonial-section .testimonial-content {
    padding-left: 0;
  }
}

.students-life .testimonial-section .testimonial-content blockquote {
  font-size: 1.375rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--heading-color);
  position: relative;
}

.students-life .testimonial-section .testimonial-content blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  top: -20px;
  left: -30px;
  font-family: serif;
}

@media (max-width: 768px) {
  .students-life .testimonial-section .testimonial-content blockquote {
    font-size: 1.125rem;
  }

  .students-life .testimonial-section .testimonial-content blockquote::before {
    font-size: 3rem;
    top: -15px;
    left: -20px;
  }
}

.students-life .testimonial-section .testimonial-content .testimonial-author h5 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.students-life .testimonial-section .testimonial-content .testimonial-author span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Faculty  Staff Section
--------------------------------------------------------------*/
.faculty--staff .faculty-search-bar .search-input-wrapper {
  position: relative;
  max-width: 100%;
}

.faculty--staff .faculty-search-bar .search-input-wrapper .search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 1.1rem;
  z-index: 2;
}

.faculty--staff .faculty-search-bar .search-input-wrapper .search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.3s ease;
}

.faculty--staff .faculty-search-bar .search-input-wrapper .search-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-weight: 300;
}

.faculty--staff .faculty-search-bar .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faculty--staff .featured-faculty {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 40px color-mix(in srgb, var(--default-color), transparent 94%);
}

.faculty--staff .featured-faculty .featured-image img {
  border-radius: 16px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.faculty--staff .featured-faculty .featured-content {
  padding-left: 2rem;
}

.faculty--staff .featured-faculty .featured-content .faculty-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.faculty--staff .featured-faculty .featured-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.faculty--staff .featured-faculty .featured-content .title {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.faculty--staff .featured-faculty .featured-content .biography {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  font-weight: 300;
}

.faculty--staff .featured-faculty .featured-content .expertise-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.faculty--staff .featured-faculty .featured-content .expertise-areas span {
  padding: 0.5rem 1.2rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 300;
}

.faculty--staff .featured-faculty .featured-content .contact-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.faculty--staff .featured-faculty .featured-content .contact-actions .contact-btn {
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.faculty--staff .featured-faculty .featured-content .contact-actions .contact-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.faculty--staff .featured-faculty .featured-content .contact-actions .social-links {
  display: flex;
  gap: 1rem;
}

.faculty--staff .featured-faculty .featured-content .contact-actions .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faculty--staff .featured-faculty .featured-content .contact-actions .social-links a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.faculty--staff .faculty-profile {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.faculty--staff .faculty-profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.faculty--staff .faculty-profile .profile-image {
  overflow: hidden;
}

.faculty--staff .faculty-profile .profile-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.faculty--staff .faculty-profile .profile-content {
  padding: 2rem;
}

.faculty--staff .faculty-profile .profile-content h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.faculty--staff .faculty-profile .profile-content .position {
  color: var(--accent-color);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.faculty--staff .faculty-profile .profile-content .department-info {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.faculty--staff .faculty-profile .profile-content .research-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faculty--staff .faculty-profile .profile-content .research-focus span {
  padding: 0.3rem 0.8rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 300;
}

.faculty--staff .faculty-profile .profile-actions {
  padding: 0 2rem 2rem;
}

.faculty--staff .faculty-profile .profile-actions .view-profile {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.faculty--staff .faculty-profile .profile-actions .view-profile::after {
  content: "→";
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.faculty--staff .faculty-profile .profile-actions .view-profile:hover::after {
  margin-left: 1rem;
}

.faculty--staff .load-more-section .load-more-btn {
  padding: 1rem 3rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.faculty--staff .load-more-section .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .faculty--staff .featured-faculty {
    padding: 2rem;
  }

  .faculty--staff .featured-faculty .featured-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .faculty--staff .featured-faculty .featured-content h2 {
    font-size: 2rem;
  }

  .faculty--staff .featured-faculty .featured-content .contact-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .faculty--staff .filter-tabs {
    flex-wrap: wrap;
    gap: 1rem !important;
    justify-content: center;
  }

  .faculty--staff .featured-faculty {
    padding: 1.5rem;
  }

  .faculty--staff .featured-faculty .featured-content h2 {
    font-size: 1.8rem;
  }

  .faculty--staff .featured-faculty .featured-content .expertise-areas {
    gap: 0.5rem;
  }

  .faculty--staff .featured-faculty .featured-content .expertise-areas span {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

/*--------------------------------------------------------------
# Gallery Showcase Section
--------------------------------------------------------------*/
.gallery-showcase .gallery-carousel {
  margin-bottom: 2rem;
}

.gallery-showcase .gallery-carousel .swiper-wrapper {
  height: auto !important;
}

.gallery-showcase .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-showcase .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-showcase .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

.gallery-showcase .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .gallery-showcase .gallery-item img {
    height: 200px;
  }
}

.gallery-showcase .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 60%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-showcase .gallery-item .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
}

.gallery-showcase .btn-gallery {
  background: #1b4d3e;
  color: var(--contrast-color);
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-showcase .btn-gallery:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
  background: #1b4d3e;
}

@media (max-width: 576px) {
  .gallery-showcase .btn-gallery {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.5rem;
  text-decoration: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# News Hero Section
--------------------------------------------------------------*/
.news-hero .featured-post {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.news-hero .featured-post img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.news-hero .featured-post .post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 2rem;
  color: var(--contrast-color);
}

.news-hero .featured-post .post-content {
  max-width: 800px;
}

.news-hero .featured-post .post-title {
  font-size: 2rem;
  margin: 1rem 0;
}

.news-hero .featured-post .post-title a {
  color: var(--contrast-color);
}

.news-hero .featured-post .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.news-hero .featured-post .post-excerpt {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.news-hero .secondary-post {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.news-hero .secondary-post .post-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.news-hero .secondary-post .post-content {
  padding: 1.5rem;
}

.news-hero .secondary-post .post-title {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.news-hero .secondary-post .post-title a {
  color: var(--heading-color);
}

.news-hero .secondary-post .post-title a:hover {
  color: var(--accent-color);
}

.news-hero .news-tabs {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
}

.news-hero .news-tabs .nav-tabs {
  border: none;
  padding: 1rem 1rem 0;
  gap: 0.5rem;
  background-color: var(--surface-color);
}

.news-hero .news-tabs .nav-tabs .nav-link {
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--default-color);
  font-weight: 500;
  border-radius: 20px;
  transition: 0.3s;
}

.news-hero .news-tabs .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.news-hero .news-tabs .nav-tabs .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.news-hero .news-tabs .tab-content {
  padding: 1.5rem;
}

.news-hero .tab-post {
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.news-hero .tab-post:first-child {
  padding-top: 0;
}

.news-hero .tab-post:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.news-hero .tab-post img {
  border-radius: 8px;
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.news-hero .tab-post .post-content {
  padding-left: 1rem;
}

.news-hero .tab-post .post-title {
  font-size: 0.9375rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.news-hero .tab-post .post-title a {
  color: var(--heading-color);
}

.news-hero .tab-post .post-title a:hover {
  color: var(--accent-color);
}

.news-hero .category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-right: 0.5rem;
}

.news-hero .date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.news-hero .post-author {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

.news-hero .post-author span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.news-hero .post-author a {
  color: var(--accent-color);
  font-weight: 500;
}

.news-hero .post-author a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 991.98px) {
  .news-hero .featured-post img {
    height: 400px;
  }

  .news-hero .featured-post .post-title {
    font-size: 1.75rem;
  }

  .news-hero .secondary-post .post-image img {
    height: 220px;
  }

  .news-hero .news-tabs {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .news-hero .featured-post img {
    height: 500px;
  }

  .news-hero .featured-post .post-title {
    font-size: 1.5rem;
  }

  .news-hero .featured-post .post-overlay {
    padding: 1.5rem;
  }

  .news-hero .tab-post .post-title {
    font-size: 0.875rem;
  }

  .news-hero .tab-post img {
    height: 80px;
  }
}

/*--------------------------------------------------------------
# News Posts Section
--------------------------------------------------------------*/
.news-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.news-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.news-posts .post-box .post-img img {
  transition: 0.5s;
}

.news-posts .post-box .meta {
  margin-top: 15px;
}

.news-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-color);
}

.news-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.news-posts .post-box .post-title {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.news-posts .post-box p {
  margin: 15px 0 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.news-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.news-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.news-posts .post-box:hover .post-title {
  color: var(--accent-color);
}

.news-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
}

.pagination-2 nav {
  position: relative;
}

.pagination-2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.pagination-2 li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  user-select: none;
}

.pagination-2 li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
}

.pagination-2 li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pagination-2 li a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pagination-2 li a i {
  font-size: 14px;
}

.pagination-2 li a span {
  margin: 0 4px;
}

@media (max-width: 575px) {
  .pagination-2 ul {
    gap: 4px;
  }

  .pagination-2 li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .post-img {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.blog-details .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-details .post-img {
    height: 300px;
  }
}

.blog-details .article-content {
  padding: 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content {
    padding: 1.5rem;
  }
}

.blog-details .meta-categories {
  margin-bottom: 1rem;
}

.blog-details .meta-categories .category,
.blog-details .meta-categories .reading-time {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.blog-details .meta-categories .category i,
.blog-details .meta-categories .reading-time i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-details .title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 1rem 0 1.5rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .blog-details .title {
    font-size: 2rem;
  }
}

.blog-details .meta-top {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-top ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-details .meta-top ul li {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-top ul li i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.blog-details .meta-top ul li .author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.blog-details .meta-top ul li a {
  color: var(--heading-color);
}

.blog-details .meta-top ul li a:hover {
  color: var(--accent-color);
}

.blog-details .content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-details .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--heading-color);
}

.blog-details .content p {
  margin-bottom: 1.5rem;
}

.blog-details .content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.blog-details .content ul li {
  margin-bottom: 0.5rem;
}

.blog-details .content .content-image {
  margin: 2rem 0;
}

.blog-details .content .content-image img {
  width: 100%;
  border-radius: 8px;
}

.blog-details .content .content-image figcaption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .content .content-image-split {
  margin: 2rem 0;
}

.blog-details .content .content-image-split img {
  border-radius: 8px;
}

.blog-details .content blockquote {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.blog-details .content blockquote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
}

.blog-details .content blockquote cite {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-style: normal;
  display: block;
}

.blog-details .content blockquote cite:before {
  content: "— ";
}

.blog-details .meta-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-details .meta-bottom .article-tags {
  display: flex;
  align-items: center;
}

.blog-details .meta-bottom .article-tags i {
  margin-right: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-bottom .article-tags .tags {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .meta-bottom .article-tags .tags li a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.blog-details .meta-bottom .article-tags .tags li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .meta-bottom .article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .meta-bottom .article-share span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-bottom .article-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .meta-bottom .article-share a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .meta-bottom .article-share a i {
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Layanan Section
--------------------------------------------------------------*/
.layanan .layanan-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.layanan .layanan-content h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.layanan .layanan-content p {
  margin-bottom: 30px;
}

.layanan .layanan-content .timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 30px;
}

.layanan .layanan-content .timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.layanan .layanan-content .timeline .timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.layanan .layanan-content .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.layanan .layanan-content .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.layanan .layanan-content .timeline .timeline-item .timeline-content h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.layanan .layanan-content .timeline .timeline-item .timeline-content p {
  margin-bottom: 0;
}

.layanan .layanan-image {
  position: relative;
}

.layanan .layanan-image img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.layanan .layanan-image .mission-vision {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .layanan .layanan-image .mission-vision {
    grid-template-columns: 1fr;
  }
}

.layanan .layanan-image .mission-vision .mission,
.layanan .layanan-image .mission-vision .vision {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.layanan .layanan-image .mission-vision .mission h3,
.layanan .layanan-image .mission-vision .vision h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}

.layanan .layanan-image .mission-vision .mission h3:before,
.layanan .layanan-image .mission-vision .vision h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 20px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.layanan .layanan-image .mission-vision .mission p,
.layanan .layanan-image .mission-vision .vision p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.layanan .core-values {
  margin-top: 30px;
}

.layanan .core-values h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.layanan .core-values .value-card {
  background-color: var(--surface-color);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.layanan .core-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.layanan .core-values .value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.layanan .core-values .value-card .value-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.layanan .core-values .value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.layanan .core-values .value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Offer Cards #Program Haji Section
--------------------------------------------------------------*/
#program-haji {
  padding: 60px 18px;
  font-family: var(--heading-font);
  position: relative;
  overflow: hidden;
}

/* subtle floating background aura */
#program-haji::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at center, rgba(0, 89, 0, 0.08), transparent 70%);
  top: -160px;
  left: -180px;
  filter: blur(60px);
  z-index: 0;
  animation: slowFloat 12s ease-in-out infinite alternate;
}

#program-haji::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at center, rgba(0, 89, 0, 0.05), transparent 70%);
  bottom: -140px;
  right: -160px;
  filter: blur(50px);
  z-index: 0;
  animation: slowFloat 14s ease-in-out infinite alternate-reverse;
}

@keyframes slowFloat {
  from {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }

  to {
    transform: translateY(-20px) scale(1.05);
    opacity: 1;
  }
}

.section-title {
  font-size: 28px;
  color: var(--heading);
  font-weight: 800;
  letter-spacing: 0.2px;
  position: relative;
  text-align: center;
  margin-bottom: 12px;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(90deg, #1b4d3e, #2c5e4f);
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* GRID */
.container {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 26px;
}

/* CARD */
.pq-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(250, 250, 251, 0.6));
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.45s cubic-bezier(.2, .9, .3, 1), box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  min-height: 580px;
  border: 1px solid rgba(0, 89, 0, 0.05);
}

.pq-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.2);
}

/* featured accent */
.pq-card.featured {
  border: 2px solid #2c5e4f;
  box-shadow: 0 18px 50px rgba(0, 89, 73, 0.2);
}

/* MEDIA (image) */
.pq-card-media {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.pq-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: contrast(1.04) saturate(1.08);
}

.pq-card:hover .pq-card-media img {
  transform: scale(1.12) rotate(-0.4deg);
  filter: contrast(1.1) saturate(1.2);
}

/* animated badge */
.pq-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.538);
  color: #1b4d3e;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 89, 0, 0.15);
}

.pq-badge-accent {
  color: #fff;
  background: linear-gradient(90deg, #2c5e4f, #1b4d3e);
  box-shadow: 0 8px 26px rgba(0, 89, 0, 0.2);
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* BODY */
.pq-card-body {
  padding: 26px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.pq-name {
  color: var(--heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: color .3s;
}

/* META */
.pq-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  background: #097a5812;
  padding: 10px 12px;
  border-radius: 10px;
  color: #1b4d3e;
  border: 1px solid rgba(0, 89, 0, 0.08);
  transition: all 0.3s;
  height: 46px;
}

.meta-item i {
  font-size: 16px;
  color: #2c5e4f;
}

.meta-item span {
  color: rgba(0, 0, 0, 0.727);
}

/* .meta-item:hover {
  background: rgba(0, 89, 0, 0.1);
  transform: scale(1.05);
} */

/* PRICE */
.pq-price {
  color: #2c5e4f;
  font-weight: 900;
  font-size: 22px;
  margin-top: 8px;
}

.price-note {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

/* FEATURES */
.pq-subtitle {
  margin: 8px 0 4px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 700;
}

.pq-features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

/* .pq-features li {
  position: relative;
  padding-left: 22px;
  transition: transform 0.25s;
} */
.pq-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(90deg, #1b4d3e, #2c5e4f);
  box-shadow: 0 4px 12px rgba(0, 89, 0, 0.15);
}

/* .pq-features li:hover {
  transform: translateX(4px);
} */

/* CTA */
.pq-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  align-items: center;
  padding: 0 16px;
}

.pq-cta-row .btn {
  width: 100%;
  max-width: 100%;
  text-align: center;
  justify-content: center;
}

.pq-btn-primary {
  background: linear-gradient(90deg, #1b4d3e, #2c5e4f);
  color: white;
  box-shadow: 0 8px 28px rgba(0, 89, 0, 0.15);
  border: none;
}

.pq-btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 89, 0, 0.25);
  color: white;
}

.pq-btn-detail {
  background: linear-gradient(90deg, #1b4d3e, #2c5e4f);
  color: white;
}

.pq-btn-detail:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 89, 0, 0.25);
  color: white;
}

/* BANNER */
.program-banner {
  margin-top: 40px;
  background: linear-gradient(90deg, #206752d6, #1b4d3e);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(0, 89, 0, 0.08);
  box-shadow: 0 10px 40px rgba(0, 89, 0, 0.08);
  transition: all 0.4s;
  color: white;
}

.program-banner:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 60px rgba(0, 89, 0, 0.12);
}

.banner-left h2 {
  margin: 0;
  color: var(--heading);
  font-size: 22px;
  font-weight: 800;
}

.banner-left p {
  color: var(--muted);
  margin: 8px 0 14px;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.banner-btn {
  background: #1b4d3e;
  color: white;
  border: 1px solid rgba(0, 89, 0, 0.2);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background: #1b4d3e9b;
  border-color: #1b4d3e;
  color: white;
}

.banner-btn-outline {
  background: white;
  color: #1b4d3e;
  border: 1px solid rgba(0, 89, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .grid-cards {
    grid-template-columns: 1fr;
  }

  .pq-card {
    min-height: auto;
  }

  .program-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* quick steps */
.quick-steps h6 {
  margin: 0 0 6px;
  color: var(--heading);
  font-size: 13px;
  font-weight: 800;
}

.quick-steps ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

/* modal */
/* ===== MODAL UPGRADED STYLE ===== */
.pq-modal-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(880px, 94%);
  max-height: 88vh;
  overflow: auto;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #ffffff);
  box-shadow: 0 28px 80px rgba(0, 60, 20, 0.45);
  border: 1px solid rgba(0, 89, 0, 0.2);
  z-index: 100;
  padding: 36px 28px 28px;
}

.pq-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 90;
  animation: none !important;
  transition: none !important;
}

.pq-modal-backdrop.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  animation: none !important;
  transition: none !important;
}

/* header feel */
.pq-modal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1b4d3e, #2c5e4f);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

/* modal content */
.pq-modal-content {
  color: #2e3b32;
  line-height: 1.7;
  font-size: 15px;
  font-family: var(--heading-font);
}

.pq-modal-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1b4d3e;
  margin-bottom: 10px;
}

.pq-modal-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2c5e4f;
  margin: 18px 0 10px;
}

.pq-modal-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 60, 20, 0.2);
}

.pq-modal-content table tr:nth-child(even) {
  background: #f5faf5;
}

.pq-modal-content table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 89, 0, 0.08);
  vertical-align: top;
  font-size: 14px;
}

.pq-modal-content ul {
  margin: 8px 0 0 20px;
  color: #334133;
  font-size: 14px;
}

.pq-modal-content ul li {
  margin-bottom: 6px;
  position: relative;
  list-style: none;
  padding-left: 18px;
}

.pq-modal-content ul li::before {
  content: "✔";
  color: #009c42;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 700;
}

.pq-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: none;
  background: transparent;
  color: #1b4d3e;
  font-size: 30px;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  box-shadow: none;
  transition: color 0.25s ease;
}

.pq-modal-close:hover {
  color: #1b4d3e;
  transform: none;
}

.pq-modal-backdrop,
.pq-modal-card {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.pq-modal-backdrop.active,
.pq-modal-card.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  animation: modalPop 0.4s ease-out;
}

.pq-modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 89, 0, 0.1);
  margin-top: 20px;
}

.pq-modal-cta {
  background: linear-gradient(90deg, #1b4d3e, #2c5e4f);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s;
}

.pq-modal-cta:hover {
  box-shadow: 0 8px 24px rgba(0, 89, 0, 0.3);
  transform: translateY(-2px);
  color: white;
}

.pq-modal-cta-outline {
  background: white;
  color: #1b4d3e;
  border: 1px solid rgba(0, 89, 0, 0.2);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s;
}

.pq-modal-cta-outline:hover {
  background: #f2fff4;
  transform: translateY(-2px);
}

.pq-modal-cta,
.pq-modal-cta-outline {
  display: inline-block;
  margin: 8px 0;
}

@media (max-width: 768px) {

  .pq-modal-cta,
  .pq-modal-cta-outline {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    margin-bottom: 12px;
    font-size: 1rem;
  }
}

@keyframes modalPop {
  from {
    opacity: 0;
    scale: 0.94;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

@media (max-width: 980px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .grid-cards {
    grid-template-columns: 1fr;
  }

  .pq-card {
    min-height: auto;
  }

  .program-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
/* ======== PAKET UMROH SECTION (Final Clean Version) ======== */
.pricing {
  padding: 80px 0;
  background: transparent;
  position: relative;
}

/* ===== Card Style ===== */
.pricing .price-card {
  background: #fff;
  border: 1px solid rgba(0, 89, 0, 0.1);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing .price-card .cta {
  margin-top: auto;
}


.pricing .price-card:hover {
  transform: translateY(-6px);
  border-color: #1b4d3e;
  box-shadow: 0 10px 25px rgba(0, 123, 69, 0.25);
}

/* ===== Card Content ===== */
.pricing .price-card .badge-title {
  background: #e6f6ea;
  color: #1b4d3e;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.pricing .price-card .title {
  font-size: 22px;
  font-weight: 800;
  color: #004d2f;
  margin-bottom: 6px;
}

.pricing .price-card .subtitle {
  color: #5a5a5a;
  font-size: 14px;
  margin-bottom: 18px;
}

/* ===== Harga ===== */
.pricing .price-card .price-wrap {
  color: #1b4d3e;
  padding: 12px 0;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.5px;
}

.pricing .price-card .price-wrap sup {
  font-size: 16px;
  top: -0.4em;
  position: relative;
  margin-right: 2px;
}

/* ===== Fitur ===== */
.pricing .price-card .feature-list {
  text-align: left;
  padding: 0 10px;
  margin-bottom: 25px;
}

.pricing .price-card .feature-list li {
  padding: 8px 0;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.pricing .price-card .feature-list li i {
  color: #007b45;
  font-size: 18px;
}

.pricing .price-card .feature-list li:hover {
  color: #1b4d3e;
  transform: translateX(4px);
}

/* ===== Tombol ===== */
.pricing .btn-choose {
  background: #1b4d3e;
  color: white;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 0;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 16px;
  display: inline-block;
}

.pricing .btn-choose:hover {
  background: white;
  color: #1b4d3e;
  border-color: #1b4d3e;
  box-shadow: 0 4px 15px rgba(0, 89, 0, 0.2);
  transform: translateY(-2px);
}

/* ===== Animasi Fade Up ===== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing .price-card {
  animation: fadeUp 0.8s ease forwards;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .pricing .price-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .pricing h3 {
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team .member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 80%);
}

.team .member-card:hover .member-image-wrapper img {
  transform: scale(1.05);
}

.team .member-image-wrapper {
  overflow: hidden;
  position: relative;
}

.team .member-image-wrapper img {
  width: 100%;
  aspect-ratio: 1/1.1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team .member-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team .member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.team .member-role {
  font-size: 0.875rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.team .member-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.team .member-socials {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team .member-socials a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 8px;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.team .member-socials a:hover {
  color: var(--accent-color);
}

@media (max-width: 991.98px) {
  .team .member-name {
    font-size: 1.15rem;
  }

  .team .member-role {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {
  .team .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }

  .team .member-card {
    box-shadow: 0 3px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .team .member-name {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Location Cards Section
--------------------------------------------------------------*/
.location-cards .area-highlight {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.location-cards .area-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.location-cards .area-highlight:hover .area-image-wrapper img {
  transform: scale(1.08);
}

.location-cards .area-highlight:hover .area-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.location-cards .area-highlight .area-image-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.features .tab-content .visual-content img {
  width: 100%;
  height: 450px !important;
  object-fit: cover;
  border-radius: 8px;
}

.location-cards .area-highlight .area-image-wrapper .area-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--heading-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.location-cards .area-highlight .area-image-wrapper .area-badge i {
  font-size: 13px;
  color: var(--accent-color);
}

.location-cards .area-highlight .area-info {
  padding: 20px;
}

.location-cards .area-highlight .area-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.3;
}

.location-cards .area-highlight .area-info p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
  margin-bottom: 15px;
}

.location-cards .area-highlight .area-info .quick-stats {
  display: flex;
  gap: 15px;
}

.location-cards .area-highlight .area-info .quick-stats span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.location-cards .area-highlight .area-info .quick-stats span i {
  color: var(--accent-color);
  font-size: 11px;
}

.location-cards .location-overview {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  border-radius: 20px;
  padding: 40px 30px;
  color: var(--contrast-color);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.location-cards .location-overview::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--contrast-color), transparent 95%);
  border-radius: 50%;
  z-index: 0;
}

.location-cards .location-overview .overview-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 30px;
}

.location-cards .location-overview .overview-header .location-marker {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.location-cards .location-overview .overview-header .location-marker i {
  font-size: 30px;
  color: var(--accent-color);
}

.location-cards .location-overview .overview-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--contrast-color);
}

.location-cards .location-overview .overview-header .overview-subtitle {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
}

.location-cards .location-overview .benefits-list {
  position: relative;
  z-index: 2;
}

.location-cards .location-overview .benefits-list .benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  padding: 12px 15px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.location-cards .location-overview .benefits-list .benefit-item:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  transform: translateX(5px);
}

.location-cards .location-overview .benefits-list .benefit-item .benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--contrast-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-cards .location-overview .benefits-list .benefit-item .benefit-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.location-cards .location-overview .benefits-list .benefit-item .benefit-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--contrast-color);
}

.location-cards .location-overview .benefits-list .benefit-item .benefit-content span {
  font-size: 12px;
  opacity: 0.8;
}

.location-guide-btns {
  /* display: flex; */
  gap: 12px;
  justify-content: center;
  /* bisa ganti start/center/end */
  flex-wrap: wrap;
}

.location-guide-btn.secondary-btn {
  background: transparent;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.location-guide-btn.secondary-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.location-guide-btns .location-guide-btn i {
  transition: transform 0.3s ease;
}

.location-cards .location-overview .location-guide-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.location-cards .location-overview .location-guide-btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

.location-cards .location-overview .location-guide-btn:hover i {
  transform: translateX(3px);
}

.location-cards .location-overview .location-guide-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .location-cards .location-overview {
    margin-top: 30px;
  }

  .location-cards .location-overview .overview-header .location-marker {
    width: 60px;
    height: 60px;
  }

  .location-cards .location-overview .overview-header .location-marker i {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .location-cards .area-highlight .area-image-wrapper {
    height: 160px;
  }

  .location-cards .area-highlight .area-image-wrapper .area-badge {
    padding: 6px 10px;
    font-size: 11px;
  }

  .location-cards .area-highlight .area-info {
    padding: 18px;
  }

  .location-cards .area-highlight .area-info .quick-stats {
    flex-direction: column;
    gap: 8px;
  }

  .location-cards .location-overview {
    padding: 30px 25px;
  }

  .location-cards .location-overview .overview-header h3 {
    font-size: 20px;
  }

  .location-cards .location-overview .benefits-list .benefit-item {
    padding: 10px 12px;
  }

  .location-cards .location-overview .benefits-list .benefit-item .benefit-icon {
    width: 35px;
    height: 35px;
  }

  .location-cards .location-overview .benefits-list .benefit-item .benefit-icon i {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .tabs-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.features .tabs-header {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .features .tabs-header {
    margin-bottom: 60px;
  }
}

.features .tabs-header .nav-tabs {
  border: none;
  justify-content: center;
  gap: 0;
  background: rgba(0, 139, 134, 0.081);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 20px color-mix(in srgb, var(--default-color), transparent 94%);
}

@media (max-width: 768px) {
  .features .tabs-header .nav-tabs {
    flex-direction: column;
    gap: 4px;
  }
}

.features .tabs-header .nav-tabs .nav-item {
  flex: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .features .tabs-header .nav-tabs .nav-item {
    flex: none;
    width: 100%;
  }
}

.features .tabs-header .nav-tabs .nav-link {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.features .tabs-header .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.features .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-number {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.features .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text h5 {
  color: var(--contrast-color);
  font-size: 15px;
}

.features .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text small {
  color: var(--contrast-color);
}

.features .tabs-header .nav-tabs .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.features .tabs-header .nav-tabs .nav-link:hover:not(.active) .tab-content-preview .tab-number {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.features .tabs-header .nav-tabs .nav-link .tab-content-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

@media (max-width: 768px) {
  .features .tabs-header .nav-tabs .nav-link .tab-content-preview {
    padding: 16px 20px;
    gap: 12px;
  }
}

.features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
  text-align: left;
}

@media (max-width: 768px) {
  .features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
    flex: 1;
  }
}

.features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h5 {
  margin: 0 0 2px 0;
  font-size: 14px;
  font-weight: 500;
  color: #1b4d3e;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h5 {
    font-size: 13px;
  }
}

.features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text small {
  font-size: 11px;
  color: color-mix(in srgb, #1b4d3e, transparent 40%);
  transition: all 0.3s ease;
  display: block;
  line-height: 1;
}

.features .tab-content .tab-pane {
  animation: fadeInContent 0.5s ease-in-out;
}

.features .tab-content .content-area {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .features .tab-content .content-area {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.features .tab-content .content-area .content-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}

.features .tab-content .content-area .content-badge i {
  font-size: 14px;
}

.features .tab-content .content-area h3 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .features .tab-content .content-area h3 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .features .tab-content .content-area h3 {
    font-size: 24px;
  }
}

.features .tab-content .content-area p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .features .tab-content .content-area p {
    font-size: 15px;
  }
}

.features .tab-content .content-area .highlight-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .features .tab-content .content-area .highlight-stats {
    gap: 24px;
  }
}

.features .tab-content .content-area .highlight-stats .stat-item .stat-value {
  display: block;
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .features .tab-content .content-area .highlight-stats .stat-item .stat-value {
    font-size: 24px;
  }
}

.features .tab-content .content-area .highlight-stats .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features .tab-content .content-area .feature-points {
  margin-bottom: 40px;
}

.features .tab-content .content-area .feature-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.features .tab-content .content-area .feature-points .point-item:last-child {
  margin-bottom: 0;
}

.features .tab-content .content-area .feature-points .point-item i {
  font-size: 12px;
  color: var(--accent-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.features .tab-content .content-area .feature-points .point-item span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
}

.features .tab-content .content-area .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.features .tab-content .content-area .explore-link:hover {
  gap: 12px;
  color: var(--accent-color);
}

.features .tab-content .content-area .explore-link:hover i {
  transform: translate(2px, -2px);
}

.features .tab-content .content-area .explore-link i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.features .tab-content .visual-content {
  position: relative;
  padding-left: 40px;
}

@media (max-width: 992px) {
  .features .tab-content .visual-content {
    padding-left: 0;
  }
}

.features .tab-content .visual-content img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 8px;
}

.features .tab-content .visual-content .floating-element {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .features .tab-content .visual-content .floating-element {
    bottom: 15px;
    right: 15px;
  }
}

.features .tab-content .visual-content .floating-element .floating-card {
  background: var(--surface-color);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  animation: floatAnimation 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .features .tab-content .visual-content .floating-element .floating-card {
    padding: 12px 16px;
    gap: 10px;
  }
}

.features .tab-content .visual-content .floating-element .floating-card i {
  font-size: 20px;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .features .tab-content .visual-content .floating-element .floating-card i {
    font-size: 18px;
  }
}

.features .tab-content .visual-content .floating-element .floating-card .card-info span {
  display: block;
  font-size: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.features .tab-content .visual-content .floating-element .floating-card .card-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .features .tab-content .visual-content .floating-element .floating-card .card-info strong {
    font-size: 12px;
  }
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* FAQ Kiri + Kanan */
.faq-left-content {
  padding: 30px;
  background-color: #e6f2ef;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.faq-icon {
  font-size: 3rem;
  color: #2c5e4f;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.faq-icon:hover {
  transform: rotate(15deg) scale(1.1);
}

.faq-info-icon {
  font-size: 1.5rem;
  color: #2c5e4f;
  margin-top: 15px;
  margin-bottom: 10px;
}

.faq-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  font-weight: 500;
  color: #1b4d3e;
  transition: background 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #1b4d3e;
}

/* CTA animasi */
#cta-bimbingan {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(120deg, #f5f5f5, #eaeaea);
  color: #333;
  position: relative;
  overflow: hidden;
}

.cta-btn {
  transition: all 0.3s ease;
  color: #fff;
  background-color: #2c5e4f;
  border-color: #2c5e4f;
}

.cta-btn:hover {
  transform: scale(1.05);
  background-color: #1d4237 !important;
  color: #fff !important;
  border-color: #2c5e4f;
}

.cta-decor {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta-decor1 {
  top: -50px;
  left: -50px;
}

.cta-decor2 {
  bottom: -50px;
  right: -50px;
  animation-delay: 3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(20deg);
  }
}

.why-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  color: #1b4d3e;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.why-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1b4d3e;
  transition: transform 0.3s ease;
}

.why-card h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 19px;
}

.why-card p {
  font-size: 0.9rem;
  color: #555;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.why-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* CSS Section Akomodasi & Tips */
.akomodasi-section {
  padding: 60px 0;
}

.akomodasi-section .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.akomodasi-section .section-header p {
  font-size: 1rem;
  color: var(--accent-color);
}

.lokasi-card,
.tips-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.lokasi-card:hover,
.tips-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.lokasi-icon,
.tips-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.lokasi-card h3,
.tips-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.lokasi-card p,
.tips-card p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
}

/* optional: bg-light for Tips section */
.bg-light {
  background-color: var(--background-color-light);
}

/* --- Extra Services --- */
.extra-services .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.extra-services .section-subtitle {
  font-size: 1rem;
  color: var(--accent-color);
  margin-bottom: 40px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff, #fff);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.service-card h3 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
  font-size: 23px;
}

.service-card p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

/* --- Required Documents --- */
.required-docs .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.required-docs .section-subtitle {
  font-size: 1rem;
  color: var(--accent-color);
  margin-bottom: 40px;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  justify-items: center;
}

.doc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doc-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.doc-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.doc-item span {
  font-weight: 500;
  color: var(--default-color);
  text-align: center;
}

.required-docs .docs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.required-docs .docs-list li {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  border-radius: 12px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--default-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: default;
}

.required-docs .docs-list li i {
  font-size: 1.6rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.required-docs .docs-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #e0fff0, #f9fff9);
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.prep-item {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all .3s ease;
}

.prep-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.prep-item i {
  font-size: 2rem;
  color: #2c5e4f;
  margin-bottom: 10px;
}

.prep-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 20px;
}

.prep-item p {
  font-size: 0.95rem;
  color: #555;
}

/*--------------------------------------------------------------
# Agent Profile 2 Section
--------------------------------------------------------------*/
.agent-profile-2 .agent-photo-wrapper {
  position: relative;
}

.agent-profile-2 .agent-photo-wrapper .agent-photo {
  border-radius: 15px;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.agent-profile-2 .agent-photo-wrapper .agent-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.agent-profile-2 .agent-photo-wrapper .agent-badge i {
  font-size: 12px;
}

.agent-profile-2 .agent-info .agent-name {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .agent-profile-2 .agent-info .agent-name {
    font-size: 2.5rem;
  }
}

.agent-profile-2 .agent-info .agent-title {
  font-size: 1.25rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.agent-profile-2 .agent-info .agent-tagline {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.agent-profile-2 .contact-info-hero {
  margin-bottom: 2rem;
}

.agent-profile-2 .contact-info-hero .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.agent-profile-2 .contact-info-hero .contact-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  width: 20px;
}

.agent-profile-2 .contact-info-hero .contact-item span {
  font-weight: 500;
}

.agent-profile-2 .hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.agent-profile-2 .hero-actions .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.agent-profile-2 .hero-actions .btn.btn-primary {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.agent-profile-2 .hero-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.agent-profile-2 .hero-actions .btn.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.agent-profile-2 .hero-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .agent-profile-2 .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

.agent-profile-2 .stats-section {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 3rem 2rem;
  margin: 4rem 0;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.agent-profile-2 .stats-section .stat-item {
  text-align: center;
}

.agent-profile-2 .stats-section .stat-item .stat-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.agent-profile-2 .stats-section .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.agent-profile-2 .stats-section .stat-item .stat-label {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.agent-profile-2 .stats-section .stat-item:hover .stat-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.agent-profile-2 .sidebar-info .contact-card,
.agent-profile-2 .sidebar-info .specialties-card,
.agent-profile-2 .sidebar-info .certifications-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.agent-profile-2 .sidebar-info .contact-card h4,
.agent-profile-2 .sidebar-info .specialties-card h4,
.agent-profile-2 .sidebar-info .certifications-card h4 {
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.agent-profile-2 .sidebar-info .contact-details .contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.agent-profile-2 .sidebar-info .contact-details .contact-detail i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 3px;
  width: 20px;
}

.agent-profile-2 .sidebar-info .contact-details .contact-detail strong {
  display: block;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.agent-profile-2 .sidebar-info .contact-details .contact-detail p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
}

.agent-profile-2 .sidebar-info .social-links {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}

.agent-profile-2 .sidebar-info .social-links a {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.agent-profile-2 .sidebar-info .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.agent-profile-2 .sidebar-info .specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.agent-profile-2 .sidebar-info .specialty-tags .specialty-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.agent-profile-2 .sidebar-info .cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.agent-profile-2 .sidebar-info .cert-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.agent-profile-2 .sidebar-info .cert-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.agent-profile-2 .bio-content h3,
.agent-profile-2 .bio-content h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.agent-profile-2 .bio-content h3 {
  font-size: 2rem;
  font-weight: 600;
}

.agent-profile-2 .bio-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
}

.agent-profile-2 .bio-content p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.agent-profile-2 .bio-content .achievements ul {
  list-style: none;
  padding: 0;
}

.agent-profile-2 .bio-content .achievements ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.agent-profile-2 .bio-content .achievements ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.agent-profile-2 .testimonials-section .section-heading {
  font-size: 2.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.agent-profile-2 .testimonials-section .swiper-wrapper {
  height: auto !important;
}

.agent-profile-2 .testimonials-section .testimonial-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.agent-profile-2 .testimonials-section .testimonial-card .testimonial-content {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.agent-profile-2 .testimonials-section .testimonial-card .testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  position: relative;
}

.agent-profile-2 .testimonials-section .testimonial-card .testimonial-content p:before {
  content: "";
  font-size: 3rem;
  color: var(--accent-color);
  position: absolute;
  top: -10px;
  left: -15px;
  font-family: serif;
}

.agent-profile-2 .testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.agent-profile-2 .testimonials-section .testimonial-card .testimonial-author .author-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.agent-profile-2 .testimonials-section .testimonial-card .testimonial-author .author-info h5 {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.agent-profile-2 .testimonials-section .testimonial-card .testimonial-author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.agent-profile-2 .testimonials-section .swiper-pagination {
  margin-top: 2rem;
}

.agent-profile-2 .testimonials-section .swiper-pagination .swiper-pagination-bullet {
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.agent-profile-2 .testimonials-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.agent-profile-2 .contact-form-section {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 4rem;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 88%);
}

@media (max-width: 768px) {
  .agent-profile-2 .contact-form-section {
    padding: 2rem 1.5rem;
  }
}

.agent-profile-2 .contact-form-section h3 {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 2.2rem;
}

.agent-profile-2 .contact-form-section .php-email-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.agent-profile-2 .contact-form-section .php-email-form input[type=text],
.agent-profile-2 .contact-form-section .php-email-form input[type=email],
.agent-profile-2 .contact-form-section .php-email-form input[type=tel],
.agent-profile-2 .contact-form-section .php-email-form select,
.agent-profile-2 .contact-form-section .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.agent-profile-2 .contact-form-section .php-email-form input[type=text]:focus,
.agent-profile-2 .contact-form-section .php-email-form input[type=email]:focus,
.agent-profile-2 .contact-form-section .php-email-form input[type=tel]:focus,
.agent-profile-2 .contact-form-section .php-email-form select:focus,
.agent-profile-2 .contact-form-section .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.agent-profile-2 .contact-form-section .php-email-form input[type=text]::placeholder,
.agent-profile-2 .contact-form-section .php-email-form input[type=email]::placeholder,
.agent-profile-2 .contact-form-section .php-email-form input[type=tel]::placeholder,
.agent-profile-2 .contact-form-section .php-email-form select::placeholder,
.agent-profile-2 .contact-form-section .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.agent-profile-2 .contact-form-section .php-email-form .btn {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.agent-profile-2 .contact-form-section .php-email-form .btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

/* === AGENT PROFILE CUSTOM STYLE === */
.agentx-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.agentx-name {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.3rem;
}

.agentx-title {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 0.8rem;
}

.agentx-tagline {
  font-size: 1rem;
  color: #475569;
  font-style: italic;
  border-left: 3px solid #2c5e4f;
  padding-left: 0.8rem;
  margin-bottom: 1.2rem;
}

.agentx-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.agentx-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #334155;
  font-size: 0.95rem;
}

.agentx-contact-item i {
  color: #2c5e4f;
  font-size: 1.1rem;
}

.agentx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.agentx-actions .btn-primary {
  background: #2c5e4f;
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 0.6rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.agentx-actions .btn-primary:hover {
  background: #1b4d3e;
}

.agentx-actions .btn-outline {
  background: transparent;
  border: 2px solid #2c5e4f;
  color: #2c5e4f;
  padding: 0.6rem 1.4rem;
  border-radius: 0.6rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.agentx-actions .btn-outline:hover {
  background: #2c5e4f;
  color: #fff;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .agentx-info {
    padding: 1.5rem;
    text-align: left;
    align-items: flex-start;
  }

  .agentx-tagline {
    border-left: none;
    border-top: 3px solid #2c5e4f;
    padding-left: 0;
    padding-top: 0.6rem;
  }

  .agentx-contact {
    align-items: flex-start;
  }

  .agentx-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-direction: row;
    width: 100%;
  }

  .agentx-actions .btn {
    flex: 1;
  }
}

/*--------------------------------------------------------------
# Booking Section
--------------------------------------------------------------*/
.booking {
  background: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
}

.booking .reservation-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.booking .reservation-header {
  margin-bottom: 4rem;
}

.booking .reservation-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .booking .reservation-header h2 {
    font-size: 2rem;
  }
}

.booking .reservation-header .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 600px;
  margin: 0 auto;
}

.booking .booking-grid {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.booking .booking-form-section,
.booking .hotel-showcase {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.booking .booking-form-section .bottom-section,
.booking .hotel-showcase .bottom-section {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.booking .booking-form-section .bottom-section>*,
.booking .hotel-showcase .bottom-section>* {
  flex: 1 !important;
}

@media (max-width: 992px) {
  .booking .booking-grid {
    flex-direction: column;
    gap: 3rem;
  }
}

.booking .booking-form-section .form-container {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  padding: 2.5rem;
}

@media (max-width: 768px) {
  .booking .booking-form-section .form-container {
    padding: 2rem;
  }
}

.booking .reservation-form .form-section {
  margin-bottom: 2.5rem;
}

.booking .reservation-form .form-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--heading-color);
}

.booking .reservation-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .booking .reservation-form .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.booking .reservation-form .form-grid .full-width {
  grid-column: 1/-1;
}

.booking .reservation-form .form-group {
  margin-bottom: 1.5rem;
}

.booking .reservation-form .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking .reservation-form input[type=date],
.booking .reservation-form input[type=text],
.booking .reservation-form input[type=email],
.booking .reservation-form input[type=tel],
.booking .reservation-form textarea,
.booking .reservation-form select {
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 4px;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
}

.booking .reservation-form input[type=date]:focus,
.booking .reservation-form input[type=text]:focus,
.booking .reservation-form input[type=email]:focus,
.booking .reservation-form input[type=tel]:focus,
.booking .reservation-form textarea:focus,
.booking .reservation-form select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.125rem color-mix(in srgb, var(--accent-color), transparent 85%);
  outline: none;
}

.booking .reservation-form input[type=date]::placeholder,
.booking .reservation-form input[type=text]::placeholder,
.booking .reservation-form input[type=email]::placeholder,
.booking .reservation-form input[type=tel]::placeholder,
.booking .reservation-form textarea::placeholder,
.booking .reservation-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 0.9rem;
}

.booking .booking-form-section .form-container {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.booking .hotel-showcase .hotel-highlights {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.booking .reservation-form textarea {
  resize: vertical;
  min-height: 100px;
}

.booking .reservation-form .form-actions {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.booking .reservation-form .btn-primary {
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%;
}

.booking .reservation-form .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000000 10%);
  transform: translateY(-1px);
}

.booking .reservation-form .btn-primary:focus {
  box-shadow: 0 0 0 0.125rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.booking .hotel-showcase .showcase-image {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.booking .hotel-showcase .showcase-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.booking .hotel-showcase .hotel-highlights {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.booking .hotel-showcase .hotel-highlights h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.booking .hotel-showcase .hotel-highlights .highlights-grid {
  display: grid;
  gap: 1.5rem;
}

.booking .hotel-showcase .hotel-highlights .highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.booking .hotel-showcase .hotel-highlights .highlight-item .highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking .hotel-showcase .hotel-highlights .highlight-item .highlight-icon i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.booking .hotel-showcase .hotel-highlights .highlight-item .highlight-content h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.booking .hotel-showcase .hotel-highlights .highlight-item .highlight-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.4;
}

.booking .hotel-showcase .booking-guarantees {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 768px) {
  .booking .hotel-showcase .booking-guarantees {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.booking .hotel-showcase .booking-guarantees .guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.booking .hotel-showcase .booking-guarantees .guarantee-item i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.booking .hotel-highlights table {
  width: 100%;
  margin: 1rem 0;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.booking .hotel-highlights table th {
  background-color: var(--accent-color);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 12px 15px;
}

.booking .hotel-highlights table td {
  background-color: #fff;
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.booking .hotel-highlights table tr:last-child td {
  border-bottom: none;
}

.booking .hotel-highlights table tr:nth-child(even) td {
  background-color: #f5faf7;
}

.booking .hotel-highlights table tr:nth-child(odd) td {
  background-color: #ffffff;
}

.booking .hotel-highlights table tr:hover td {
  background-color: #e1ffec;
}

.important-notes {
  /* background: linear-gradient(135deg, #52988362 0%, #4d9a83d7 100%); */
  background: white;
  border-left: 5px solid #2c5e4f;
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  margin-top: 2rem;
}

.important-notes h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c5e4f;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.important-notes h4 i {
  font-size: 1.5rem;
  color: #2c5e4f;
}

.important-notes ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.important-notes ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: black;
  line-height: 1.4;
}

.important-notes ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .booking .hotel-showcase {
    order: -1;
  }

  .booking .hotel-showcase .showcase-image img {
    height: 240px;
  }

  .booking .hotel-showcase .hotel-highlights .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .booking .hotel-showcase .hotel-highlights .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .booking .hotel-showcase .hotel-highlights .highlight-item .highlight-content h5 {
    font-size: 0.95rem;
  }

  .booking .hotel-showcase .hotel-highlights .highlight-item .highlight-content p {
    font-size: 0.85rem;
  }

  .booking .hotel-showcase .booking-guarantees {
    justify-content: center;
  }

  .booking .hotel-showcase .booking-guarantees .guarantee-item {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .booking .hotel-highlights .highlights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .highlight-item {
    flex-direction: row;
    text-align: left;
  }

  .highlight-content h5,
  .highlight-content p {
    text-align: left;
  }
}

/*--------------------------------------------------------------
# Post Details 3 Section
--------------------------------------------------------------*/
.post-details-3 {
  padding-top: 67px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 60px;
}

.post-details-3 .article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.post-details-3 .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.post-details-3 .article-header .meta-categories .category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.post-details-3 .article-header .meta-categories .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.post-details-3 .article-header .title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .post-details-3 .article-header .title {
    font-size: 2.2rem;
  }
}

.post-details-3 .article-header .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.post-details-3 .article-header .article-meta .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-details-3 .article-header .article-meta .author .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.post-details-3 .article-header .article-meta .author .author-info {
  text-align: left;
}

.post-details-3 .article-header .article-meta .author .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.post-details-3 .article-header .article-meta .author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.post-details-3 .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.post-details-3 .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .post-details-3 .article-header .article-meta {
    justify-content: center;
    text-align: center;
  }

  .post-details-3 .article-header .article-meta .post-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.post-details-3 .article-featured-image {
  margin: 0 -2rem 3rem;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.post-details-3 .article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .post-details-3 .article-featured-image {
    margin: 0 -1rem 2rem;
    height: 300px;
  }
}

.post-details-3 .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 992px) {
  .post-details-3 .article-wrapper {
    grid-template-columns: 1fr;
  }
}

.post-details-3 .article-wrapper .table-of-contents {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .post-details-3 .article-wrapper .table-of-contents {
    display: none;
  }
}

.post-details-3 .article-wrapper .table-of-contents h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.post-details-3 .article-wrapper .table-of-contents nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-details-3 .article-wrapper .table-of-contents nav ul li {
  margin-bottom: 0.75rem;
}

.post-details-3 .article-wrapper .table-of-contents nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
}

.post-details-3 .article-wrapper .table-of-contents nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.post-details-3 .article-wrapper .table-of-contents nav ul li a:hover,
.post-details-3 .article-wrapper .table-of-contents nav ul li a.active {
  color: var(--heading-color);
}

.post-details-3 .article-wrapper .table-of-contents nav ul li a:hover::before,
.post-details-3 .article-wrapper .table-of-contents nav ul li a.active::before {
  opacity: 1;
}

.post-details-3 .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.post-details-3 .article-wrapper .article-content .content-section {
  margin-bottom: 4rem;
}

.post-details-3 .article-wrapper .article-content .content-section .lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.post-details-3 .article-wrapper .article-content .content-section h2 {
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.post-details-3 .article-wrapper .article-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.post-details-3 .article-wrapper .article-content .content-section .highlight-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.post-details-3 .article-wrapper .article-content .content-section .highlight-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.post-details-3 .article-wrapper .article-content .content-section .highlight-quote blockquote {
  padding-left: 3rem;
}

.post-details-3 .article-wrapper .article-content .content-section .highlight-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.post-details-3 .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details-3 .article-wrapper .article-content .content-section .image-with-caption {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.post-details-3 .article-wrapper .article-content .content-section .image-with-caption.right {
  float: right;
  max-width: 450px;
  margin: 0 0 2rem 2rem;
}

@media (max-width: 768px) {
  .post-details-3 .article-wrapper .article-content .content-section .image-with-caption.right {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.post-details-3 .article-wrapper .article-content .content-section .image-with-caption img {
  width: 100%;
}

.post-details-3 .article-wrapper .article-content .content-section .image-with-caption figcaption {
  padding: 1rem;
  background: var(--surface-color);
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details-3 .article-wrapper .article-content .content-section .feature-points {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.post-details-3 .article-wrapper .article-content .content-section .feature-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.post-details-3 .article-wrapper .article-content .content-section .feature-points .point i {
  font-size: 2rem;
  color: var(--accent-color);
}

.post-details-3 .article-wrapper .article-content .content-section .feature-points .point h4 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.post-details-3 .article-wrapper .article-content .content-section .feature-points .point p {
  margin: 0;
  font-size: 1rem;
}

.post-details-3 .article-wrapper .article-content .content-section .comparison-grid {
  margin: 2rem 0;
}

.post-details-3 .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.post-details-3 .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
  margin-bottom: 1rem;
}

.post-details-3 .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.post-details-3 .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.post-details-3 .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.post-details-3 .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.post-details-3 .article-wrapper .article-content .content-section .key-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .post-details-3 .article-wrapper .article-content .content-section .key-principles {
    grid-template-columns: 1fr;
  }
}

.post-details-3 .article-wrapper .article-content .content-section .key-principles .principle {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.post-details-3 .article-wrapper .article-content .content-section .key-principles .principle .number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.post-details-3 .article-wrapper .article-content .content-section .key-principles .principle h4 {
  color: var(--heading-color);
  margin: 1rem 0;
}

.post-details-3 .article-wrapper .article-content .content-section .key-principles .principle p {
  margin: 0;
  font-size: 0.95rem;
}

.post-details-3 .article-wrapper .article-content .content-section .info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin: 2rem 0;
}

.post-details-3 .article-wrapper .article-content .content-section .info-box .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.post-details-3 .article-wrapper .article-content .content-section .info-box .content h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.post-details-3 .article-wrapper .article-content .content-section .info-box .content p {
  margin: 0;
}

.post-details-3 .article-wrapper .article-content .content-section .future-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .post-details-3 .article-wrapper .article-content .content-section .future-trends {
    grid-template-columns: 1fr;
  }
}

.post-details-3 .article-wrapper .article-content .content-section .future-trends .trend {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.post-details-3 .article-wrapper .article-content .content-section .future-trends .trend:hover {
  transform: translateY(-5px);
}

.post-details-3 .article-wrapper .article-content .content-section .future-trends .trend i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.post-details-3 .article-wrapper .article-content .content-section .future-trends .trend h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.post-details-3 .article-wrapper .article-content .content-section .future-trends .trend p {
  margin: 0;
  font-size: 0.95rem;
}

.post-details-3 .article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.post-details-3 .article-footer h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.post-details-3 .article-footer .share-article {
  margin-bottom: 3rem;
}

.post-details-3 .article-footer .share-article .share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-details-3 .article-footer .share-article .share-buttons .share-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface-color);
  border-radius: 30px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-details-3 .article-footer .share-article .share-buttons .share-button i {
  font-size: 1.2rem;
}

.post-details-3 .article-footer .share-article .share-buttons .share-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.post-details-3 .article-footer .share-article .share-buttons .share-button.twitter:hover {
  background: #1DA1F2;
}

.post-details-3 .article-footer .share-article .share-buttons .share-button.facebook:hover {
  background: #4267B2;
}

.post-details-3 .article-footer .share-article .share-buttons .share-button.linkedin:hover {
  background: #0077B5;
}

.post-details-3 .article-footer .article-tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.post-details-3 .article-footer .article-tags .tags .tag {
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-details-3 .article-footer .article-tags .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Posts Section Section
--------------------------------------------------------------*/
.posts-section .post-item {
  overflow: hidden;
  background-color: #fafafa;
  transition: all 0.3s ease-in-out;
}

.posts-section .post-item:hover {
  transform: translateY(-5px);
}

.posts-section .post-item:hover .post-img img {
  transform: scale(1.1);
}

.posts-section .post-item .post-img {
  position: relative;
  overflow: hidden;
  margin: 0;
  max-height: 350px;
  border-radius: 8px;
}

.posts-section .post-item .post-img img {
  transition: 0.5s;
}

.posts-section .post-item .post-img .post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.posts-section .post-item .post-content {
  padding-top: 20px;
}

.posts-section .post-item .post-content time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.posts-section .post-item .post-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.posts-section .post-item .post-content h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.posts-section .post-item .post-content h3 a:hover {
  color: var(--accent-color);
}

.posts-section .post-item .post-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.posts-section .post-list .post-item {
  margin-bottom: 40px;
}

.posts-section .post-list .post-item:last-child {
  margin-bottom: 0;
}

.posts-section .post-list .post-item .post-img {
  flex: 0 0 180px;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 6px;
}

.posts-section .post-list .post-item .post-img img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .posts-section .post-list .post-item .post-img {
    width: 100%;
    height: 180px;
    margin-right: 0;
    margin-bottom: 12px;
  }

  .posts-section .post-list .post-item .post-img img {
    height: 180px;
  }
}

.posts-section .post-list .post-item .post-content {
  padding: 0;
}

.posts-section .post-list .post-item .post-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .posts-section .post-list .post-item {
    flex-direction: column;
  }

  .posts-section .post-list .post-item .post-content {
    padding-top: 0;
  }
}

.related-articles {
  background: #f9f9f9;
  border-left: 4px solid #2c5e4f;
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.related-articles span {
  font-weight: 600;
  color: #333;
}

.related-articles a {
  color: #2c5e4f;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}

.related-articles a:hover {
  color: #1b4d3e;
  text-decoration: underline;
}

@media (max-width: 576px) {
  .related-articles {
    flex-direction: column;
    align-items: flex-start !important;
    border-left-width: 3px;
    padding: 10px 14px;
  }

  .related-articles a {
    margin-top: 6px;
  }
}

/* Intro Section */
.intro-section {
  background: linear-gradient(135deg, #fdfdfd, #f8f9fa);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 80%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(0, 95, 115, 0.08), transparent 60%);
  z-index: 0;
}

.intro-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.intro-text {
  max-width: 850px;
  margin: 0 auto 50px;
}

.intro-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c5e4f;
  margin-bottom: 15px;
  line-height: 1.3;
}

.intro-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-2 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-2:before {
  content: "";
  background: color-mix(in srgb, #2c5e4f, transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action-2 .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

/* === Modal Tampilan Galeri === */
.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 1) !important;
}

.modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

.modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-wrapper img {
  display: block;
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.modal.show .image-wrapper img {
  transform: scale(1.05);
}

.whatsapp-btn-overlay {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 30px;
  background: #2c5e4f;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.whatsapp-btn-overlay:hover {
  background: rgba(34, 78, 64, 0.95);
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  color: white;
}

.btn-close-gallery {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 50%;
  z-index: 3;
  transition: all 0.25s ease;
}

.btn-close-gallery:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .image-wrapper img {
    width: 90vw;
    height: 90vw;
    max-width: 500px;
  }
}

@media (max-width: 576px) {
  .image-wrapper img {
    width: 85vw;
    height: 85vw;
    border-radius: 6px;
  }

  .whatsapp-btn-overlay {
    bottom: 15px;
    padding: 10px 18px;
    font-size: 14px;
  }
}