/*
======================================================
TEAM
------------------------------------------------------
Developer: Arthur Daniel Belanger Jr.
Role: Lead Developer & Technical Architect
GitHub: https://github.com/coding-with-arty/coding-with-arty

ORGANIZATION
------------------------------------------------------
Project: Augusta Downtown Alliance Website
Purpose: Revitalizing downtown Augusta through community,
         culture, and economic vitality.

TECHNOLOGY
------------------------------------------------------
Standards: HTML5, CSS3, JavaScript, JSON-LD
Tools: XAMPP, Git, PHPMailer
Hosting: GoDaddy Linux Hosting

LAST UPDATED
------------------------------------------------------
2026-02-14
======================================================
 */


/* Fonts */

:root {
  --default-font: "Oswald", 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: "Merriweather", sans-serif;
  --nav-font: "Roboto Condensed", 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: #f1f5f4;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #fd564a;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #7fa087;
  /* 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: #5b5b5b;
  /* The default color of the main navmenu links */
  --nav-hover-color: #7fa087;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #f1f5f4;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #f1f5f4;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #7fa087;
  /* 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: #f1f5f4;
  --surface-color: #ffffff;
}

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


/* Smooth scroll */

:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

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

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


/* PHP Email Form Messages
------------------------------*/

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

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

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

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

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


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
  --background-color: rgba(0, 0, 0, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

.header .logo span {
  font-size: 30px;
  color: var(--accent-color);
  margin-left: 2px;
  font-weight: 700;
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .logo h1 {
    font-size: 24px;
  }
  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }
  .header .navmenu {
    order: 3;
  }
}


/* Global Header on Scroll
------------------------------*/

.scrolled .header {
  --background-color: #5b5b5b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}


/* Index Page Header
------------------------------*/

.index-page .header {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}


/* Index Page Header on Scroll
------------------------------*/

.index-page.scrolled .header {
  --background-color: #5b5b5b;
  --nav-color: #ffffff;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu>ul>li:last-child {
    padding-right: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-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;
  }
}


/* Mobile Navigation */

@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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .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);
    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;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

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

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

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

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

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


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}


/*--------------------------------------------------------------
# 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.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 50%);
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 57px;
  }
}


/*--------------------------------------------------------------
# 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: 120px 0 60px 0;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-content {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 3;
}

.hero .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

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

.hero .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .hero-buttons .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  font-size: 1rem;
}

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

.hero .hero-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.hero .hero-buttons .btn.btn-outline {
  background-color: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.hero .hero-buttons .btn.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .hero .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
    min-height: 80vh;
  }
  .hero .hero-content {
    min-height: 80vh;
  }
}


/*--------------------------------------------------------------
# About Downtown Section
--------------------------------------------------------------*/

.about-downtown .about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.about-downtown .about-img img {
  border-radius: 20px;
}

.about-downtown .experience-badge {
  position: absolute;
  bottom: -30px;
  left: 20px;
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 160px;
}

.about-downtown .experience-badge h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: var(--accent-color);
}

.about-downtown .experience-badge p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--heading-color);
}

.about-downtown .projects-badge {
  position: absolute;
  top: 40px;
  right: 0;
  background-color: var(--accent-color);
  padding: 20px;
  border-radius: 10px 0 0 10px;
  text-align: center;
  min-width: 160px;
}

.about-downtown .projects-badge h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: var(--contrast-color);
}

.about-downtown .projects-badge p {
  margin: 5px 0 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--contrast-color);
}

.about-downtown .feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-downtown .feature-item .feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-downtown .feature-item .feature-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.about-downtown .feature-item .feature-content h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.about-downtown .feature-item .feature-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about-downtown .check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.about-downtown .check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about-downtown .check-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.about-downtown .btn-primary {
  background-color: var(--accent-color);
  border: none;
  padding: 15px 38px;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.about-downtown .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .about-downtown .experience-badge {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    min-width: 140px;
  }
  .about-downtown .experience-badge h2 {
    font-size: 2.8rem;
  }
  .about-downtown .experience-badge p {
    font-size: 0.8rem;
  }
  .about-downtown .projects-badge {
    top: 15px;
    right: 15px;
    padding: 15px;
    min-width: 140px;
    border-radius: 10px;
  }
  .about-downtown .projects-badge h2 {
    font-size: 2rem;
  }
  .about-downtown .projects-badge p {
    font-size: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .about-downtown .experience-badge {
    padding: 12px;
    min-width: 120px;
  }
  .about-downtown .experience-badge h2 {
    font-size: 2.2rem;
  }
  .about-downtown .experience-badge p {
    font-size: 0.75rem;
  }
  .about-downtown .projects-badge {
    padding: 12px;
    min-width: 120px;
  }
  .about-downtown .projects-badge h2 {
    font-size: 1.8rem;
  }
  .about-downtown .projects-badge p {
    font-size: 0.7rem;
  }
}


/*--------------------------------------------------------------
# Ada President Section
--------------------------------------------------------------*/

.ada-president .about-img {
  position: relative;
}

.ada-president .about-img .img-wrapper {
  position: relative;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 15px;
}

.ada-president .about-img .img-wrapper img {
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.ada-president .about-img .img-wrapper img:hover {
  transform: scale(1.02);
}

.ada-president .content .section-header {
  margin-bottom: 30px;
}

.ada-president .content .section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.ada-president .content .section-header p {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
}

.ada-president .content .about-content .bio-text .lead {
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 0;
}

.ada-president .content .about-content .bio-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
}

.ada-president .content .about-content .info-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ada-president .content .about-content .info-list .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.ada-president .content .about-content .info-list .info-item:hover {
  transform: translateY(-3px);
}

.ada-president .content .about-content .info-list .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.ada-president .content .about-content .info-list .info-item h5 {
  font-size: 16px;
  margin: 0 0 5px;
  font-weight: 600;
  color: var(--heading-color);
}

.ada-president .content .about-content .info-list .info-item p {
  margin: 0;
  font-size: 15px;
  color: var(--default-color);
}

.ada-president .content .about-content .social-links {
  text-align: center;
}

.ada-president .content .about-content .social-links .links-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ada-president .content .about-content .social-links .links-wrapper a {
  color: var(--heading-color);
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ada-president .content .about-content .social-links .links-wrapper a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .ada-president .about-img {
    margin-bottom: 30px;
  }
  .ada-president .content .about-content .info-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .ada-president .content .section-header h2 {
    font-size: 28px;
  }
  .ada-president .content .section-header p {
    font-size: 16px;
  }
  .ada-president .content .about-content .bio-text .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .ada-president .about-img .img-wrapper .social-links {
    padding: 12px 20px;
    gap: 12px;
  }
  .ada-president .about-img .img-wrapper .social-links a {
    font-size: 16px;
    width: 32px;
    height: 32px;
  }
  .ada-president .content .about-content .info-list {
    grid-template-columns: 1fr;
  }
}


/*--------------------------------------------------------------
# Visit Downtown Section
--------------------------------------------------------------*/

.visit-downtown {
  padding-top: 60px;
  position: relative;
  padding-bottom: 60px;
}

.visit-downtown .services-content .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.visit-downtown .services-content h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .visit-downtown .services-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .visit-downtown .services-content h2 {
    font-size: 28px;
  }
}

.visit-downtown .services-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.visit-downtown .services-content .btn-consultation {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.visit-downtown .services-content .btn-consultation span {
  margin-right: 8px;
}

.visit-downtown .services-content .btn-consultation i {
  transition: transform 0.3s ease;
}

.visit-downtown .services-content .btn-consultation:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.visit-downtown .services-content .btn-consultation:hover i {
  transform: translateX(5px);
}

.visit-downtown .services-image {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: flex-end;
}

.visit-downtown .services-image img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  object-fit: cover;
}

.visit-downtown .services-image .shape-circle {
  position: absolute;
  right: -30px;
  top: -30px;
  height: 180px;
  width: 180px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  z-index: 1;
}

.visit-downtown .services-image .shape-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 1;
  animation: float 5s infinite ease-in-out;
}

