@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Noto Sans KR",  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: "Noto Sans KR",  sans-serif;
  --nav-font: "Jost",  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: #4d4d4d; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #333333; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #008037; /* 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: #4d4d4d;  /* The default color of the main navmenu links */
  --nav-hover-color: #008037; /* 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: #4d4d4d; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #008037; /* 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: #ffffff;
  --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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

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

/*--------------------------------------------------------------
# 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: 14px;
    font-family: var(--nav-font);
    font-weight: 500;
    text-transform: uppercase;
    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 {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .hero-block {
  padding: 80px 0 60px;
}

@media (max-width: 992px) {
  .hero .hero-block {
    padding: 60px 0 40px;
    text-align: center;
  }
}

.hero .hero-block .hero-copy .top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero .hero-block .hero-copy .top-badge i {
  font-size: 1rem;
}

.hero .hero-block .hero-copy h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

@media (max-width: 992px) {
  .hero .hero-block .hero-copy h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy h1 {
    font-size: 1.9rem;
  }
}

.hero .hero-block .hero-copy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.75rem;
}

.hero .hero-block .hero-copy .stats-strip {
  display: flex;
  align-items: center;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px color-mix(in srgb, #000, transparent 94%);
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}

.hero .hero-block .hero-copy .stats-strip .s-item {
  flex: 1;
  text-align: center;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip .s-item {
    flex: 0 0 auto;
    min-width: 80px;
  }
}

.hero .hero-block .hero-copy .stats-strip .s-item strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1.1;
}

.hero .hero-block .hero-copy .stats-strip .s-item span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-top: 4px;
}

.hero .hero-block .hero-copy .stats-strip .s-divider {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip .s-divider {
    display: none;
  }
}

.hero .hero-block .hero-copy .hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero .hero-block .hero-copy .hero-btns {
    justify-content: center;
  }
}

.hero .hero-block .hero-copy .hero-btns a {
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .hero-btns a {
    width: 100%;
    justify-content: center;
  }
}

.hero .hero-block .hero-copy .hero-btns .btn-apply {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-block .hero-copy .hero-btns .btn-apply:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.hero .hero-block .hero-copy .hero-btns .btn-tour {
  background: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0 4px 15px color-mix(in srgb, #000, transparent 94%);
}

.hero .hero-block .hero-copy .hero-btns .btn-tour i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.hero .hero-block .hero-copy .hero-btns .btn-tour:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, #000, transparent 88%);
  color: var(--accent-color);
}

.hero .hero-block .hero-visual {
  position: relative;
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual {
    max-width: 85%;
    margin: 0 auto;
  }
}

.hero .hero-block .hero-visual .campus-photo {
  border-radius: 20px;
  box-shadow: 0 25px 60px color-mix(in srgb, #000, transparent 82%);
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1200px) {
  .hero .hero-block .hero-visual .campus-photo {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual .campus-photo {
    height: 350px;
  }
}

.hero .hero-block .hero-visual .accred-card {
  position: absolute;
  bottom: 30px;
  left: -25px;
  background: var(--surface-color);
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 35px color-mix(in srgb, #000, transparent 88%);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual .accred-card {
    left: 15px;
    bottom: 20px;
  }
}

.hero .hero-block .hero-visual .accred-card i {
  font-size: 2rem;
  color: var(--accent-color);
}

.hero .hero-block .hero-visual .accred-card div {
  display: flex;
  flex-direction: column;
}

.hero .hero-block .hero-visual .accred-card div strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.2;
}

.hero .hero-block .hero-visual .accred-card div span {
  font-size: 0.76rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-top: 2px;
}

.hero .features-block {
  padding-bottom: 40px;
}

.hero .features-block .feat-card {
  display: block;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 25px color-mix(in srgb, #000, transparent 96%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.35s ease;
}

.hero .features-block .feat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.hero .features-block .feat-card:hover,
.hero .features-block .feat-card.featured {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px color-mix(in srgb, #000, transparent 90%);
}

.hero .features-block .feat-card:hover::after,
.hero .features-block .feat-card.featured::after {
  transform: scaleX(1);
}

.hero .features-block .feat-card:hover .feat-icon,
.hero .features-block .feat-card.featured .feat-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .features-block .feat-card.featured {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .features-block .feat-card .feat-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: color-mix(in srgb, var(--default-color), transparent 93%);
  font-family: var(--heading-font);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.hero .features-block .feat-card .feat-icon {
  width: 65px;
  height: 65px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.35s ease;
}

.hero .features-block .feat-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-right: 2.5rem;
}

.hero .features-block .feat-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.25rem;
}

.hero .features-block .feat-card .feat-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero .features-block .feat-card .feat-link i {
  transition: transform 0.3s ease;
}

.hero .features-block .feat-card .feat-link:hover i {
  transform: translateX(5px);
}

.hero .event-block {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px 35px;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 5px 30px color-mix(in srgb, #000, transparent 94%);
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .hero .event-block {
    padding: 25px 20px;
    border-left: none;
    border-top: 5px solid var(--accent-color);
  }
}

.hero .event-block .event-cal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 85px;
  text-align: center;
}

.hero .event-block .event-cal .ec-month {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

.hero .event-block .event-cal .ec-day {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--heading-font);
}

.hero .event-block .event-info .event-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.hero .event-block .event-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (max-width: 576px) {
  .hero .event-block .event-info h3 {
    font-size: 1.15rem;
  }
}

.hero .event-block .event-info p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .event-block .event-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

@media (max-width: 1199px) {
  .hero .event-block .event-actions {
    align-items: flex-start;
  }
}

.hero .event-block .event-actions .btn-rsvp {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.hero .event-block .event-actions .btn-rsvp:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.hero .event-block .event-actions .event-timer {
  font-size: 0.84rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.hero .event-block .event-actions .event-timer i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card-item {
  background-color: color-mix(in srgb, var(--accent-color), var(--background-color) 95%);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cards .card-item.active,
.cards .card-item:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.cards .card-item.active h3,
.cards .card-item.active .icon,
.cards .card-item.active .read-more,
.cards .card-item:hover h3,
.cards .card-item:hover .icon,
.cards .card-item:hover .read-more {
  color: var(--contrast-color);
}

.cards .card-item.active .read-more:hover,
.cards .card-item:hover .read-more:hover {
  color: var(--contrast-color);
}

.cards .card-item:hover {
  transform: translateY(-5px);
}

.cards .card-item .icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.cards .card-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cards .card-item .img-wrapper {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 20px;
}

.cards .card-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards .card-item .read-more {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.cards .card-item .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.cards .card-item .read-more i {
  margin-left: 5px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Campus Facilities Section
--------------------------------------------------------------*/
.campus-facilities .section-heading {
  margin-bottom: 40px;
}

