:root {

  --primary-color: #8364e2;

  /* Purple Accent used for buttons/accent */

  --secondary-color: #2252aa;

  /* Primary Brand Blue */

  --accent-color: #ffe161;

  /* Yellow/Orange */

  --text-color: #232323;

  --font-family: 'IBM Plex Sans', "Noto Sans TC", sans-serif;

  --bg-color: #ffffff;

  --footer-bg: #2252aa;

  --footer-text: #ffffff;

}

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}

body {

  font-family: var(--font-family);

  color: var(--text-color);

  background-color: var(--bg-color);

  line-height: 1.6;

  padding-top: 76px;

  /* Space for fixed navbar */

}

a {

  text-decoration: none;

  color: var(--primary-color);

  transition: opacity 0.3s ease;

}

a:hover {

  opacity: 0.8;

}

img {

  max-width: 100%;

  height: auto;

  display: block;

}

.container {

  max-width: 1140px;

  margin: 0 auto;

  padding: 0 15px;

}

/* Typography elements */

h2 {

  font-size: 2.5rem;

  font-weight: 700;

  margin-bottom: 0.5rem;

  line-height: 1.3;

}

p {

  font-size: 1.1rem;

  margin-bottom: 1rem;

}

.page-intro {
  max-width: 1000px;
  margin: 15px auto 0;
  text-align: center;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

/* Navbar */

.navbar {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 76px;

  background-color: var(--secondary-color);

  z-index: 1000;

  display: flex;

  align-items: center;

}

.navbar .container {

  display: flex;

  justify-content: space-between;

  align-items: center;

  width: 100%;

}

.navbar-brand a {

  display: flex;

  align-items: center;

  gap: 10px;

  color: #ffffff;

  font-size: 1.5rem;

  font-weight: 600;

  text-decoration: none;

}

.brand-logo {

  height: 40px;

  width: auto;

  display: block;

}

.brand-text {

  font-size: 1.5rem;

  font-weight: 600;

}

.nav-links {

  display: flex;

  list-style: none;

  gap: 20px;

}

.nav-links li {

  position: relative;

}

.nav-links a {

  color: #ffffff;

  font-size: 1rem;

  padding: 10px;

}

.nav-links .dropdown-menu {

  display: none;

  position: absolute;

  top: 100%;

  left: 0;

  background: var(--secondary-color);

  min-width: 200px;

  flex-direction: column;

  padding: 10px 0;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

.nav-links li.dropdown:hover .dropdown-menu {

  display: flex;

}

.dropdown-menu a {

  padding: 10px 20px;

  display: block;

  white-space: nowrap;

}

.dropdown-menu a:hover {

  background: rgba(255, 255, 255, 0.1);

}

.hamburger {

  display: none;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;

}

.hamburger span {

  width: 25px;

  height: 3px;

  background: #fff;

  transition: 0.3s;

}

/* Hero Section */

.hero-section {

  width: 100%;

  height: clamp(220px, 32vw, 460px);

  overflow: hidden;

  background-color: #f7f7f7;

  display: flex;

  align-items: center;

  justify-content: center;

}

.hero-section img {

  width: 100%;

  height: 100%;

  object-fit: contain;

}

/* Info Section */

.info-section {

  padding: 10px 0;

  background-color: #ffffff;

}

/* Optimized Transportation Info Section */

.info-section {

  padding: 10px 0;

  background-color: #fafafa;

}

.transport-gateway {

  display: flex;

  flex-direction: column;

  gap: 30px;

}

.gateway-header {

  flex: 1;

}

.gateway-header h2 {

  font-size: 2.2rem;

  line-height: 1.4;

  color: var(--secondary-color);

  font-weight: 800;

  margin: 0;

}

.gateway-header h2 span {

  color: var(--accent-color);

  display: block;

  font-size: 1.2rem;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 10px;

}

.gateway-body {

  flex: 2;

  display: flex;

  flex-direction: column;

  gap: 16px;

}

.transport-card {

  display: flex;

  align-items: center;

  gap: 15px;

  background: #fff;

  padding: 20px;

  border-radius: 12px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);

  border: 1px solid #eee;

  transition: all 0.3s ease;

  flex: 1;

}

.transport-card:hover {

  transform: translateY(-5px);

  border-color: var(--primary-color);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

}

.card-icon {

  font-size: 2.5rem;

  width: 60px;

  height: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #f8f9fa;

  border-radius: 50%;

  flex-shrink: 0;

}

.card-text h4 {

  font-size: 1.2rem;

  color: var(--primary-color);

  margin-bottom: 5px;

  font-weight: 700;

}

.card-text p {

  font-size: 1.05rem;

  color: #555;

  margin: 0;

  line-height: 1.6;

}

@media (min-width: 992px) {

  .transport-gateway {

    flex-direction: row;

    align-items: center;

  }

  .gateway-header {

    flex: 0 0 30%;

  }

  .gateway-body {

    flex: 0 0 70%;

    flex-direction: row;

  }

}

@media (max-width: 768px) {

  .gateway-header h2 {

    font-size: 1.8rem;

    text-align: center;

  }

  .transport-card {

    padding: 20px;

  }

  .card-icon {

    font-size: 2rem;

    width: 50px;

    height: 50px;

  }

}

/* Carousel Section */

.carousel-section {

  padding: 15px 0;

  background-color: #f4f4f4;

  position: relative;

  overflow: hidden;

}

/* Classroom Introduction Carousel Section */

.carousel-container {

  position: relative;

  /* Removed max-width: 100% to allow .container width (1140px) to take effect */

  margin: 0 auto;

  overflow: visible;

}

.carousel-viewport {

  overflow: hidden;

  border-radius: 4px;

}

.carousel-track {

  display: flex;

  transition: transform 0.5s ease-in-out;

}

.carousel-slide {

  min-width: 100%;

  box-sizing: border-box;

}

.slide-content {

  background: #fff;

  border-radius: 8px;

  overflow: hidden;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

  margin: 0;

  display: flex;

  flex-direction: column;

  width: 100%;

}

.slide-image {

  flex: 1;

  background-color: #f8f9fa;

  display: flex;

  align-items: center;

  justify-content: center;

}

.slide-image img {

  width: 100%;

  height: 180px;

  object-fit: contain;

}

.slide-text {

  padding: 20px;

  text-align: center;

  flex: 1;

  display: flex;

  flex-direction: column;

  justify-content: center;

}

@media (min-width: 992px) {

  .slide-content {

    flex-direction: row;

    height: 380px;

  }

  .slide-image {

    flex: 0 0 55%;

  }

  .slide-image img {

    height: 100%;

  }

  .slide-text {

    flex: 0 0 45%;

    padding: 30px 40px;

    text-align: left;

    align-items: flex-start;

    overflow-y: auto;

  }

}

.slide-text h3 {

  font-size: 1.5rem;

  margin-bottom: 10px;

}

.slide-text .btn {

  display: inline-block;

  margin-top: 20px;

  padding: 10px 20px;

  border: 2px solid var(--primary-color);

  color: var(--primary-color);

  border-radius: 4px;

  font-weight: bold;

}

.slide-text .btn:hover {

  background: var(--primary-color);

  color: #fff;

}

/* Carousel indicators */

.carousel-indicators {

  display: flex;

  justify-content: center;

  gap: 10px;

  margin-top: 20px;

}

.carousel-dot {

  width: 12px;

  height: 12px;

  border-radius: 50%;

  background-color: #ddd;

  border: none;

  cursor: pointer;

  padding: 0;

  transition: all 0.3s ease;

}

.carousel-dot.active {

  background-color: var(--primary-color);

  transform: scale(1.2);

}

/* Carousel controls */

.carousel-prev,

.carousel-next {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  background: #fff;

  border: none;

  width: 50px;

  height: 50px;

  border-radius: 50%;

  cursor: pointer;

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);

  z-index: 10;

  font-size: 1.5rem;

  display: flex;

  align-items: center;

  justify-content: center;

}