@media (max-width: 992px) {
  .visit-downtown .services-image {
    margin-top: 30px;
    height: 300px;
    justify-content: center;
  }
}

.visit-downtown .services-slider {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}

.visit-downtown .services-slider .swiper-wrapper {
  height: auto !important;
}

.visit-downtown .service-card {
  background-color: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.visit-downtown .service-card .icon-box {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.visit-downtown .service-card .icon-box i {
  font-size: 30px;
  color: var(--contrast-color);
  transition: all 0.4s;
}

.visit-downtown .service-card .arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--accent-color);
  background-color: var(--surface-color);
  border-radius: 50%;
  transform: rotate(-45deg);
  position: absolute;
  right: -50px;
  top: -50px;
  transition: all 0.4s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.visit-downtown .service-card .content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.visit-downtown .service-card .content h4 a {
  color: var(--heading-color);
  transition: all 0.4s;
}

.visit-downtown .service-card .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.visit-downtown .service-card .content .service-number {
  position: relative;
  padding-left: 76px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s;
}

.visit-downtown .service-card .content .service-number::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 1px;
  width: 70px;
  background-color: var(--accent-color);
  transition: all 0.4s;
}

.visit-downtown .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.visit-downtown .service-card:hover .icon-box {
  background-color: var(--contrast-color);
}

.visit-downtown .service-card:hover .icon-box i {
  color: var(--accent-color);
}

.visit-downtown .service-card:hover .arrow-link {
  top: 16px;
  right: 16px;
  background-color: var(--contrast-color);
}

.visit-downtown .service-card:hover .content h4 a {
  color: var(--contrast-color);
}

.visit-downtown .service-card:hover .content p {
  color: var(--contrast-color);
}

.visit-downtown .service-card:hover .content .service-number {
  color: var(--contrast-color);
  padding-left: 0;
}

.visit-downtown .service-card:hover .content .service-number::after {
  background-color: var(--contrast-color);
  left: 30px;
}

.visit-downtown .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.visit-downtown .swiper-navigation button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  transition: all 0.4s;
  margin-right: 10px;
}

.visit-downtown .swiper-navigation button:last-child {
  margin-right: 0;
}

.visit-downtown .swiper-navigation button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}


/*--------------------------------------------------------------
# About Augusta Section
--------------------------------------------------------------*/

.about-augusta {
  padding: 80px 0;
}

.about-augusta .content-wrapper .tagline {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.about-augusta .content-wrapper h3 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 24px;
}

.about-augusta .content-wrapper .intro {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--default-color);
  margin-bottom: 16px;
}

.about-augusta .content-wrapper p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 32px;
}

.about-augusta .content-wrapper .stats-grid {
  margin-bottom: 32px;
}

.about-augusta .content-wrapper .stats-grid .stat-box {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: all 0.3s ease;
}

.about-augusta .content-wrapper .stats-grid .stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.about-augusta .content-wrapper .stats-grid .stat-box .purecounter {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--accent-color);
}

.about-augusta .content-wrapper .stats-grid .stat-box .suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.about-augusta .content-wrapper .stats-grid .stat-box p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin: 8px 0 0 0;
}

.about-augusta .content-wrapper .btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  min-width: 120px;
  min-height: 44px;
  transition: all 0.3s ease;
}

.about-augusta .content-wrapper .btn-discover i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.about-augusta .content-wrapper .btn-discover:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about-augusta .content-wrapper .btn-discover:hover i {
  transform: translateX(4px);
}

.about-augusta .image-stack {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.about-augusta .image-stack .image-primary {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  margin: 0;
}

.about-augusta .image-stack .image-primary img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.about-augusta .image-stack .image-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  margin: 0;
}

.about-augusta .image-stack .image-secondary img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 6px solid var(--background-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.about-augusta .image-stack .experience-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 24px;
  border-radius: 50%;
  text-align: center;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.about-augusta .image-stack .experience-badge i {
  font-size: 24px;
  margin-bottom: 4px;
}

.about-augusta .image-stack .experience-badge span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.about-augusta .image-stack .experience-badge p {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-augusta .highlights-bar {
  margin-top: 80px;
  background: var(--accent-color);
  border-radius: 8px;
  overflow: hidden;
}

.about-augusta .highlights-bar .highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  border-right: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  transition: all 0.3s ease;
}

.about-augusta .highlights-bar .highlight-item:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black);
}

.about-augusta .highlights-bar .highlight-item i {
  font-size: 36px;
  color: var(--contrast-color);
  flex-shrink: 0;
}

.about-augusta .highlights-bar .highlight-item .highlight-text h4 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 4px;
}

.about-augusta .highlights-bar .highlight-item .highlight-text p {
  font-size: 14px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--contrast-color) 80%, transparent);
  margin: 0;
}

@media (max-width: 991px) {
  .about-augusta .content-wrapper {
    margin-bottom: 48px;
  }
  .about-augusta .content-wrapper h3 {
    font-size: 28px;
  }
  .about-augusta .image-stack {
    min-height: 450px;
  }
  .about-augusta .image-stack .image-primary {
    width: 80%;
  }
  .about-augusta .image-stack .image-primary img {
    height: 300px;
  }
  .about-augusta .image-stack .image-secondary {
    width: 65%;
  }
  .about-augusta .image-stack .image-secondary img {
    height: 240px;
  }
  .about-augusta .image-stack .experience-badge {
    width: 100px;
    height: 100px;
    padding: 16px;
  }
  .about-augusta .image-stack .experience-badge i {
    font-size: 20px;
  }
  .about-augusta .image-stack .experience-badge span {
    font-size: 16px;
  }
  .about-augusta .image-stack .experience-badge p {
    font-size: 10px;
  }
  .about-augusta .highlights-bar {
    margin-top: 64px;
  }
  .about-augusta .highlights-bar .highlight-item {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  }
  .about-augusta .highlights-bar .highlight-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .about-augusta .highlights-bar .row>[class*=col-]:nth-child(odd) .highlight-item {
    border-right: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  }
  .about-augusta .highlights-bar .row>[class*=col-]:nth-child(3) .highlight-item,
  .about-augusta .highlights-bar .row>[class*=col-]:nth-child(4) .highlight-item {
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .about-augusta {
    padding: 48px 0;
  }
  .about-augusta .content-wrapper .tagline {
    font-size: 12px;
  }
  .about-augusta .content-wrapper h3 {
    font-size: 24px;
  }
  .about-augusta .content-wrapper .intro {
    font-size: 16px;
  }
  .about-augusta .content-wrapper .stats-grid .stat-box {
    padding: 16px 8px;
  }
  .about-augusta .content-wrapper .stats-grid .stat-box .purecounter {
    font-size: 28px;
  }
  .about-augusta .content-wrapper .stats-grid .stat-box .suffix {
    font-size: 18px;
  }
  .about-augusta .content-wrapper .stats-grid .stat-box p {
    font-size: 12px;
  }
  .about-augusta .content-wrapper .btn-discover {
    width: 100%;
    justify-content: center;
  }
  .about-augusta .image-stack {
    min-height: 380px;
  }
  .about-augusta .image-stack .image-primary {
    width: 90%;
  }
  .about-augusta .image-stack .image-primary img {
    height: 240px;
  }
  .about-augusta .image-stack .image-secondary {
    width: 60%;
  }
  .about-augusta .image-stack .image-secondary img {
    height: 200px;
    border-width: 4px;
  }
  .about-augusta .image-stack .experience-badge {
    width: 90px;
    height: 90px;
    padding: 12px;
  }
  .about-augusta .image-stack .experience-badge i {
    font-size: 18px;
  }
  .about-augusta .image-stack .experience-badge span {
    font-size: 14px;
  }
  .about-augusta .image-stack .experience-badge p {
    font-size: 9px;
  }
  .about-augusta .highlights-bar {
    margin-top: 48px;
  }
  .about-augusta .highlights-bar .highlight-item {
    padding: 24px 16px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
    border-right: none !important;
    border-bottom: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  }
  .about-augusta .highlights-bar .highlight-item:last-child {
    border-bottom: none;
  }
  .about-augusta .highlights-bar .highlight-item i {
    font-size: 32px;
  }
  .about-augusta .highlights-bar .highlight-item .highlight-text h4 {
    font-size: 16px;
  }
  .about-augusta .highlights-bar .highlight-item .highlight-text p {
    font-size: 12px;
  }
}


/*--------------------------------------------------------------
# Gallery Home Section
--------------------------------------------------------------*/

.gallery-home {
  overflow: hidden;
}

.gallery-home .gallery-container {
  padding: 20px 0 40px;
  position: relative;
}

.gallery-home .swiper-wrapper {
  height: auto !important;
  align-items: center;
  padding: 30px 0;
}

.gallery-home .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

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

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

.gallery-home .gallery-img .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-home .gallery-img .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 3rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.gallery-home .gallery-img:hover img {
  transform: scale(1.1);
}

.gallery-home .gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery-home .gallery-img:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-home .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.gallery-home .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gallery-home .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.gallery-home .swiper-button-next,
.gallery-home .swiper-button-prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-home .swiper-button-next:after,
.gallery-home .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.gallery-home:hover .swiper-button-next,
.gallery-home:hover .swiper-button-prev {
  opacity: 0.9;
}

.gallery-home:hover .swiper-button-next:hover,
.gallery-home:hover .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .gallery-home .gallery-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }
  .gallery-home .swiper-button-next,
  .gallery-home .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .gallery-home .swiper-wrapper {
    padding: 15px 0;
  }
  .gallery-home .gallery-img .gallery-overlay i {
    font-size: 2rem;
  }
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faq .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq .faq-card p {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

.faq .faq-list .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-list .faq-item h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.faq .faq-list .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.faq .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }
  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .faq .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}