.campus-facilities .section-heading h2 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.campus-facilities .section-heading h2:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 70px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.campus-facilities .section-heading p {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 700px;
  margin: 0 auto;
}

.campus-facilities .campus-content {
  height: 100%;
  padding: 10px;
}

.campus-facilities .campus-content h3 {
  margin-bottom: 20px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}

.campus-facilities .campus-content h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: var(--accent-color);
}

.campus-facilities .campus-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.campus-facilities .facility-list {
  padding: 0;
  list-style: none;
}

.campus-facilities .facility-list li {
  padding: 10px 0;
  position: relative;
  padding-left: 30px;
}

.campus-facilities .facility-list li i {
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent-color);
}

.campus-facilities .campus-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.campus-facilities .campus-image img {
  width: 100%;
  transition: transform 0.6s;
}

.campus-facilities .campus-image img:hover {
  transform: scale(1.03);
}

.campus-facilities .campus-image .virtual-tour-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.campus-facilities .campus-image .virtual-tour-btn .btn-virtual-tour {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  font-weight: 600;
}

.campus-facilities .campus-image .virtual-tour-btn .btn-virtual-tour i {
  margin-right: 8px;
  font-size: 18px;
}

.campus-facilities .campus-image .virtual-tour-btn .btn-virtual-tour:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
}

.campus-facilities .facility-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.campus-facilities .facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.campus-facilities .facility-card:hover .facility-img img {
  transform: scale(1.05);
}

.campus-facilities .facility-card .facility-img {
  height: 200px;
  overflow: hidden;
}

.campus-facilities .facility-card .facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.campus-facilities .facility-card .facility-info {
  padding: 20px;
}

.campus-facilities .facility-card .facility-info h4 {
  margin-bottom: 12px;
  font-weight: 700;
}