.carousel-prev {

  left: 10px;

}

.carousel-next {

  right: 10px;

}

/* Contact & Map Section */

.contact-section {

  position: relative;

  padding: 30px 0;

  background: url('assets/images/background3.jpg') center/cover no-repeat;

  background-attachment: fixed;

}

.contact-overlay {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 50%;

  background: rgba(244, 244, 244, 0.85);

}

.contact-section .container {

  position: relative;

  z-index: 1;

}

.contact-title {

  text-align: center;

  margin-bottom: 50px;

}

.contact-grid {

  display: flex;

  flex-wrap: wrap;

  margin: -15px;

}

.contact-grid>div {

  flex: 1 1 50%;

  padding: 15px;

}

.form-wrapper {

  background: transparent;

}

.form-wrapper h3 {

  font-size: 1.5rem;

  margin-bottom: 1rem;

}

.form-wrapper p {

  margin-bottom: 2rem;

  font-weight: 500;

}

.form-control {

  width: 100%;

  padding: 12px;

  margin-bottom: 15px;

  border: 1px solid #ccc;

  border-radius: 4px;

  background: #fff;

}

textarea.form-control {

  height: 60px;

  resize: vertical;

}

.btn-submit {

  background-color: var(--primary-color);

  color: #fff;

  border: none;

  padding: 15px 30px;

  font-size: 1.2rem;

  border-radius: 4px;

  cursor: pointer;

  width: 100%;

  font-weight: bold;

}