/*--------------------------------------------------------------
# Get Involved Section
--------------------------------------------------------------*/

.get-involved h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.get-involved h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.get-involved h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.get-involved h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.get-involved p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.get-involved .admissions-steps .steps-wrapper {
  position: relative;
}

.get-involved .admissions-steps .steps-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  z-index: 0;
}

.get-involved .admissions-steps .step-item {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.get-involved .admissions-steps .step-item:last-child {
  margin-bottom: 0;
}

.get-involved .admissions-steps .step-item .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 1.5rem;
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}

.get-involved .admissions-steps .step-item .step-content {
  padding-top: 0.25rem;
}

.get-involved .deadlines {
  display: flex;
  justify-content: center;
}

.get-involved .deadlines .img-wrapper {
  width: 100%;
  max-width: 400px;
  /* adjust to taste */
  text-align: center;
}

.get-involved .deadlines .deadline-image {
  width: 100%;
  height: auto;
  display: block;
}

.get-involved .admissions-requirements {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.get-involved .admissions-requirements .requirements-list {
  margin-top: 1.5rem;
}

.get-involved .admissions-requirements .requirement-item {
  display: flex;
  margin-bottom: 1.75rem;
}

.get-involved .admissions-requirements .requirement-item:last-child {
  margin-bottom: 0;
}

.get-involved .admissions-requirements .requirement-item .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.get-involved .admissions-requirements .requirement-item .icon-box i {
  font-size: 1.25rem;
}

.get-involved .request-info .card {
  background-color: var(--surface-color);
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.get-involved .request-info .card .card-body {
  padding: 2rem;
}

.get-involved .request-info .card .card-title {
  position: relative;
  padding-bottom: 0.75rem;
}

.get-involved .request-info .card .card-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.get-involved .request-info .form-control,
.get-involved .request-info .form-select {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.get-involved .request-info .form-control:focus,
.get-involved .request-info .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.get-involved .request-info .form-control::placeholder,
.get-involved .request-info .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.get-involved .request-info .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  color: var(--contrast-color);
}

.get-involved .request-info .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.get-involved .cta-wrapper {
  margin-top: 4rem;
}

.get-involved .cta-wrapper .cta-item {
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s;
}

.get-involved .cta-wrapper .cta-item:hover {
  transform: translateY(-5px);
}

.get-involved .cta-wrapper .cta-item i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.get-involved .cta-wrapper .cta-item h3 {
  margin-bottom: 1rem;
}

.get-involved .cta-wrapper .cta-item p {
  margin-bottom: 1.5rem;
}

.get-involved .cta-wrapper .cta-item .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.get-involved .cta-wrapper .cta-item.tour {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  border-radius: 8px 0 0 8px;
}

.get-involved .cta-wrapper .cta-item.tour .btn-secondary {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  color: var(--contrast-color);
}

.get-involved .cta-wrapper .cta-item.tour .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 20%);
  border-color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.get-involved .cta-wrapper .cta-item.apply {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0 8px 8px 0;
}

.get-involved .cta-wrapper .cta-item.apply .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.get-involved .cta-wrapper .cta-item.apply .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 991px) {
  .get-involved h2 {
    font-size: 2rem;
  }
  .get-involved h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .get-involved .cta-wrapper .cta-item.tour {
    border-radius: 8px 8px 0 0;
  }
  .get-involved .cta-wrapper .cta-item.apply {
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 576px) {
  .get-involved .deadlines .deadline-grid {
    grid-template-columns: 1fr;
  }
  .get-involved .requirement-item {
    flex-direction: column;
  }
  .get-involved .requirement-item .icon-box {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .get-involved .cta-item {
    padding: 2rem 1.5rem;
  }
}


/*--------------------------------------------------------------
# Business Contact Section
--------------------------------------------------------------*/

.business-contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.business-contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .business-contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.business-contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.business-contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .business-contact .info-box {
    padding: 1.5rem;
  }
}

.business-contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.business-contact .info-item:last-child {
  margin-bottom: 0;
}

.business-contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.business-contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.business-contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.business-contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.business-contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.business-contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.business-contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .business-contact .contact-form {
    padding: 1.5rem;
  }
}

.business-contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .business-contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.business-contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.business-contact .contact-form .form-control,
.business-contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

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

.business-contact .contact-form .form-control::placeholder,
.business-contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.business-contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.business-contact .contact-form .btn i {
  font-size: 1.25rem;
}

.business-contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}


/*--------------------------------------------------------------
# Events Downtown Section
--------------------------------------------------------------*/

.events-downtown .event-meta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 8px;
}

.events-downtown .event-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.events-downtown .event-meta .meta-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.events-downtown .event-meta .meta-item span {
  font-weight: 500;
}

.events-downtown .event-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .events-downtown .event-content h2 {
    font-size: 1.8rem;
  }
}

.events-downtown .event-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.events-downtown .event-content h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 50px;
  background-color: var(--accent-color);
}