.campus-facilities .facility-card .facility-info p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.campus-facilities .facility-card .facility-info .facility-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  font-size: 14px;
}

.campus-facilities .facility-card .facility-info .facility-meta span {
  margin-right: 15px;
  margin-bottom: 5px;
  display: inline-flex;
  align-items: center;
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
}

.campus-facilities .facility-card .facility-info .facility-meta span i {
  margin-right: 6px;
  color: var(--accent-color);
}

.campus-facilities .facility-card.horizontal .facility-img {
  height: 100%;
}

.campus-facilities .facility-card.horizontal .facility-info {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.campus-facilities .facility-card.horizontal .facility-info .facility-features {
  padding: 0;
  list-style: none;
  margin-top: auto;
}

.campus-facilities .facility-card.horizontal .facility-info .facility-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.campus-facilities .facility-card.horizontal .facility-info .facility-features li i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 14px;
}

.campus-facilities .campus-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.campus-facilities .campus-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.campus-facilities .residence-info {
  height: 100%;
  padding: 20px;
}

.campus-facilities .residence-info h3 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.campus-facilities .residence-info h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: var(--accent-color);
}

.campus-facilities .residence-info p {
  margin-bottom: 25px;
}

.campus-facilities .residence-info .residence-features .feature-item {
  display: flex;
  margin-bottom: 20px;
}

.campus-facilities .residence-info .residence-features .feature-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
  margin-top: 5px;
}

.campus-facilities .residence-info .residence-features .feature-item div h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.campus-facilities .residence-info .residence-features .feature-item div p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.campus-facilities .campus-map {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.campus-facilities .campus-map .map-placeholder {
  width: 100%;
}

.campus-facilities .campus-map .map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.campus-facilities .map-legend {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  height: 100%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.campus-facilities .map-legend h3 {
  margin-bottom: 15px;
  font-weight: 700;
}

.campus-facilities .map-legend p {
  margin-bottom: 25px;
}

.campus-facilities .map-legend .legend-items {
  margin-bottom: 20px;
}

.campus-facilities .map-legend .legend-items .legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.campus-facilities .map-legend .legend-items .legend-item .color-marker {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  margin-right: 10px;
}

.campus-facilities .map-legend .legend-items .legend-item .color-marker.academic {
  background-color: #4285F4;
}

.campus-facilities .map-legend .legend-items .legend-item .color-marker.residential {
  background-color: #EA4335;
}

.campus-facilities .map-legend .legend-items .legend-item .color-marker.athletic {
  background-color: #34A853;
}

.campus-facilities .map-legend .legend-items .legend-item .color-marker.dining {
  background-color: #FBBC05;
}

.campus-facilities .map-legend .legend-items .legend-item .color-marker.parking {
  background-color: #7986CB;
}

.campus-facilities .map-legend .btn-download {
  display: inline-flex;
  align-items: center;
  background: var(--surface-color);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid var(--accent-color);
  transition: all 0.3s;
}

.campus-facilities .map-legend .btn-download i {
  margin-right: 8px;
}

.campus-facilities .map-legend .btn-download:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.campus-facilities .object-fit-cover {
  object-fit: cover;
}

.campus-facilities .mb-5 {
  margin-bottom: 3rem !important;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Post Details Section
--------------------------------------------------------------*/
.post-details {
  padding-bottom: 30px;
}

.post-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.post-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.post-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.post-details .content {
  margin-top: 20px;
}

.post-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.post-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.post-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.post-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.post-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.post-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.post-details .meta-top ul li+li {
  padding-left: 20px;
}

.post-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.post-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.post-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.post-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.post-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.post-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.post-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.post-details .meta-bottom .cats li {
  display: inline-block;
}

.post-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.post-details .meta-bottom .tags li {
  display: inline-block;
}

.post-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.post-details .meta-bottom .share {
  font-size: 16px;
}

.post-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .steps-wrapper {
  position: relative;
  margin-bottom: 50px;
}

.steps .steps-timeline {
  position: relative;
  margin-bottom: 50px;
}

.steps .steps-timeline .steps-progress {
  position: relative;
  height: 6px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 10px;
  margin-bottom: 20px;
}

.steps .steps-timeline .steps-progress .progress-indicator {
  position: absolute;
  height: 100%;
  width: 20%;
  /* Starts at phase 1 */
  background-color: var(--accent-color);
  border-radius: 10px;
  transition: width 0.5s ease;
}

.steps .steps-timeline .steps-phases {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0;
  border: none;
  margin: 0;
  width: 100%;
}

.steps .steps-timeline .steps-phases .phase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20%;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
}

.steps .steps-timeline .steps-phases .phase-item .phase-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  width: 100%;
  padding: 0;
  cursor: pointer;
}

.steps .steps-timeline .steps-phases .phase-item .phase-button .phase-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  border: 3px solid var(--background-color);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.steps .steps-timeline .steps-phases .phase-item .phase-button span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.steps .steps-timeline .steps-phases .phase-item .phase-button.active .phase-dot {
  background-color: var(--accent-color);
  transform: scale(1.2);
}

.steps .steps-timeline .steps-phases .phase-item .phase-button.active span {
  color: var(--accent-color);
  font-weight: 700;
}

.steps .steps-timeline .steps-phases .phase-item .phase-button:hover:not(.active) .phase-dot {
  background-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  transform: scale(1.1);
}

.steps .steps-timeline .steps-phases .phase-item .phase-button:hover:not(.active) span {
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .steps .steps-timeline .steps-phases .phase-item .phase-button span {
    font-size: 0.7rem;
  }
}

.steps .steps-content-container {
  position: relative;
  min-height: 350px;
}

.steps .steps-content-container .step-content-item {
  transition: all 0.5s ease;
}

.steps .steps-content-container .step-content-item.tab-pane {
  opacity: 0;
}

.steps .steps-content-container .step-content-item.tab-pane.show.active {
  opacity: 1;
}

.steps .steps-content-container .step-content-item .step-card {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--accent-color);
}