.btn-submit:hover {

  background-color: #6a4ec9;

  /* Darker version for hover */

}

.map-wrapper iframe {

  width: 100%;

  height: 100%;

  min-height: 400px;

  border-radius: 4px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

/* Footer Section - Optimized for Height and Clarity */

footer {

  background-color: var(--footer-bg);

  padding: 40px 0 30px;

  color: var(--footer-text);

  line-height: 1.6;

}

.footer-grid {

  display: grid;

  grid-template-columns: 1.25fr 1.55fr 1.55fr;

  /* Precise proportional split for desktop */

  gap: 30px;

  align-items: start;

}

.footer-grid>section {

  padding: 0 10px;

  min-width: 0;

  /* Critical for grid children containing nowrap text */

}

.footer-brand {

  font-size: 1.6rem;

  font-weight: 800;

  color: #fff;

  margin-bottom: 8px;

  line-height: 1.25;

  word-break: keep-all;

  /* Prevents splitting words like Apply */

}

.footer-subtitle {

  font-size: 1.1rem;

  color: rgba(255, 255, 255, 0.9);

  margin-bottom: 20px;

  font-weight: 600;

}

footer h3 {

  color: #fff;

  font-size: 1.25rem;

  margin-bottom: 20px;

  font-weight: 800;

  border-left: 4px solid var(--accent-color);

  padding-left: 12px;

}

footer p,

footer li,

footer a {

  font-size: 1rem;

  color: rgba(255, 255, 255, 0.85);

  margin-bottom: 8px;

}

/* Force nowrap on Desktop only */

@media (min-width: 992px) {

  .footer-contact-inline,

  .footer-links-inline {

    white-space: nowrap !important;

    display: block;

  }

}

footer ul {

  list-style: none;

  padding: 0;

}

footer a:hover {

  color: #fff;

  opacity: 1;

}

/* Mobile Footer Optimization (@media 768px) */

@media (max-width: 991px) {

  footer {

    padding: 24px 15px;

  }

  .footer-grid {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 14px;

  }

  .footer-grid>section {

    padding: 0;

    width: 100%;

  }

  .footer-brand {

    font-size: 18px;

  }

  .footer-subtitle {

    font-size: 14px;

    margin-bottom: 4px;

  }

  footer h3 {

    display: none;

    /* Hide headings on mobile to save space */

  }

  footer p,

  footer li,

  footer a,

  .footer-links-inline {

    font-size: 13px;

    margin: 2px 0;

  }

  .footer-contact-inline,

  .footer-links-inline {

    display: block;

    line-height: 1.5;

  }

}

/* Floating Action Buttons */

.floating-actions {

  position: fixed;

  bottom: 25px;

  right: 25px;

  display: flex;

  flex-direction: column;

  gap: 12px;

  z-index: 1000;

}

.sticky-btn {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  border: none;

  background-color: var(--primary-color);

  color: #fff !important;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

  cursor: pointer;

  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  text-decoration: none;

}

.sticky-btn:hover {

  transform: translateY(-5px);

  background-color: var(--secondary-color);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);

}

.sticky-btn i,

.sticky-btn span {

  font-size: 1.4rem;

  font-style: normal;

  display: flex;

}

#back-to-top {

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  background-color: var(--secondary-color);

}

#back-to-top.visible {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;

}

.contact-fab {

  background-color: var(--primary-color);

}

/* Price Section Styles */

.price-section {

  padding: 28px 0;

  background: #fff;

}

.price-section h3 {

  font-size: 2rem;

  font-weight: 300;

  text-align: center;

  margin-bottom: 20px;

  line-height: 1.4;

  color: var(--secondary-color);

}

.table-wrapper {

  max-width: 900px;

  margin: 0 auto 40px;

  overflow-x: auto;

}

.price-table {

  width: 100%;

  border-collapse: collapse;

  min-width: 600px;

}

.price-table th,

.price-table td {

  padding: 15px 10px;

  border-bottom: 1px solid #ddd;

  text-align: center;

}