.events-downtown .event-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.events-downtown .event-content .event-highlights {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.events-downtown .event-content .event-highlights li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.events-downtown .event-content .event-highlights li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

.events-downtown .event-content .event-highlights li span {
  flex: 1;
}

.events-downtown .event-content .schedule-table {
  margin-top: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.events-downtown .event-content .schedule-table .schedule-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.events-downtown .event-content .schedule-table .schedule-row:last-child {
  border-bottom: none;
}

.events-downtown .event-content .schedule-table .schedule-row:nth-child(odd) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 576px) {
  .events-downtown .event-content .schedule-table .schedule-row {
    flex-direction: column;
  }
}

.events-downtown .event-content .schedule-table .schedule-time {
  width: 180px;
  padding: 15px;
  font-weight: 600;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
}

@media (max-width: 576px) {
  .events-downtown .event-content .schedule-table .schedule-time {
    width: 100%;
  }
}

.events-downtown .event-content .schedule-table .schedule-activity {
  flex: 1;
  padding: 15px 20px;
}

.events-downtown .event-content .schedule-table .schedule-activity h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.events-downtown .event-content .schedule-table .schedule-activity p {
  margin: 0;
  font-size: 0.95rem;
}

.events-downtown .event-content .event-gallery img {
  transition: all 0.3s ease;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.events-downtown .event-content .event-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.events-downtown .event-sidebar .sidebar-widget {
  margin-bottom: 30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.events-downtown .event-sidebar .sidebar-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.events-downtown .event-sidebar .sidebar-widget h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 60px;
  background-color: var(--accent-color);
}

.events-downtown .event-sidebar .registration-form .btn-register {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.events-downtown .event-sidebar .registration-form .btn-register:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.events-downtown .event-sidebar .registration-form .btn-register:active {
  transform: translateY(0);
}

.events-downtown .event-sidebar .organizer-info .organizer-details {
  display: flex;
  flex-direction: column;
}

.events-downtown .event-sidebar .organizer-info .organizer-details .organizer-image {
  margin-bottom: 15px;
}

.events-downtown .event-sidebar .organizer-info .organizer-details .organizer-image img {
  border-radius: 8px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.events-downtown .event-sidebar .organizer-info .organizer-details .organizer-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.events-downtown .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-position {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.events-downtown .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
}

.events-downtown .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.events-downtown .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p:last-child {
  margin-bottom: 0;
}

.events-downtown .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p i {
  color: var(--accent-color);
}

.events-downtown .event-sidebar .related-events .related-event-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.events-downtown .event-sidebar .related-events .related-event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.events-downtown .event-sidebar .related-events .related-event-item .related-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 70px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
}

.events-downtown .event-sidebar .related-events .related-event-item .related-event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.events-downtown .event-sidebar .related-events .related-event-item .related-event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.events-downtown .event-sidebar .related-events .related-event-item .related-event-info {
  flex: 1;
}

.events-downtown .event-sidebar .related-events .related-event-item .related-event-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.events-downtown .event-sidebar .related-events .related-event-item .related-event-info p {
  margin: 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}


/*--------------------------------------------------------------
# Gallery Events Section
--------------------------------------------------------------*/

.gallery-events {
  overflow: hidden;
}

.gallery-events .gallery-container {
  padding: 20px 0 40px;
  position: relative;
}

.gallery-events .swiper-wrapper {
  height: auto !important;
  align-items: center;
  padding: 30px 0;
}

.gallery-events .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

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

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

.gallery-events .gallery-img .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-events .gallery-img .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 3rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.gallery-events .gallery-img:hover img {
  transform: scale(1.1);
}

.gallery-events .gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery-events .gallery-img:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-events .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.gallery-events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gallery-events .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.gallery-events .swiper-button-next,
.gallery-events .swiper-button-prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-events .swiper-button-next:after,
.gallery-events .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.gallery-events:hover .swiper-button-next,
.gallery-events:hover .swiper-button-prev {
  opacity: 0.9;
}

.gallery-events:hover .swiper-button-next:hover,
.gallery-events:hover .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .gallery-events .gallery-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }
  .gallery-events .swiper-button-next,
  .gallery-events .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .gallery-events .swiper-wrapper {
    padding: 15px 0;
  }
  .gallery-events .gallery-img .gallery-overlay i {
    font-size: 2rem;
  }
}


/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/

.contact-us {
  position: relative;
  overflow: hidden;
}

.contact-us::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 8%, transparent) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-us::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 6%, transparent) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-us .container {
  position: relative;
  z-index: 1;
}

.contact-us .info-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 48px;
  background: var(--accent-color);
  border-radius: 24px;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

.contact-us .info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, color-mix(in srgb, #000 15%, transparent) 100%);
  pointer-events: none;
}

.contact-us .info-panel>* {
  position: relative;
  z-index: 1;
}

.contact-us .info-panel .panel-header {
  margin-bottom: 40px;
}

.contact-us .info-panel .panel-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.contact-us .info-panel .panel-header .section-badge i {
  font-size: 14px;
}

.contact-us .info-panel .panel-header h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--contrast-color);
  letter-spacing: -0.5px;
}

.contact-us .info-panel .panel-header p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

.contact-us .info-panel .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-us .info-panel .method-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-us .info-panel .method-item:hover {
  background: color-mix(in srgb, var(--contrast-color) 18%, transparent);
  transform: translateX(8px);
}

.contact-us .info-panel .method-item .method-icon {
  width: 48px;
  height: 48px;
  background: var(--contrast-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-us .info-panel .method-item .method-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.contact-us .info-panel .method-item .method-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-us .info-panel .method-item .method-details .method-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.contact-us .info-panel .method-item .method-details a,
.contact-us .info-panel .method-item .method-details span {
  font-size: 15px;
  font-weight: 500;
  color: var(--contrast-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-us .info-panel .method-item .method-details a:hover,
.contact-us .info-panel .method-item .method-details span:hover {
  opacity: 0.8;
}

.contact-us .info-panel .stats-strip {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
  border-radius: 16px;
  margin-bottom: 32px;
}

.contact-us .info-panel .stats-strip .stat-item {
  flex: 1;
  text-align: center;
}

.contact-us .info-panel .stats-strip .stat-item .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.contact-us .info-panel .stats-strip .stat-item .stat-text {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.contact-us .info-panel .social-connect {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-us .info-panel .social-connect>span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.contact-us .info-panel .social-connect .social-icons {
  display: flex;
  gap: 12px;
}

.contact-us .info-panel .social-connect .social-icons a {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.contact-us .info-panel .social-connect .social-icons a:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-4px);
}

.contact-us .info-panel .social-connect .social-icons a i {
  font-size: 16px;
}

.contact-us .form-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color) 10%, transparent);
  height: 100%;
}

.contact-us .form-card .form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact-us .form-card .form-card-header .header-icon {
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-us .form-card .form-card-header .header-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.contact-us .form-card .form-card-header .header-text h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact-us .form-card .form-card-header .header-text p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin: 0;
}

.contact-us .form-card .php-email-form .input-group-custom label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.contact-us .form-card .php-email-form .input-group-custom .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-us .form-card .php-email-form .input-group-custom .input-wrapper i {
  position: absolute;
  left: 18px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  transition: color 0.3s ease;
  z-index: 1;
}

.contact-us .form-card .php-email-form .input-group-custom .input-wrapper input,
.contact-us .form-card .php-email-form .input-group-custom .input-wrapper textarea {
  width: 100%;
  height: 56px;
  padding: 16px 16px 16px 52px;
  font-size: 15px;
  color: var(--default-color);
  background: color-mix(in srgb, var(--default-color) 4%, transparent);
  border: 2px solid transparent;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.contact-us .form-card .php-email-form .input-group-custom .input-wrapper input::placeholder,
.contact-us .form-card .php-email-form .input-group-custom .input-wrapper textarea::placeholder {
  color: color-mix(in srgb, var(--default-color) 40%, transparent);
}

.contact-us .form-card .php-email-form .input-group-custom .input-wrapper input:focus,
.contact-us .form-card .php-email-form .input-group-custom .input-wrapper textarea:focus {
  outline: none;
  background: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color) 12%, transparent);
}

.contact-us .form-card .php-email-form .input-group-custom .input-wrapper input:focus+i,
.contact-us .form-card .php-email-form .input-group-custom .input-wrapper input:focus~i,
.contact-us .form-card .php-email-form .input-group-custom .input-wrapper textarea:focus+i,
.contact-us .form-card .php-email-form .input-group-custom .input-wrapper textarea:focus~i {
  color: var(--accent-color);
}

.contact-us .form-card .php-email-form .input-group-custom .input-wrapper.textarea-wrapper {
  align-items: flex-start;
}

.contact-us .form-card .php-email-form .input-group-custom .input-wrapper.textarea-wrapper i {
  top: 18px;
}

.contact-us .form-card .php-email-form .input-group-custom .input-wrapper.textarea-wrapper textarea {
  height: auto;
  min-height: 140px;
  resize: vertical;
}

.contact-us .form-card .php-email-form .form-actions {
  margin-top: 32px;
}

.contact-us .form-card .php-email-form .form-actions .btn-submit {
  width: 100%;
  height: 56px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-us .form-card .php-email-form .form-actions .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color) 85%, #000);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.contact-us .form-card .php-email-form .form-actions .btn-submit:hover i {
  transform: translateX(4px);
}