.steps .steps-content-container .step-content-item .step-card .step-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;
  margin-bottom: 20px;
}

.steps .steps-content-container .step-content-item .step-card .step-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.steps .steps-content-container .step-content-item .step-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.steps .steps-content-container .step-content-item .step-card p {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 20px;
}

.steps .steps-content-container .step-content-item .step-card ul {
  padding-left: 20px;
}

.steps .steps-content-container .step-content-item .step-card ul li {
  font-size: 0.95rem;
  color: var(--default-color);
  margin-bottom: 8px;
  position: relative;
}

.steps .lead {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.steps .steps-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
}

@media (max-width: 576px) {
  .steps .steps-cta {
    flex-direction: column;
    max-width: 280px;
    margin: 0 auto;
  }
}

.steps .steps-cta .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.steps .steps-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.steps .steps-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.steps .steps-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.steps .steps-cta .btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.steps .steps-cta .btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Login Register Section
--------------------------------------------------------------*/
.login-register {
  padding-top: 60px;
  padding-bottom: 60px;
}

.login-register .auth-container {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  overflow: hidden;
  position: relative;
}

@media (max-width: 576px) {
  .login-register .auth-container {
    margin: 0 15px;
  }
}

.login-register .auth-form {
  padding: 40px 35px;
  display: none;
}

.login-register .auth-form.active {
  display: block;
  animation: slideIn 0.5s ease-out;
}

@media (max-width: 576px) {
  .login-register .auth-form {
    padding: 30px 25px;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.login-register .form-header {
  text-align: center;
  margin-bottom: 35px;
}

.login-register .form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.login-register .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  margin: 0;
}

.login-register .input-group {
  position: relative;
  margin-bottom: 20px;
}

.login-register .input-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  transition: color 0.3s;
  pointer-events: none;
}

.login-register .input-group .form-control {
  padding: 16px 16px 16px 50px;
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  border-radius: 12px !important;
}

.login-register .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
  outline: none;
}

.login-register .input-group .form-control:focus~.input-icon {
  color: var(--accent-color);
}

.login-register .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.login-register .input-group .password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  z-index: 3;
  transition: color 0.3s;
}

.login-register .input-group .password-toggle:hover {
  color: var(--accent-color);
}

