/* =============================================
   THE ALBANY SHOPPING CENTRE — BRAND CSS
   Crows Nest, NSW
   ============================================= */

:root {
  --al-navy:        #354552;
  --al-navy-light:  #4a6073;
  --al-gold:        #C4A35A;
  --al-gold-light:  #d4ba7a;
  --al-gold-dark:   #a8893e;
  --al-sage:        #7a9e8e;
  --al-dark:        #1a2530;
  --al-black:       #111517;
  --al-white:       #ffffff;
  --al-light-bg:    #f7f6f4;
  --al-warm-bg:     #f0ede8;
  --al-border:      #e0ddd8;
  --al-text:        #3a3a3a;
  --al-text-light:  #6b6b6b;
}

/* ---- Fonts ---- */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--al-text);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6,
.font-heading,
.navbar-brand,
.graybanner-header-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Global link hover ---- */
a { color: inherit; transition: color 0.2s; }
a:hover { color: var(--al-gold); text-decoration: none; }

/* =============================================
   HEADER + NAVBAR
   ============================================= */

/* Top navigation bar — brand style */
.top-nav-bar {
  background: var(--al-navy);
  padding: 0;
}
.top-nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-nav-bar .navbar-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.top-nav-bar .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.25rem !important;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  display: block;
}
.top-nav-bar .nav-link:hover,
.top-nav-bar .nav-item.active .nav-link {
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}

.simple-header {
  position: relative;
  z-index: 1000;
}

.homepageheader-navbar-wrapper {
  background: #fff;
  border-bottom: 1px solid var(--al-border);
}

.js-header-container {
  max-width: 1200px;
}

.navbar {
  padding: 0.75rem 0;
}

.navbar-brand img {
  height: 32px;
  width: auto;
}

/* Mobile nav — only shown on mobile */
.navbar-nav-mobile .nav-link {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--al-black) !important;
  padding: 0.7rem 1rem !important;
  transition: color 0.2s;
  font-weight: 400;
}
.navbar-nav-mobile .nav-link:hover,
.navbar-nav-mobile .nav-item.active .nav-link {
  color: var(--al-gold) !important;
}

/* Desktop large header area */
.home-content-wrapper {
  border-top: 1px solid var(--al-border);
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}
.home-content-wrapper.is-shrink {
  background: #fff;
}

.home-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.home-brand img {
  height: 40px;
  width: auto;
}
.home-details {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--al-navy);
}
.home-details i { color: var(--al-gold); margin-right: 0.3rem; }
.details-time { font-weight: 500; }

/* ---- Sticky navbar ---- */
.sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.sticky-navbar.is-visible {
  transform: translateY(0);
}
.sticky-navbar .navbar-brand img {
  height: 28px;
}

/* ---- Quick links bar ---- */
.homequicklinks-container {
  background: var(--al-light-bg);
  border-top: 1px solid var(--al-border);
}
.homequicklinks-container-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.homequicklinks-container-navigation .item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--al-navy);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.homequicklinks-container-navigation .item a:hover {
  color: var(--al-gold);
  background: rgba(196, 163, 90, 0.06);
}
.homequicklinks-container-navigation .item i {
  font-size: 1rem;
  color: var(--al-gold);
}

/* Mobile hamburger */
.navbar-toggler {
  border: none;
  padding: 0.4rem;
  background: none;
}
.navbar-toggler:focus { outline: none; }
.navbar-toggler i { font-size: 1.4rem; color: var(--al-black); }

/* =============================================
   HERO CAROUSEL
   ============================================= */
.generic-homepagehero {
  position: relative;
  overflow: hidden;
}
.generic-homepagehero .carousel {
  width: 100%;
}

.carousel-cell-hero {
  width: 100%;
  min-height: 420px;
  position: relative;
  display: flex;
  background: var(--al-navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,37,48,0.7) 0%, rgba(26,37,48,0.25) 60%, transparent 100%);
}

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