.contact-us .form-card .php-email-form .form-actions .btn-submit i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.contact-us .form-card .php-email-form .form-actions .secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.contact-us .form-card .php-email-form .form-actions .secure-note i {
  font-size: 14px;
  color: color-mix(in srgb, var(--accent-color) 70%, transparent);
}

.contact-us .form-card .php-email-form .form-actions .secure-note span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

@media (max-width: 992px) {
  .contact-us .info-panel {
    padding: 40px;
  }
  .contact-us .info-panel .panel-header h3 {
    font-size: 28px;
  }
  .contact-us .info-panel .stats-strip {
    gap: 16px;
    padding: 20px;
  }
  .contact-us .info-panel .stats-strip .stat-item .stat-number {
    font-size: 24px;
  }
  .contact-us .form-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .contact-us .info-panel {
    padding: 32px;
  }
  .contact-us .info-panel .panel-header {
    margin-bottom: 32px;
  }
  .contact-us .info-panel .panel-header h3 {
    font-size: 24px;
  }
  .contact-us .info-panel .contact-methods {
    margin-bottom: 32px;
  }
  .contact-us .info-panel .stats-strip {
    flex-direction: column;
    gap: 16px;
  }
  .contact-us .info-panel .stats-strip .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .contact-us .info-panel .stats-strip .stat-item .stat-number {
    margin-bottom: 0;
    order: 2;
  }
  .contact-us .info-panel .stats-strip .stat-item .stat-text {
    order: 1;
  }
  .contact-us .info-panel .social-connect {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .contact-us .form-card {
    padding: 32px 24px;
  }
  .contact-us .form-card .form-card-header {
    flex-direction: column;
    gap: 16px;
  }
  .contact-us .form-card .form-card-header .header-icon {
    width: 56px;
    height: 56px;
  }
  .contact-us .form-card .form-card-header .header-icon i {
    font-size: 24px;
  }
  .contact-us .form-card .form-card-header .header-text h4 {
    font-size: 22px;
  }
  .contact-us .form-card .php-email-form .input-group-custom .input-wrapper input,
  .contact-us .form-card .php-email-form .input-group-custom .input-wrapper textarea {
    height: 52px;
    padding: 14px 14px 14px 48px;
  }
  .contact-us .form-card .php-email-form .form-actions .btn-submit {
    height: 52px;
  }
}

@media (max-width: 576px) {
  .contact-us .info-panel {
    padding: 24px;
  }
  .contact-us .info-panel .method-item {
    padding: 14px;
  }
  .contact-us .info-panel .method-item .method-icon {
    width: 44px;
    height: 44px;
  }
  .contact-us .info-panel .method-item .method-icon i {
    font-size: 18px;
  }
  .contact-us .form-card {
    padding: 24px 20px;
  }
  .contact-us .form-card .form-card-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }
  .contact-us .form-card .php-email-form .input-group-custom .input-wrapper input,
  .contact-us .form-card .php-email-form .input-group-custom .input-wrapper textarea {
    font-size: 16px;
  }
}


/*--------------------------------------------------------------
# Gallery 3 Section
--------------------------------------------------------------*/

.gallery-3 {
  overflow: hidden;
}

.gallery-3 .gallery-container {
  padding: 20px 0 40px;
  position: relative;
}

.gallery-3 .swiper-wrapper {
  height: auto !important;
  align-items: center;
  padding: 30px 0;
}

.gallery-3 .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

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

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

.gallery-3 .gallery-img .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-3 .gallery-img .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 3rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

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

.gallery-3 .gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery-3 .gallery-img:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-3 .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.gallery-3 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gallery-3 .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.gallery-3 .swiper-button-next,
.gallery-3 .swiper-button-prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-3 .swiper-button-next:after,
.gallery-3 .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.gallery-3:hover .swiper-button-next,
.gallery-3:hover .swiper-button-prev {
  opacity: 0.9;
}

.gallery-3:hover .swiper-button-next:hover,
.gallery-3:hover .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .gallery-3 .gallery-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }
  .gallery-3 .swiper-button-next,
  .gallery-3 .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .gallery-3 .swiper-wrapper {
    padding: 15px 0;
  }
  .gallery-3 .gallery-img .gallery-overlay i {
    font-size: 2rem;
  }
}


/*--------------------------------------------------------------
# Downtown Information Section
--------------------------------------------------------------*/

.downtown-information .content-wrapper {
  padding-right: 24px;
}

@media (max-width: 992px) {
  .downtown-information .content-wrapper {
    padding-right: 0;
    margin-bottom: 48px;
  }
}

.downtown-information .section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.downtown-information h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .downtown-information h2 {
    font-size: 2rem;
  }
}

.downtown-information .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.downtown-information .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .downtown-information .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
}

.downtown-information .stat-item {
  text-align: center;
}

.downtown-information .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .downtown-information .stat-item .stat-number {
    font-size: 2rem;
  }
}

.downtown-information .stat-item .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.downtown-information .features-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.downtown-information .feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.downtown-information .feature-item .feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.downtown-information .feature-item .feature-content {
  flex: 1;
}

.downtown-information .feature-item .feature-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.downtown-information .feature-item .feature-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.downtown-information .cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.downtown-information .btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.downtown-information .btn i {
  transition: transform 0.3s ease;
}

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

.downtown-information .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.downtown-information .btn-primary:hover i {
  transform: translateX(4px);
}

.downtown-information .btn-secondary {
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
}

.downtown-information .btn-secondary:hover {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.downtown-information .image-stack {
  position: relative;
  height: 600px;
}

@media (max-width: 992px) {
  .downtown-information .image-stack {
    height: 500px;
  }
}

@media (max-width: 576px) {
  .downtown-information .image-stack {
    height: 400px;
  }
}

.downtown-information .image-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.downtown-information .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.downtown-information .image-primary {
  width: 75%;
  height: 70%;
  top: 0;
  right: 0;
  z-index: 2;
}

.downtown-information .image-secondary {
  width: 55%;
  height: 50%;
  bottom: 0;
  left: 0;
  z-index: 3;
  border: 4px solid var(--background-color);
}

.downtown-information .floating-badge {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 4;
  background: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .downtown-information .floating-badge {
    padding: 16px;
    right: 50%;
    transform: translate(50%, -50%);
  }
}

.downtown-information .floating-badge .badge-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 8px;
  color: var(--contrast-color);
  font-size: 1.5rem;
}

.downtown-information .floating-badge .badge-text .badge-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--heading-color);
  line-height: 1.2;
}

.downtown-information .floating-badge .badge-text .badge-subtitle {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 2px;
}


/*--------------------------------------------------------------
# Augusta Purpose Section
--------------------------------------------------------------*/

.augusta-purpose .section-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.augusta-purpose .section-intro .subtitle {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.augusta-purpose .section-intro .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .augusta-purpose .section-intro .title {
    font-size: 3rem;
  }
}

.augusta-purpose .section-intro .desc {
  font-size: 1.125rem;
  line-height: 1.7;
}

.augusta-purpose .highlight-cards {
  margin-top: 5rem;
}

.augusta-purpose .highlight-cards .highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  height: 350px;
}

.augusta-purpose .highlight-cards .highlight-card.elevated {
  transform: translateY(2rem);
}

@media (max-width: 768px) {
  .augusta-purpose .highlight-cards .highlight-card.elevated {
    transform: translateY(0);
  }
}

.augusta-purpose .highlight-cards .highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.augusta-purpose .highlight-cards .highlight-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.augusta-purpose .highlight-cards .highlight-card .card-content {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  transition: transform 0.3s ease;
}

.augusta-purpose .highlight-cards .highlight-card .card-content .card-title {
  color: var(--contrast-color);
  font-size: 1.25rem;
  font-weight: 600;
}

.augusta-purpose .highlight-cards .highlight-card:hover img {
  transform: scale(1.1);
}