.login-register .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .login-register .name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.login-register .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.login-register .form-options .remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-register .form-options .remember-me input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  background: var(--background-color);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.login-register .form-options .remember-me input[type=checkbox]:checked {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.login-register .form-options .remember-me input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login-register .form-options .remember-me label {
  font-size: 14px;
  color: var(--default-color);
  cursor: pointer;
}

.login-register .form-options .forgot-password {
  font-size: 14px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.login-register .form-options .forgot-password:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.login-register .terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.login-register .terms-check input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  background: var(--background-color);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 2px;
  flex-shrink: 0;
}

.login-register .terms-check input[type=checkbox]:checked {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.login-register .terms-check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login-register .terms-check label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.4;
  cursor: pointer;
}

.login-register .terms-check label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.login-register .terms-check label a:hover {
  text-decoration: underline;
}

.login-register .auth-btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login-register .auth-btn.primary-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.login-register .auth-btn.primary-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-1px);
}

.login-register .auth-btn.primary-btn:active {
  transform: translateY(0);
}

.login-register .auth-btn.social-btn {
  background: var(--background-color);
  color: var(--default-color);
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.login-register .auth-btn.social-btn:hover {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
}

.login-register .auth-btn.social-btn i {
  font-size: 18px;
}

.login-register .auth-btn i {
  font-size: 16px;
}

.login-register .divider {
  position: relative;
  text-align: center;
  margin: 25px 0;
}

.login-register .divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.login-register .divider span {
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login-register .switch-form {
  text-align: center;
  margin-top: 25px;
}

.login-register .switch-form span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}

.login-register .switch-form .switch-btn {
  background: none;
  border: none;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-left: 5px;
  transition: color 0.3s;
}

.login-register .switch-form .switch-btn:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/
.register .registration-form-wrapper {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 60px 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.register .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.register .decorative-elements .circle {
  position: absolute;
  border-radius: 50%;
}

.register .decorative-elements .circle.circle-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.register .decorative-elements .circle.circle-2 {
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 90%), color-mix(in srgb, var(--heading-color), transparent 97%));
}

.register .decorative-elements .circle.circle-3 {
  top: 40%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 70%), color-mix(in srgb, var(--accent-color), transparent 90%));
}

.register .decorative-elements .square {
  position: absolute;
  transform: rotate(45deg);
}

.register .decorative-elements .square.square-1 {
  top: 20%;
  left: 5%;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.register .decorative-elements .square.square-2 {
  bottom: 15%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 85%), color-mix(in srgb, var(--heading-color), transparent 95%));
}

.register .form-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.register .form-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.register form {
  position: relative;
  z-index: 1;
}

.register form .form-floating {
  margin-bottom: 1rem;
}

.register form .form-floating .form-control,
.register form .form-floating .form-select {
  height: 60px;
  padding: 1rem 1rem 0.5rem;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 30%);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  color: var(--default-color);
}

.register form .form-floating .form-control:focus,
.register form .form-floating .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.register form .form-floating .form-control:focus~label,
.register form .form-floating .form-select:focus~label {
  color: var(--accent-color);
}

.register form .form-floating .form-control:focus~label:after,
.register form .form-floating .form-select:focus~label:after {
  background: transparent;
}

.register form .form-floating .form-control::placeholder,
.register form .form-floating .form-select::placeholder {
  color: transparent;
}

.register form .form-floating .form-control:not(:placeholder-shown)~label,
.register form .form-floating .form-select:not(:placeholder-shown)~label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register form .form-floating .form-control:not(:placeholder-shown)~label:after,
.register form .form-floating .form-select:not(:placeholder-shown)~label:after {
  background: transparent;
}

.register form .form-floating label {
  padding: 1rem 1rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.register form .form-floating label:after {
  background: transparent;
}

.register form .form-check {
  padding-left: 1.8rem;
  margin-top: 1rem;
}

.register form .form-check .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: -1.8rem;
  margin-top: 0.15rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.register form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.register form .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register form .form-check .form-check-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.register form .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.register form .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.register .btn-register {
  position: relative;
  height: 56px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  color: var(--contrast-color);
  border: none;
  overflow: hidden;
  transition: all 0.3s;
}

.register .btn-register::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s;
}

.register .btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register .btn-register:hover::before {
  left: 100%;
}

.register .btn-register:active {
  transform: translateY(0);
}

.register .login-link {
  margin-top: 1.5rem;
}

.register .login-link p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.register .login-link p a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

.register .login-link p a:hover {
  text-decoration: underline;
}