.hero-tag {
  display: inline-block;
  background: var(--al-gold);
  color: var(--al-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  margin-bottom: 1rem;
}

.hero-title {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hero-description {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.btn.hero-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.75rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn.hero-btn:hover {
  background: var(--al-gold);
  border-color: var(--al-gold);
  color: var(--al-dark);
}

/* Flickity dots */
.flickity-page-dots .dot {
  background: rgba(255,255,255,0.5);
}
.flickity-page-dots .dot.is-selected {
  background: var(--al-gold);
}

@media (max-width: 767px) {
  .carousel-cell-hero { min-height: 320px; }
  .hero-title { font-size: 1.8rem; }
}

/* =============================================
   ABOUT / INTRO SECTION
   ============================================= */
.mm-about-section {
  background: var(--al-light-bg);
  padding: 4rem 0;
}
.mm-about-section h2 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--al-navy);
}
.mm-about-section p {
  font-size: 1rem;
  color: var(--al-text-light);
  line-height: 1.8;
  max-width: 680px;
}
.mm-about-section .btn.primary-btn {
  margin-top: 1.5rem;
}

/* =============================================
   STORE DIRECTORY SECTION (homepage tiles)
   ============================================= */
.categorydiscover-wrapper {
  padding-bottom: 3rem;
  background: #fff;
}

.graybanner-wrapper {
  background: var(--al-light-bg);
  padding: 2rem 0 1rem;
  margin-bottom: 2rem;
}
.graybanner-header-title {
  font-size: 1.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.graybanner-header-title a {
  color: var(--al-navy);
  text-decoration: none;
}
.graybanner-header-title a:hover { color: var(--al-gold); }
.graybanner-header-title i { color: var(--al-gold); font-size: 0.9rem; }

.graybanner-header-description {
  font-size: 0.88rem;
  color: var(--al-text-light);
  margin-top: 0.2rem;
}

.categorydiscover-tile {
  display: block;
  border: 1px solid var(--al-border);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: inherit;
}
.categorydiscover-tile:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.categorydiscover-image {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--al-light-bg);
  padding: 1rem;
}
.categorydiscover-image img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.categorydiscover-tile-title {
  padding: 0.5rem 0.75rem;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--al-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =============================================
   BUTTONS (global)
   ============================================= */
.btn.primary-btn {
  background: var(--al-gold);
  border: 1.5px solid var(--al-gold);
  color: var(--al-dark);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.65rem 1.75rem;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn.primary-btn:hover {
  background: var(--al-gold-dark);
  border-color: var(--al-gold-dark);
  color: #fff;
}

.btn.secondary-btn {
  background: transparent;
  border: 1.5px solid var(--al-navy);
  color: var(--al-navy);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.65rem 1.75rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn.secondary-btn:hover {
  background: var(--al-navy);
  color: #fff;
}

/* =============================================
   SUBSCRIBE / CTA SECTION
   ============================================= */
.subscribe-wrapper {
  background: var(--al-navy);
  padding: 4rem 0;
  color: #fff;
}
.subscribe-header-wrapper {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.subscribe-description-wrapper {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  max-width: 520px;
  line-height: 1.7;
}
.subscribe-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.subscribe-cta-buttons .btn.primary-btn {
  background: var(--al-gold);
  border-color: var(--al-gold);
  color: var(--al-dark);
}
.subscribe-cta-buttons .btn.primary-btn:hover {
  background: var(--al-gold-dark);
  border-color: var(--al-gold-dark);
}
.subscribe-cta-buttons .btn.secondary-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
}
.subscribe-cta-buttons .btn.secondary-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* =============================================
   FOOTER — Brand style (Bathurst layout)
   ============================================= */
.globalfooter-wrapper {
  background: var(--al-warm-bg);
  color: var(--al-text);
  padding: 3.5rem 0 0;
}

.globalfooter-wrapper h5 {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--al-black);
  margin-bottom: 1.25rem;
}

.globalfooter-wrapper h6 {
  color: var(--al-text-light);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.globalfooter-wrapper .item a,
.globalfooter-wrapper .centre-pages .item a {
  display: block;
  color: var(--al-black);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.25rem 0;
  text-decoration: none;
  transition: color 0.2s;
}
.globalfooter-wrapper .item a:hover,
.globalfooter-wrapper .centre-pages .item a:hover {
  color: var(--al-gold-dark);
}

.centre-address {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--al-text);
}
.centre-address a {
  color: var(--al-text);
  text-decoration: none;
}
.centre-address a:hover { color: var(--al-gold-dark); }

.footer-map-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer-map-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--al-navy);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
}
.footer-map-links a:hover { color: var(--al-gold-dark); }

.hours-table td {
  padding: 0.15rem 0;
  font-size: 0.88rem;
  color: var(--al-text);
}
.hours-table td:first-child {
  padding-right: 1rem;
  font-weight: 600;
  color: var(--al-text-light);
  white-space: nowrap;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--al-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-phone i { color: var(--al-gold); font-size: 1rem; }
.footer-phone:hover { color: var(--al-gold-dark); text-decoration: none; }

/* Footer newsletter signup */
.footer-newsletter {
  margin-bottom: 1.5rem;
}
.footer-newsletter h5 {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--al-black);
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
}
.footer-newsletter-form input[type="email"] {
  flex: 1;
  border: 1px solid var(--al-border);
  border-right: none;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  background: #fff;
  color: var(--al-text);
  outline: none;
}
.footer-newsletter-form input[type="email"]::placeholder {
  color: #aaa;
}
.footer-newsletter-form button {
  background: var(--al-navy);
  color: #fff;
  border: 1px solid var(--al-navy);
  padding: 0.65rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.footer-newsletter-form button:hover {
  background: var(--al-navy-light);
}

.centresocial {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}
.centresocial a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--al-navy);
  color: #fff;
  font-size: 1rem;
  transition: background 0.2s;
  text-decoration: none;
}
.centresocial a:hover {
  background: var(--al-gold-dark);
  color: #fff;
}