.augusta-purpose .highlight-cards .highlight-card:hover .card-content {
  transform: translateY(-5px);
}

.augusta-purpose .values-section {
  margin-top: 6rem;
}

.augusta-purpose .values-section .values-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.augusta-purpose .values-section .values-image img {
  width: 100%;
  transition: transform 0.7s ease;
}

.augusta-purpose .values-section .values-image:hover img {
  transform: scale(1.05);
}

.augusta-purpose .values-section .values-content {
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .augusta-purpose .values-section .values-content {
    padding: 0 0 0 2rem;
  }
}

.augusta-purpose .values-section .values-content .values-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .augusta-purpose .values-section .values-content .values-title {
    font-size: 2.25rem;
  }
}

.augusta-purpose .values-section .values-content .values-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.augusta-purpose .values-section .values-content .values-list .value-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.augusta-purpose .values-section .values-content .values-list .value-item .value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

.augusta-purpose .values-section .values-content .values-list .value-item .value-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.augusta-purpose .values-section .values-content .values-list .value-item .value-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline;
}

.augusta-purpose .values-section .values-content .values-list .value-item .value-text p {
  display: inline;
  margin-left: 0.5rem;
}


/*--------------------------------------------------------------
# Augusta Options Section
--------------------------------------------------------------*/

.augusta-options .content-wrapper {
  padding-right: 2rem;
}

.augusta-options .content-wrapper .badge-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  color: var(--contrast-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.25rem;
  border-radius: 24px;
  margin-bottom: 1.25rem;
}

.augusta-options .content-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.augusta-options .content-wrapper .lead-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.augusta-options .features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.augusta-options .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.augusta-options .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.augusta-options .feature-item .feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  color: var(--accent-color);
  font-size: 1.4rem;
  transition: all 0.3s;
}

.augusta-options .feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 85%, #6366f1));
  color: var(--contrast-color);
}

.augusta-options .feature-item .feature-content h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.35rem;
}

.augusta-options .feature-item .feature-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.5;
}

.augusta-options .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.augusta-options .cta-buttons .btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 85%, #6366f1));
  color: var(--contrast-color);
  padding: 0.875rem 1.75rem;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: all 0.3s;
}

.augusta-options .cta-buttons .btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.augusta-options .cta-buttons .btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent-color);
  padding: 0.875rem 1.75rem;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--accent-color);
  transition: all 0.3s;
}

.augusta-options .cta-buttons .btn-secondary-custom:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.augusta-options .image-showcase {
  position: relative;
  padding: 2rem;
}

.augusta-options .image-showcase .main-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.augusta-options .image-showcase .main-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}

.augusta-options .image-showcase .main-image:hover img {
  transform: scale(1.03);
}

.augusta-options .image-showcase .floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface-color);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.augusta-options .image-showcase .floating-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 85%, #6366f1));
  color: var(--contrast-color);
  font-size: 1.1rem;
}

.augusta-options .image-showcase .floating-card .card-info {
  display: flex;
  flex-direction: column;
}

.augusta-options .image-showcase .floating-card .card-info .metric {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.augusta-options .image-showcase .floating-card .card-info .label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.augusta-options .image-showcase .floating-card.card-top {
  top: 0;
  right: 0;
}

.augusta-options .image-showcase .floating-card.card-bottom {
  bottom: 0;
  left: 0;
}

@media (max-width: 992px) {
  .augusta-options .content-wrapper {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .augusta-options .content-wrapper h2 {
    font-size: 2rem;
  }
  .augusta-options .image-showcase {
    padding: 1.5rem;
  }
  .augusta-options .image-showcase .floating-card.card-top {
    top: -0.5rem;
    right: -0.5rem;
  }
  .augusta-options .image-showcase .floating-card.card-bottom {
    bottom: -0.5rem;
    left: -0.5rem;
  }
}

@media (max-width: 768px) {
  .augusta-options .content-wrapper h2 {
    font-size: 1.75rem;
  }
  .augusta-options .content-wrapper .lead-text {
    font-size: 1rem;
  }
  .augusta-options .feature-item {
    padding: 1rem;
  }
  .augusta-options .feature-item .feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1.2rem;
  }
  .augusta-options .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .augusta-options .cta-buttons .btn-primary-custom,
  .augusta-options .cta-buttons .btn-secondary-custom {
    justify-content: center;
    width: 100%;
  }
  .augusta-options .image-showcase {
    padding: 2.5rem 1rem;
  }
  .augusta-options .image-showcase .floating-card {
    padding: 0.75rem 1rem;
  }
  .augusta-options .image-showcase .floating-card .card-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .augusta-options .image-showcase .floating-card .card-info .metric {
    font-size: 1.1rem;
  }
  .augusta-options .image-showcase .floating-card .card-info .label {
    font-size: 0.75rem;
  }
}


/*--------------------------------------------------------------
# Featured Downtown Section
--------------------------------------------------------------*/

.featured-downtown {
  padding: 80px 0;
  background: linear-gradient(45deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 98%));
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 992px) {
  .featured-downtown {
    padding: 60px 0;
  }
  .featured-downtown .programs-overview {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  .featured-downtown .programs-overview .overview-content {
    order: 2;
  }
  .featured-downtown .programs-overview .overview-content h2 {
    font-size: 2rem;
  }
  .featured-downtown .programs-overview .overview-content .overview-stats {
    justify-content: space-between;
    gap: 20px;
  }
  .featured-downtown .programs-overview .overview-image {
    order: 1;
  }
  .featured-downtown .programs-overview .overview-image img {
    height: 300px;
  }
  .featured-downtown .programs-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .featured-downtown .overview-content .overview-stats {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .featured-downtown .featured-program .card-content {
    padding: 24px 20px;
  }
  .featured-downtown .program-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .featured-downtown .program-item .item-visual {
    width: 120px;
    height: 120px;
  }
  .featured-downtown .program-item .item-action {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .featured-downtown {
    padding: 40px 0;
  }
  .featured-downtown .programs-overview {
    margin-bottom: 40px;
  }
  .featured-downtown .programs-overview .overview-content h2 {
    font-size: 1.8rem;
  }
  .featured-downtown .programs-overview .overview-image img {
    height: 250px;
  }
  .featured-downtown .programs-showcase {
    gap: 30px;
  }
}


/*--------------------------------------------------------------
# Downtown Features Section
--------------------------------------------------------------*/

.downtown-features {
  padding: 80px 0;
}

.downtown-features .content-wrapper .tagline {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.downtown-features .content-wrapper h3 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 24px;
}

.downtown-features .content-wrapper .intro {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--default-color);
  margin-bottom: 16px;
}

.downtown-features .content-wrapper p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 32px;
}

.downtown-features .content-wrapper .stats-grid {
  margin-bottom: 32px;
}

.downtown-features .content-wrapper .stats-grid .stat-box {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: all 0.3s ease;
}

.downtown-features .content-wrapper .stats-grid .stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.downtown-features .content-wrapper .stats-grid .stat-box .purecounter {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--accent-color);
}

.downtown-features .content-wrapper .stats-grid .stat-box .suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.downtown-features .content-wrapper .stats-grid .stat-box p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin: 8px 0 0 0;
}

.downtown-features .content-wrapper .btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  min-width: 120px;
  min-height: 44px;
  transition: all 0.3s ease;
}

.downtown-features .content-wrapper .btn-discover i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.downtown-features .content-wrapper .btn-discover:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.downtown-features .content-wrapper .btn-discover:hover i {
  transform: translateX(4px);
}

.downtown-features .image-stack {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.downtown-features .image-stack .image-primary {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  margin: 0;
}

.downtown-features .image-stack .image-primary img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.downtown-features .image-stack .image-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  margin: 0;
}