.register .social-login {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.register .social-login .divider {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}

.register .social-login .divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.register .social-login .divider span {
  position: relative;
  background-color: var(--surface-color);
  padding: 0 1rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register .social-login .social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.register .social-login .social-buttons .btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  border-radius: 12px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.register .social-login .social-buttons .btn-social i {
  font-size: 1.2rem;
}

.register .social-login .social-buttons .btn-social i.bi-google {
  color: #DB4437;
}

.register .social-login .social-buttons .btn-social i.bi-facebook {
  color: #4267B2;
}

.register .social-login .social-buttons .btn-social i.bi-apple {
  color: #000000;
}

.register .social-login .social-buttons .btn-social:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.register .social-login .social-buttons .btn-social:active {
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .register {
    padding: 2rem 1.5rem;
    margin: 40px 0;
  }

  .register .form-header h2 {
    font-size: 1.8rem;
  }

  .register .form-header p {
    font-size: 1rem;
  }

  .register .social-buttons {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.location .map-wrapper {
  position: relative;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.location .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location .map-wrapper .location-pin {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.location .map-wrapper .location-pin i {
  margin-right: 5px;
  font-size: 14px;
}

.location .location-info {
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.location .location-info h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 24px;
}

.location .location-info .location-description {
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
}

.location .location-info .address-block,
.location .location-info .transport-info,
.location .location-info .contact-info {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.location .location-info .address-block:last-child,
.location .location-info .transport-info:last-child,
.location .location-info .contact-info:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.location .location-info .address-block h5,
.location .location-info .transport-info h5,
.location .location-info .contact-info h5 {
  color: var(--heading-color);
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.location .location-info .address-block h5 i,
.location .location-info .transport-info h5 i,
.location .location-info .contact-info h5 i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
}

.location .location-info .address-block p,
.location .location-info .transport-info p,
.location .location-info .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

.location .location-info .address-block p:not(:last-child),
.location .location-info .transport-info p:not(:last-child),
.location .location-info .contact-info p:not(:last-child) {
  margin-bottom: 8px;
}

.location .location-info .btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.location .location-info .btn:hover {
  background: transparent;
  color: var(--accent-color);
}

.location .nearby-attractions {
  margin-top: 80px;
}

.location .nearby-attractions .attractions-title {
  text-align: center;
  color: var(--heading-color);
  font-size: 32px;
  margin-bottom: 15px;
}

.location .nearby-attractions .attractions-subtitle {
  text-align: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 50px;
  font-size: 16px;
}

.location .nearby-attractions .attraction-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}

.location .nearby-attractions .attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.location .nearby-attractions .attraction-card .attraction-image {
  height: 200px;
  overflow: hidden;
}

.location .nearby-attractions .attraction-card .attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.location .nearby-attractions .attraction-card:hover .attraction-image img {
  transform: scale(1.1);
}

.location .nearby-attractions .attraction-card .attraction-content {
  padding: 25px;
}

.location .nearby-attractions .attraction-card .attraction-content h5 {
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 10px;
}

.location .nearby-attractions .attraction-card .attraction-content .distance {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.location .nearby-attractions .attraction-card .attraction-content .distance i {
  margin-right: 5px;
  font-size: 14px;
}

.location .nearby-attractions .attraction-card .attraction-content p:last-child {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin: 0;
}

.location .transportation-section {
  margin-top: 80px;
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.location .transportation-section .transport-title {
  text-align: center;
  color: var(--heading-color);
  font-size: 32px;
  margin-bottom: 50px;
}

.location .transportation-section .transport-option {
  text-align: center;
  padding: 30px 20px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}

.location .transportation-section .transport-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.location .transportation-section .transport-option .transport-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.location .transportation-section .transport-option .transport-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.location .transportation-section .transport-option h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 15px;
}

.location .transportation-section .transport-option p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .location .map-wrapper {
    height: 300px;
    margin-bottom: 30px;
  }

  .location .location-info {
    padding: 20px;
  }

  .location .nearby-attractions {
    margin-top: 50px;
  }

  .location .nearby-attractions .attractions-title {
    font-size: 28px;
  }

  .location .transportation-section {
    margin-top: 50px;
  }

  .location .transportation-section .transport-title {
    font-size: 28px;
  }

  .location .transportation-section .transport-option {
    padding: 25px 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .location .attraction-card .attraction-content {
    padding: 20px;
  }

  .location .transport-option .transport-icon {
    width: 70px;
    height: 70px;
  }

  .location .transport-option .transport-icon i {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  color: var(--default-color);
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: var(--accent-color);
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 96px 0;
  background-color: var(--surface-color);
}

.call-to-action .cta-block {
  margin-bottom: 48px;
}

.call-to-action .label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.call-to-action h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

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

.call-to-action .desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  max-width: 540px;
  margin: 0 auto;
}

.call-to-action .checklist {
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.call-to-action .checklist .check-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .call-to-action .checklist .check-item {
    margin-bottom: 12px;
  }
}

.call-to-action .checklist .check-item i {
  font-size: 18px;
  color: var(--accent-color);
}

.call-to-action .checklist .check-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
}

.call-to-action .action-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 576px) {
  .call-to-action .action-row {
    flex-direction: column;
    align-items: center;
  }
}

.call-to-action .action-row .btn {
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.call-to-action .action-row .btn.btn-ghost {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action .action-row .btn.btn-ghost:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .action-row .btn.btn-solid {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.call-to-action .action-row .btn.btn-solid:hover {
  opacity: 0.85;
}

.call-to-action .trust-row .stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 8px;
}

.call-to-action .trust-row .stars i {
  font-size: 13px;
  color: var(--accent-color);
}

.call-to-action .trust-row .trust-text {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.tabs .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.tabs .nav-item:last-child {
  padding-right: 0;
}

.tabs .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .tabs .nav-link {
    padding: 8px 20px;
  }
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.tabs .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.tabs .nav-link:hover h4 {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.tabs .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-top: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.call-to-action-2 .cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.call-to-action-2 .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.call-to-action-2 .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.9;
}

.call-to-action-2 .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.call-to-action-2 .cta-buttons .btn-primary {
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-2 .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action-2 .cta-buttons .btn-outline {
  padding: 0.8rem 2rem;
  background-color: transparent;
  color: var(--default-color);
  border: 2px solid var(--default-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-2 .cta-buttons .btn-outline:hover {
  background-color: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

.call-to-action-2 .cta-image {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action-2 .cta-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.call-to-action-2 .cta-image img:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .call-to-action-2 .cta-wrapper {
    flex-direction: column;
    padding: 2.5rem;
  }

  .call-to-action-2 .cta-content {
    text-align: center;
  }

  .call-to-action-2 .cta-content h2 {
    font-size: 2rem;
  }

  .call-to-action-2 .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .call-to-action-2 .cta-buttons {
    justify-content: center;
  }

  .call-to-action-2 .cta-image img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .call-to-action-2 .cta-wrapper {
    padding: 2rem;
  }

  .call-to-action-2 .cta-content h2 {
    font-size: 1.8rem;
  }

  .call-to-action-2 .cta-content p {
    font-size: 1rem;
  }

  .call-to-action-2 .cta-buttons .btn-primary,
  .call-to-action-2 .cta-buttons .btn-outline {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}


/*--------------------------------------------------------------
# Gallery 3 Section
--------------------------------------------------------------*/
.gallery-3 .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.gallery-3 .isotope-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.gallery-3 .isotope-filters li:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.gallery-3 .isotope-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 576px) {
  .gallery-3 .isotope-filters li {
    margin-bottom: 5px;
  }
}

.gallery-3 .gallery-item {
  margin-bottom: 30px;
}

.gallery-3 .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-3 .gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-3 .gallery-card:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}

.gallery-3 .gallery-card:hover .gallery-info {
  opacity: 1;
  transform: translateY(0);
}

.gallery-3 .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery-3 .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-3 .gallery-img:hover img {
  transform: scale(1.05);
}

.gallery-3 .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.gallery-3 .gallery-info {
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.gallery-3 .gallery-info h4 {
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery-3 .gallery-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 14px;
  margin-bottom: 15px;
}

.gallery-3 .gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gallery-3 .gallery-link i {
  font-size: 20px;
}

.gallery-3 .gallery-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .gallery-3 .gallery-info h4 {
    font-size: 16px;
  }

  .gallery-3 .gallery-info p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .gallery-3 .isotope-filters li {
    padding: 6px 14px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .gallery-3 .gallery-overlay {
    padding: 15px;
  }

  .gallery-3 .gallery-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .gallery-3 .gallery-info p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .gallery-3 .gallery-link {
    width: 35px;
    height: 35px;
  }

  .gallery-3 .gallery-link i {
    font-size: 18px;
  }
}