/* Footer acknowledgement */
.footer-acknowledgement {
  font-size: 0.82rem;
  color: var(--al-text-light);
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* Footer bottom bar */
.centrelink {
  border-top: 1px solid var(--al-border);
  margin-top: 2.5rem;
  padding: 1rem 0;
  font-size: 0.78rem;
  color: var(--al-text-light);
  text-align: center;
}
.centrelink a {
  color: var(--al-text-light);
  text-decoration: none;
  margin: 0 0.5rem;
}
.centrelink a:hover { color: var(--al-gold-dark); }
.centrelink .separator {
  color: var(--al-border);
  margin: 0 0.25rem;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top__wrapper {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.back-to-top__wrapper.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--al-navy);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.back-to-top__button:hover {
  background: var(--al-gold-dark);
}

/* =============================================
   ANIMATION HELPERS
   ============================================= */
.animation-rise-and-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animation-rise-and-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   PAGE BANNERS
   ============================================= */
.page-banner {
  background: var(--al-navy);
  color: #fff;
  padding: 2.5rem 0 2rem;
}
.page-banner .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0.75rem;
}
.page-banner .breadcrumb-item a,
.page-banner .breadcrumb-item.active {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }
.page-banner h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.page-banner-sub { color: rgba(255,255,255,0.7); margin: 0; font-weight: 300; }
.page-banner a { color: rgba(255,255,255,0.75); }

/* =============================================
   STORE CARDS (store directory grid)
   ============================================= */
.store-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--al-border);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}
.store-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.store-card-logo {
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  border-bottom: 1px solid var(--al-border);
  overflow: hidden;
}
.store-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
}
.store-logo-placeholder {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--al-navy);
  padding: 1rem;
  text-align: center;
}
.store-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.store-card-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--al-gold-dark);
  margin-bottom: 4px;
}
.store-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: var(--al-navy);
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0.01em;
}
.store-card-location {
  font-size: 0.78rem;
  color: var(--al-text-light);
}
.store-card-phone {
  font-size: 0.82rem;
  color: var(--al-text-light);
}
.store-card-phone i {
  color: var(--al-gold);
  margin-right: 0.3rem;
}