.downtown-features .image-stack .image-secondary img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 6px solid var(--background-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.downtown-features .image-stack .experience-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 24px;
  border-radius: 50%;
  text-align: center;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.downtown-features .image-stack .experience-badge i {
  font-size: 24px;
  margin-bottom: 4px;
}

.downtown-features .image-stack .experience-badge span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.downtown-features .image-stack .experience-badge p {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.downtown-features .highlights-bar {
  margin-top: 80px;
  background: var(--accent-color);
  border-radius: 8px;
  overflow: hidden;
}

.downtown-features .highlights-bar .highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  border-right: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  transition: all 0.3s ease;
}

.downtown-features .highlights-bar .highlight-item:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black);
}

.downtown-features .highlights-bar .highlight-item i {
  font-size: 36px;
  color: var(--contrast-color);
  flex-shrink: 0;
}

.downtown-features .highlights-bar .highlight-item .highlight-text h4 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 4px;
}

.downtown-features .highlights-bar .highlight-item .highlight-text p {
  font-size: 14px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--contrast-color) 80%, transparent);
  margin: 0;
}

@media (max-width: 991px) {
  .downtown-features .content-wrapper {
    margin-bottom: 48px;
  }
  .downtown-features .content-wrapper h3 {
    font-size: 28px;
  }
  .downtown-features .image-stack {
    min-height: 450px;
  }
  .downtown-features .image-stack .image-primary {
    width: 80%;
  }
  .downtown-features .image-stack .image-primary img {
    height: 300px;
  }
  .downtown-features .image-stack .image-secondary {
    width: 65%;
  }
  .downtown-features .image-stack .image-secondary img {
    height: 240px;
  }
  .downtown-features .image-stack .experience-badge {
    width: 100px;
    height: 100px;
    padding: 16px;
  }
  .downtown-features .image-stack .experience-badge i {
    font-size: 20px;
  }
  .downtown-features .image-stack .experience-badge span {
    font-size: 16px;
  }
  .downtown-features .image-stack .experience-badge p {
    font-size: 10px;
  }
  .downtown-features .highlights-bar {
    margin-top: 64px;
  }
  .downtown-features .highlights-bar .highlight-item {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  }
  .downtown-features .highlights-bar .highlight-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .downtown-features .highlights-bar .row>[class*=col-]:nth-child(odd) .highlight-item {
    border-right: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  }
  .downtown-features .highlights-bar .row>[class*=col-]:nth-child(3) .highlight-item,
  .downtown-features .highlights-bar .row>[class*=col-]:nth-child(4) .highlight-item {
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .downtown-features {
    padding: 48px 0;
  }
  .downtown-features .content-wrapper .tagline {
    font-size: 12px;
  }
  .downtown-features .content-wrapper h3 {
    font-size: 24px;
  }
  .downtown-features .content-wrapper .intro {
    font-size: 16px;
  }
  .downtown-features .content-wrapper .stats-grid .stat-box {
    padding: 16px 8px;
  }
  .downtown-features .content-wrapper .stats-grid .stat-box .purecounter {
    font-size: 28px;
  }
  .downtown-features .content-wrapper .stats-grid .stat-box .suffix {
    font-size: 18px;
  }
  .downtown-features .content-wrapper .stats-grid .stat-box p {
    font-size: 12px;
  }
  .downtown-features .content-wrapper .btn-discover {
    width: 100%;
    justify-content: center;
  }
  .downtown-features .image-stack {
    min-height: 380px;
  }
  .downtown-features .image-stack .image-primary {
    width: 90%;
  }
  .downtown-features .image-stack .image-primary img {
    height: 240px;
  }
  .downtown-features .image-stack .image-secondary {
    width: 60%;
  }
  .downtown-features .image-stack .image-secondary img {
    height: 200px;
    border-width: 4px;
  }
  .downtown-features .image-stack .experience-badge {
    width: 90px;
    height: 90px;
    padding: 12px;
  }
  .downtown-features .image-stack .experience-badge i {
    font-size: 18px;
  }
  .downtown-features .image-stack .experience-badge span {
    font-size: 14px;
  }
  .downtown-features .image-stack .experience-badge p {
    font-size: 9px;
  }
  .downtown-features .highlights-bar {
    margin-top: 48px;
  }
  .downtown-features .highlights-bar .highlight-item {
    padding: 24px 16px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
    border-right: none !important;
    border-bottom: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  }
  .downtown-features .highlights-bar .highlight-item:last-child {
    border-bottom: none;
  }
  .downtown-features .highlights-bar .highlight-item i {
    font-size: 32px;
  }
  .downtown-features .highlights-bar .highlight-item .highlight-text h4 {
    font-size: 16px;
  }
  .downtown-features .highlights-bar .highlight-item .highlight-text p {
    font-size: 12px;
  }
}


/*--------------------------------------------------------------
# Downtown Gallery Section
--------------------------------------------------------------*/

.downtown-gallery .featured-gallery {
  margin-bottom: 2rem;
}

.downtown-gallery .featured-gallery .main-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.downtown-gallery .featured-gallery .main-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.downtown-gallery .featured-gallery .main-gallery-item:hover .gallery-lightbox {
  opacity: 1;
}

.downtown-gallery .featured-gallery .main-gallery-item:hover img {
  transform: scale(1.02);
}

.downtown-gallery .featured-gallery .main-gallery-item:hover .gallery-info {
  transform: translateY(0);
  opacity: 1;
}

.downtown-gallery .featured-gallery .main-gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

@media (max-width: 768px) {
  .downtown-gallery .featured-gallery .main-gallery-item img {
    height: 300px;
  }
}

.downtown-gallery .featured-gallery .main-gallery-item .gallery-lightbox {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.downtown-gallery .featured-gallery .main-gallery-item .gallery-lightbox .lightbox-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.downtown-gallery .featured-gallery .main-gallery-item .gallery-lightbox:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

.downtown-gallery .featured-gallery .main-gallery-item .gallery-lightbox:hover .lightbox-icon i {
  color: var(--contrast-color);
}

.downtown-gallery .featured-gallery .main-gallery-item .gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--contrast-color);
  padding: 30px 25px 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.downtown-gallery .featured-gallery .main-gallery-item .gallery-info h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.downtown-gallery .featured-gallery .main-gallery-item .gallery-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.downtown-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  height: 400px;
}

@media (max-width: 768px) {
  .downtown-gallery .gallery-grid {
    height: 300px;
    gap: 10px;
  }
}

.downtown-gallery .gallery-grid .gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.downtown-gallery .gallery-grid .gallery-grid-item:hover {
  transform: scale(1.02);
}

.downtown-gallery .gallery-grid .gallery-grid-item:hover .grid-overlay {
  opacity: 1;
}

.downtown-gallery .gallery-grid .gallery-grid-item:hover img {
  transform: scale(1.05);
}

.downtown-gallery .gallery-grid .gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.downtown-gallery .gallery-grid .gallery-grid-item .grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.downtown-gallery .gallery-grid .gallery-grid-item .grid-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
}

.downtown-gallery .gallery-thumbnails {
  margin: 3rem 0;
}

.downtown-gallery .gallery-thumbnails .thumbnail-gallery .swiper-wrapper {
  height: auto !important;
}

.downtown-gallery .gallery-thumbnails .thumbnail-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.downtown-gallery .gallery-thumbnails .thumbnail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.downtown-gallery .gallery-thumbnails .thumbnail-item:hover img {
  transform: scale(1.1);
}

.downtown-gallery .gallery-thumbnails .thumbnail-item:hover::after {
  opacity: 0.7;
}

.downtown-gallery .gallery-thumbnails .thumbnail-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 40%));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.downtown-gallery .gallery-thumbnails .thumbnail-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .downtown-gallery .gallery-thumbnails .thumbnail-item img {
    height: 60px;
  }
}

.downtown-gallery .gallery-thumbnails .thumbnail-item .thumbnail-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.downtown-gallery .gallery-actions {
  margin-top: 2rem;
}

.downtown-gallery .gallery-actions .action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .downtown-gallery .gallery-actions .action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.downtown-gallery .gallery-actions .btn-primary-gallery,
.downtown-gallery .gallery-actions .btn-secondary-gallery {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid;
}

.downtown-gallery .gallery-actions .btn-primary-gallery i,
.downtown-gallery .gallery-actions .btn-secondary-gallery i {
  font-size: 1.1rem;
}