.price-table th {

  background: #f8f9fa;

  font-weight: bold;

  color: var(--secondary-color);

}

.price-table tr:nth-child(even) {

  background-color: #fafafa;

}

.price-notes {

  max-width: 900px;

  margin: 0 auto;

  background: #fdfdfd;

  padding: 20px;

  border-left: 4px solid var(--accent-color);

}

.price-notes p,

.price-notes blockquote p {

  font-size: 1rem;

  margin-bottom: 10px;

  line-height: 1.6;

}

.price-notes blockquote {

  margin: 0;

  padding-left: 15px;

  border-left: 3px solid #ccc;

}



.price-table th,

.price-table td {

  padding: 10px 5px;

}



/* FAQ Accordion Styles */

.faq-list {

  max-width: 900px;

  margin: 0 auto;

}

.faq-item {

  background: #fff;

  border: 1px solid #eaeaea;

  border-radius: 8px;

  margin-bottom: 20px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);

  overflow: hidden;

  transition: all 0.3s ease;

}

.faq-item:hover {

  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);

}

.faq-item.active {

  border-color: var(--primary-color);

  box-shadow: 0 6px 15px rgba(131, 100, 226, 0.1);

}

.faq-summary {

  width: 100%;

  text-align: left;

  background: none;

  border: none;

  padding: 20px 25px;

  font-size: 1.15rem;

  font-weight: 600;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: space-between;

  color: #333;

  transition: color 0.3s ease, background-color 0.3s ease;

  font-family: inherit;

}

.faq-summary:hover {

  color: var(--primary-color);

  background-color: #fafafa;

}

.faq-item.active .faq-summary {

  color: var(--primary-color);

}

.faq-icon {

  position: relative;

  width: 24px;

  height: 24px;

  flex-shrink: 0;

}

.faq-icon::before,

.faq-icon::after {

  content: '';

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  background-color: #999;

  transition: transform 0.4s ease, background-color 0.3s ease;

}

.faq-icon::before {

  width: 16px;

  height: 2px;

}

.faq-icon::after {

  width: 2px;

  height: 16px;

}

.faq-summary:hover .faq-icon::before,

.faq-summary:hover .faq-icon::after {

  background-color: var(--primary-color);

}

.faq-item.active .faq-icon::before,

.faq-item.active .faq-icon::after {

  background-color: var(--primary-color);

}

.faq-item.active .faq-icon::after {

  transform: translate(-50%, -50%) rotate(90deg);

}

.faq-content-wrapper {

  display: grid;

  grid-template-rows: 0fr;

  transition: grid-template-rows 0.4s ease;

}

.faq-item.active .faq-content-wrapper {

  grid-template-rows: 1fr;

}

.faq-inner {

  overflow: hidden;

}

.faq-inner>p {

  padding: 0 25px 25px 25px;

  line-height: 1.8;

  color: #555;

  font-size: 1.05rem;

  margin: 0;

}

@media (max-width: 768px) {

  .faq-summary {

    padding: 15px 20px;

    font-size: 1.05rem;

  }

  .faq-inner>p {

    padding: 0 20px 20px 20px;

    font-size: 1rem;

  }

}

/* CTA (Call To Action) Section for Home */

.cta-section {

  position: relative;

  padding: 50px 0;

  background: url('assets/images/background3.jpg') center/cover no-repeat;

  background-attachment: fixed;

  text-align: center;

  color: var(--text-color);

}

.cta-section .contact-overlay {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(244, 244, 244, 0.85);

  z-index: 1;

}

.cta-content {

  position: relative;

  z-index: 2;

  max-width: 800px;

  margin: 0 auto;

}

.cta-content h2 {

  font-size: 2.8rem;

  margin-bottom: 12px;

  color: var(--secondary-color);

  font-weight: 800;

}

.cta-content p {

  font-size: 1.2rem;

  margin-bottom: 20px;

  color: #444;

  font-weight: 500;

}

.cta-btn {

  display: inline-block;

  background-color: var(--primary-color);

  color: #fff !important;

  padding: 18px 45px;

  font-size: 1.3rem;

  font-weight: bold;

  border-radius: 50px;

  box-shadow: 0 10px 20px rgba(133, 101, 226, 0.3);

  transition: all 0.3s ease;

}

.cta-btn:hover {

  transform: translateY(-5px);

  box-shadow: 0 15px 30px rgba(133, 101, 226, 0.4);

  background-color: #6a4ec9;

  opacity: 1;

}

/* Standalone Contact Page Specifics */