/* =============================================
   STORE DETAIL PAGES
   ============================================= */
.store-banner {
  background: var(--al-navy);
  color: #fff;
  padding: 2.25rem 0 1.75rem;
}
.store-banner .breadcrumb { background: transparent; padding: 0; margin-bottom: 0.5rem; }
.store-banner .breadcrumb-item a,
.store-banner .breadcrumb-item.active { color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.store-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }
.store-banner-title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.25rem 0 0.25rem;
}
.store-banner-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin: 0;
  font-weight: 300;
}

.store-detail-logo-wrap {
  background: #fafafa;
  border: 1px solid var(--al-border);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.store-detail-logo-wrap .store-detail-logo {
  max-width: 100%;
  max-height: 160px;
  width: auto;
  height: auto;
}

.store-detail-location {
  color: var(--al-text-light);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}
.store-detail-location i { color: var(--al-gold); margin-right: 0.35rem; }

.store-detail-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 1rem;
  background: #fafafa;
  border: 1px solid var(--al-border);
  border-radius: 4px;
}
.store-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--al-navy);
  font-size: 0.95rem;
  text-decoration: none;
}
.store-contact-link i { color: var(--al-gold); width: 1.1rem; text-align: center; }
.store-contact-link:hover { color: var(--al-gold-dark); text-decoration: none; }

.store-detail-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--al-text);
  margin-bottom: 1rem;
}

/* Section heading */
.section-heading {
  color: var(--al-navy);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* =============================================
   GETTING HERE
   ============================================= */
.hours-table-large { width: 100%; border-collapse: collapse; }
.hours-table-large td {
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--al-border);
  font-size: 0.95rem;
  color: var(--al-text);
}
.hours-table-large td:first-child {
  font-weight: 600;
  color: var(--al-navy);
  width: 130px;
  background: #fafafa;
}
.hours-table-large {
  background: #fff;
  border: 1px solid var(--al-border);
  border-radius: 4px;
  overflow: hidden;
}

.getting-here-address { font-size: 1rem; line-height: 1.8; color: var(--al-text); }
.getting-here-address i { color: var(--al-gold); margin-right: 0.5rem; }
.getting-here-address a { color: var(--al-text); text-decoration: underline; }

/* FAQ accordion */
.faq-accordion { margin-top: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--al-border); }
.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--al-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}
.faq-toggle i { color: var(--al-gold); transition: transform 0.2s; }
.faq-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-body { padding: 0 0 1.1rem; color: var(--al-text); line-height: 1.7; font-size: 0.95rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.contact-detail > i {
  color: var(--al-gold);
  font-size: 1.1rem;
  width: 1.25rem;
  text-align: center;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--al-text-light);
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.contact-detail a { color: var(--al-navy); }
.contact-detail a:hover { color: var(--al-gold-dark); text-decoration: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .home-content-wrapper.is-shrink {
    display: none;
  }
  .homequicklinks-container-navigation .item a {
    padding: 0.6rem 0.75rem;
    font-size: 0.75rem;
  }
  .top-nav-bar { display: none; }
}

@media (max-width: 575px) {
  .homequicklinks-container-navigation {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .homequicklinks-container-navigation .item a {
    white-space: nowrap;
  }
  .subscribe-wrapper { padding: 2.5rem 0; }
  .subscribe-header-wrapper { font-size: 1.2rem; }
}

/* Non-footer phone links on light backgrounds */
main .footer-phone {
  color: var(--al-navy);
}
main .footer-phone:hover { color: var(--al-gold-dark); }