.downtown-gallery .gallery-actions .btn-primary-gallery:hover,
.downtown-gallery .gallery-actions .btn-secondary-gallery:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
  .downtown-gallery .gallery-actions .btn-primary-gallery,
  .downtown-gallery .gallery-actions .btn-secondary-gallery {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

.downtown-gallery .gallery-actions .btn-primary-gallery {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.downtown-gallery .gallery-actions .btn-primary-gallery:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000000 15%);
  color: var(--contrast-color);
}

.downtown-gallery .gallery-actions .btn-secondary-gallery {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.downtown-gallery .gallery-actions .btn-secondary-gallery:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Downtown Experience Section
--------------------------------------------------------------*/

.downtown-experience .content-wrapper {
  padding: 80px 0;
}

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

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

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

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

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

.downtown-experience .stat-item {
  text-align: center;
}

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

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

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

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

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

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

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

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

.downtown-experience .activities-section {
  margin-top: 120px;
}

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

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

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

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

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

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

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

.downtown-experience .activity-card:hover {
  transform: translateY(-8px);
}

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

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

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

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

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

.downtown-experience .testimonial-section {
  margin-top: 120px;
}

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

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

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

.downtown-experience .testimonial-section .testimonial-content {
  padding-left: 60px;
}

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

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

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

@media (max-width: 768px) {
  .downtown-experience .testimonial-section .testimonial-content blockquote {
    font-size: 1.125rem;
  }
  .downtown-experience .testimonial-section .testimonial-content blockquote::before {
    font-size: 3rem;
    top: -15px;
    left: -20px;
  }
}

.downtown-experience .testimonial-section .testimonial-content .testimonial-author h5 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.downtown-experience .testimonial-section .testimonial-content .testimonial-author span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
}


/*--------------------------------------------------------------
# Downtown Programs Section
--------------------------------------------------------------*/

.downtown-programs .nav-tabs {
  border: none;
  border-right: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  padding: 0;
}

.downtown-programs .nav-tabs .nav-item {
  margin: 15px 0;
}

.downtown-programs .nav-tabs .nav-link {
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  color: var(--default-color);
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

.downtown-programs .nav-tabs .nav-link .d-flex {
  gap: 15px;
}

.downtown-programs .nav-tabs .nav-link i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.downtown-programs .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: 0.3s;
}

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

.downtown-programs .nav-tabs .nav-link:hover i {
  color: var(--accent-color);
}

.downtown-programs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.downtown-programs .nav-tabs .nav-link.active i {
  color: var(--accent-color);
}

.downtown-programs .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3px;
  height: 100%;
  width: 3px;
  background: var(--accent-color);
}

@media (max-width: 991px) {
  .downtown-programs .nav-tabs {
    border-right: none;
    border-bottom: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 30px;
    padding: 0;
  }
  .downtown-programs .nav-tabs .nav-item {
    margin: 8px 0;
  }
  .downtown-programs .nav-tabs .nav-link {
    padding: 10px 15px;
  }
  .downtown-programs .nav-tabs .nav-link.active::after {
    right: 0;
    bottom: -3px;
    top: auto;
    height: 3px;
    width: 100%;
  }
}

.downtown-programs .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.downtown-programs .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.downtown-programs .tab-content p.fst-italic {
  font-style: italic;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 6px;
  position: relative;
}

.downtown-programs .tab-content ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.downtown-programs .tab-content ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.downtown-programs .tab-content ul li i {
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 18px;
  color: var(--accent-color);
}

.downtown-programs .tab-content img {
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .downtown-programs .tab-content h3 {
    font-size: 24px;
    margin-top: 20px;
  }
  .downtown-programs .tab-content img {
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Downtown Initiatives Section
--------------------------------------------------------------*/

.downtown-initiatives .about-gallery {
  position: relative;
  padding-right: 80px;
  padding-bottom: 80px;
}

.downtown-initiatives .about-gallery .gallery-main {
  border-radius: 8px;
  overflow: hidden;
}

.downtown-initiatives .about-gallery .gallery-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.downtown-initiatives .about-gallery .gallery-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--background-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.downtown-initiatives .about-gallery .gallery-secondary img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.downtown-initiatives .about-gallery .experience-badge {
  position: absolute;
  top: 24px;
  right: 48px;
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.downtown-initiatives .about-gallery .experience-badge .number {
  font-size: 28px;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
}

.downtown-initiatives .about-gallery .experience-badge .text {
  font-size: 11px;
  font-weight: 600;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  text-align: center;
  line-height: 1.2;
}

.downtown-initiatives .about-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.downtown-initiatives .about-content .section-label i {
  font-size: 16px;
}

.downtown-initiatives .about-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}

.downtown-initiatives .about-content .lead {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

.downtown-initiatives .about-highlights {
  margin-bottom: 32px;
}

.downtown-initiatives .about-highlights .highlight-item .highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.downtown-initiatives .about-highlights .highlight-item .highlight-icon i {
  font-size: 22px;
  color: var(--accent-color);
}

.downtown-initiatives .about-highlights .highlight-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.downtown-initiatives .about-highlights .highlight-item p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
  margin: 0;
}

.downtown-initiatives .about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.downtown-initiatives .about-cta .btn-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.downtown-initiatives .about-cta .btn-about:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

.downtown-initiatives .about-cta .btn-about:hover i {
  transform: translateX(4px);
}

.downtown-initiatives .about-cta .btn-about i {
  transition: transform 0.3s ease;
}

.downtown-initiatives .about-cta .btn-about-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.downtown-initiatives .about-cta .btn-about-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .downtown-initiatives .about-gallery {
    padding-right: 48px;
    padding-bottom: 48px;
    margin-bottom: 16px;
  }
  .downtown-initiatives .about-gallery .experience-badge {
    right: 16px;
  }
  .downtown-initiatives .about-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .downtown-initiatives .about-gallery {
    padding-right: 32px;
    padding-bottom: 32px;
  }
  .downtown-initiatives .about-gallery .experience-badge {
    width: 80px;
    height: 80px;
    right: 0;
  }
  .downtown-initiatives .about-gallery .experience-badge .number {
    font-size: 22px;
  }
  .downtown-initiatives .about-gallery .experience-badge .text {
    font-size: 9px;
  }
  .downtown-initiatives .about-content h2 {
    font-size: 26px;
  }
  .downtown-initiatives .about-cta {
    flex-direction: column;
  }
  .downtown-initiatives .about-cta .btn-about,
  .downtown-initiatives .about-cta .btn-about-outline {
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.gallery .hotel-filters {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gallery .hotel-filters li {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery .hotel-filters li:hover,
.gallery .hotel-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .gallery .hotel-filters li {
    padding: 8px 16px;
    font-size: 13px;
  }
}

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

.gallery .gallery-item .gallery-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery .gallery-item .gallery-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery .gallery-item .gallery-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .gallery .gallery-item .gallery-wrapper img {
    height: 250px;
  }
}

.gallery .gallery-item .gallery-wrapper:hover img {
  transform: scale(1.1);
}

.gallery .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery .gallery-overlay a {
  color: var(--contrast-color);
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.gallery .gallery-wrapper:hover .gallery-overlay {
  opacity: 1;
}


/* Gallery Caption Styling */

.gallery-caption {
  text-align: center;
  /* Center all text */
  padding: 12px 10px 5px;
  /* Comfortable spacing */
  color: #333;
  /* Neutral readable color */
  font-family: "Poppins", sans-serif;
  /* Matches your site's font set */
}

.gallery-caption h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #222;
  line-height: 1.25;
}

.gallery-caption p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.3;
  color: #555;
  /* Softer, secondary text */
}


/* Hide limited items without affecting Isotope layout */

.limited-hidden {
  display: none !important;
}

.error-container {
  padding: 40px 15px;
  text-align: center;
}

.error-actions {
  margin-top: 15px;
  margin-bottom: 15px;
}

.error-actions .btn {
  margin-right: 10px;
}