.contact-header-section {

  padding: 20px 0;

  text-align: center;

  background: #fff;

}

.contact-header-section h1 {

  font-size: 3rem;

  color: var(--primary-color);

  margin-bottom: 15px;

}

.contact-info-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 40px;

  margin-bottom: 60px;

}

.contact-details-card {

  padding: 40px;

  background: #f8f9fa;

  border-radius: 12px;

  border-left: 5px solid var(--primary-color);

}

.contact-details-card h3 {

  font-size: 1.5rem;

  margin-bottom: 25px;

  color: var(--secondary-color);

}

/* .contact-details-card p removed for .info-row */
.old-p-removed {

  margin-bottom: 15px;

  font-size: 1.1rem;

  display: flex;

  align-items: center;

  gap: 10px;

}

@media (max-width: 991px) {

  .contact-info-grid {

    grid-template-columns: 1fr;

  }

  .cta-content h2 {

    font-size: 2.2rem;

  }

}

@media (max-width: 768px) {

  .brand-text {

    font-size: 1.25rem;

  }

  .brand-logo {

    height: 36px;

  }

}

/* Utility & Layout Classes for Unification */
.section-title {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.divider {
  max-width: 900px;
  margin: 0 auto;
  border: 0;
  height: 1px;
  background: #ddd;
}

.bg-light-gray {
  background: #fafafa;
}

/* Contact & Forms General Classes */
.form-inline-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-inline-group>div {
  flex: 1;
}

.form-control-wrapper {
  margin-bottom: 20px;
}

.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.captcha-input {
  margin-bottom: 0 !important;
}

.captcha-display {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Contact Form Specifics for stand-alone layout */
.standalone-contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.standalone-contact-form .btn-submit {
  width: 100%;
  padding: 5px;
  border-radius: 6px;
  font-size: 1.1rem;
}

/* Layout alignment */
.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.pt-40 {
  padding-top: 28px;
}

.py-40 {
  padding: 28px 0;
}

.py-60 {
  padding: 42px 0;
}

.pb-60 {
  padding-bottom: 36px;
}

/* Mobile: even tighter spacing */
@media (max-width: 768px) {
  .py-60 {
    padding: 30px 0;
  }

  .py-40 {
    padding: 20px 0;
  }

  .pt-40 {
    padding-top: 20px;
  }

  .pb-60 {
    padding-bottom: 24px;
  }
}

.bg-white {
  background: #fff;
}

.shadow-card {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Extra utilities */
.mt-30 {
  margin-top: 30px;
}

.mb-0 {
  margin-bottom: 0px !important;
}

/* Contact Info Layout Unification */
.info-row {
  display: flex;
  margin-bottom: 18px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.info-label {
  font-weight: 700;
  color: var(--secondary-color);
  min-width: 110px;
  white-space: nowrap;
  flex-shrink: 0;
}

.info-value {
  color: var(--text-color);
  flex: 1;
}

@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 22px;
  }

  .info-label {
    min-width: auto;
    font-size: 1.15rem;
    color: var(--primary-color);
  }
}

/* ============================
   Mobile Responsive Navigation
   ============================ */
@media (max-width: 991px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--secondary-color);
    flex-direction: column;
    padding: 90px 30px 40px;
    gap: 0;
    z-index: 998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    display: flex;
    animation: menuSlideDown 0.3s ease-out;
  }

  @keyframes menuSlideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

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

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li a {
    display: block;
    padding: 16px 10px;
    font-size: 1.15rem;
    font-weight: 500;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 18px;
  }

  /* Dropdown sub-menu on mobile */
  .nav-links .dropdown-menu {
    position: static;
    background: rgba(0, 0, 0, 0.15);
    box-shadow: none;
    display: none;
    flex-direction: column;
    border-radius: 0;
    padding: 0;
  }

  .nav-links .dropdown-menu a {
    padding: 14px 10px 14px 30px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links li.dropdown.active .dropdown-menu {
    display: flex;
  }

  /* Dropdown toggle arrow indicator */
  .dropdown-toggle::after {
    content: '▾';
    margin-left: 8px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
    display: inline-block;
  }

  .dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* Hamburger button */
  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
    padding: 6px;
  }

  .hamburger span {
    transition: all 0.3s ease;
  }

  /* Hamburger X animation */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Footer & other mobile adjustments */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-grid>div,
  .contact-grid>div {
    flex: 1 1 100%;
  }
}

/* ============================
   Floating Action Buttons (FAB)
   ============================ */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 1000;
}

/* Shared button base */
.fab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-family);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.fab-btn:hover {
  transform: translateY(-2px);
}

/* Back-to-top: square icon button */
.fab-top {
  width: 48px;
  height: 48px;
  background-color: var(--secondary-color);
  box-shadow: 0 3px 12px rgba(34, 82, 170, 0.30);
  font-size: 1.3rem;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fab-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fab-top:hover {
  background-color: #1b4491;
  box-shadow: 0 5px 16px rgba(34, 82, 170, 0.40);
}

/* CTA: wider pill-like button */
.fab-cta {
  height: 48px;
  padding: 0 22px;
  gap: 8px;
  background-color: var(--primary-color);
  box-shadow: 0 3px 12px rgba(131, 100, 226, 0.30);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.fab-cta:hover {
  background-color: #7253cf;
  box-shadow: 0 5px 16px rgba(131, 100, 226, 0.40);
}

.fab-cta .fab-icon {
  font-size: 1.15rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

.fab-cta .fab-label {
  line-height: 1;
}

/* ── Mobile adjustments ── */
@media (max-width: 768px) {
  .floating-actions {
    bottom: 20px;
    right: 16px;
    gap: 8px;
  }

  .fab-top {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
    border-radius: 10px;
  }

  .fab-cta {
    height: 42px;
    padding: 0 16px;
    gap: 6px;
    font-size: 0.9rem;
    border-radius: 10px;
  }
}

/* --- Added for Contact Map & Gallery --- */
.map-gallery-wrapper {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.map-container {
  flex: 1;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.contact-gallery-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-gallery {
  width: 100%;
  height: 100%;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: #f5f5f5;
}

.gallery-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: #333;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  z-index: 5;
  transition: all 0.25s ease;
}

.gallery-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.gallery-arrow.prev {
  left: 14px;
}

.gallery-arrow.next {
  right: 14px;
}

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}

.gallery-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-dots .dot.active {
  background: #fff;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .map-gallery-wrapper {
    flex-direction: column;
  }

  .map-container {
    min-height: 300px;
  }

  .contact-gallery {
    min-height: 240px;
  }

  .gallery-caption {
    left: 12px;
    bottom: 12px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  /* --- Added for Venue Category List --- */
  .venue-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px 0;
  }

  .venue-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .venue-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }

  .venue-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
  }

  .venue-card-content {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .venue-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--secondary-color);
  }

  .venue-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .venue-card-btn {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .venue-card-btn:hover {
    opacity: 0.8;
  }

  /* Mobile responsive for venue-list */
  @media (max-width: 991px) {
    .venue-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }

  /* ============================
   Location Showcase Section
   ============================ */
  .location-showcase {
    overflow: hidden;
  }

  .location-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .location-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .location-header {
    margin-bottom: 35px;
  }

  .location-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
  }

  .location-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
  }

  .location-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .location-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
  }

  .location-details {
    margin-bottom: 35px;
  }

  .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  .detail-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: #f8f9ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .detail-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
  }

  .detail-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
  }

  .location-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: fit-content;
  }

  .location-cta:hover {
    gap: 15px;
    opacity: 0.8;
  }

  .cta-arrow {
    transition: transform 0.3s ease;
  }

  .location-map {
    flex: 1.2;
    min-height: 500px;
    position: relative;
  }

  .location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* Responsive adjustment for Location Card */
  @media (max-width: 991px) {
    .location-card {
      flex-direction: column;
    }

    .location-content {
      padding: 40px;
    }

    .location-map {
      min-height: 400px;
    }

    .location-title {
      font-size: 2rem;
    }
  }

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

    .location-title {
      font-size: 1.8rem;
    }

    .detail-item {
      gap: 12px;
    }
  }

  /* ============================
   Map Frame (Refined Styling)
   ============================ */
  .map-frame {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.03), 0 2px 10px rgba(0, 0, 0, 0.015);
    box-sizing: border-box;
  }

  .map-frame iframe {
    border-radius: 12px;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
  }
}


/* ============================
   FAQ Section
   ============================ */
.faq-section {
  padding: 60px 0;
  background-color: #fcfcfc;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin: 0;
  font-weight: 700;
}

.faq-header h2 span {
  display: block;
  font-size: 0.9rem;
  color: #d4a373;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.faq-item h4 {
  font-size: 1.15rem;
  color: #2c3e50;
  margin: 0 0 12px 0;
  font-weight: 600;
  line-height: 1.4;
}

.faq-item p {
  color: #5c6b7a;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-item {
    padding: 20px;
  }
}