/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
/* ================================
   FAQ PAGE - CURLY TAIL SCREEN & WINDOW
   Accordion-style FAQ with blue theme
   ================================ */

/* ================================
   INTERIOR PAGE - CORNER LOGO & NAV
   Same as services/contact page
   ================================ */
.corner-logo {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1001;
  display: block;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.corner-logo img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: transform var(--transition-base), width var(--transition-base);
}

.corner-logo:hover img {
  transform: scale(1.05);
}

.corner-logo.scrolled img {
  width: 96px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* Interior Nav - Starts with white background */
.page-interior .nav-interior {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.page-interior .nav-no-logo .nav-content {
  justify-content: flex-end;
  padding-left: 140px;
}

.page-interior .nav-links {
  margin-right: 40px;
}

/* Desktop: show first Christmas Light Show link, hide mobile one */
.nav-link-mobile-last {
  display: none;
}

.page-interior .nav-interior .nav-link,
.page-interior .nav-interior .nav-phone {
  color: var(--color-text);
}

.page-interior .nav-interior .nav-link:hover {
  color: var(--color-orange);
}

.page-interior .nav-interior .nav-phone-icon {
  color: var(--color-orange);
}

.page-interior .nav-interior .hamburger span {
  background-color: var(--color-text);
}

/* Scrolled state */
.page-interior .nav.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

/* ================================
   PAGE HEADER
   ================================ */
.page-header {
  padding-top: 140px;
  padding-bottom: 60px;
}

.page-header-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  margin-bottom: 0;
}

/* ================================
   FAQ SECTIONS
   ================================ */
.faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq-section .section-header {
  margin-bottom: 32px;
}

.faq-section .section-header h2 {
  font-size: var(--text-2xl);
  margin-bottom: 0;
}

/* ================================
   FAQ LIST & ACCORDION
   ================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
}

/* Question (Summary) */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  list-style: none;
  transition: background-color var(--transition-fast);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-question:hover {
  background-color: var(--bg-section-alt);
}

.faq-question span {
  flex: 1;
  padding-right: 16px;
  font-size: var(--text-base);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

/* Answer */
.faq-answer {
  padding: 0 24px 20px 24px;
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

/* Grey section adjustment */
.section-grey .faq-item {
  background-color: var(--color-white);
}

/* ================================
   CTA SECTION (Blue)
   ================================ */
.cta-section.section-blue {
  background-color: var(--color-blue);
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-blue);
  padding: 14px 28px;
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.btn-white:hover {
  background-color: var(--color-gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  padding: 14px 28px;
  font-weight: var(--weight-semibold);
  border: 2px solid var(--color-white);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}

/* ================================
   FOOTER STYLES
   Same as other interior pages
   ================================ */
.footer.section-dark {
  background-color: var(--footer-bg);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-grid {
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--footer-text);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.footer h3 {
  color: var(--footer-heading);
  font-size: var(--text-base);
  margin-bottom: 20px;
}

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

.footer ul li {
  margin-bottom: 12px;
}

.footer ul a {
  color: var(--footer-link);
  font-size: var(--text-sm);
}

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

.footer-contact p,
.footer-contact a {
  color: var(--footer-text);
  font-size: var(--text-sm);
  margin-bottom: 8px;
  display: block;
}

.footer-contact a:hover {
  color: var(--footer-link-hover);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin: 0;
}

.footer-bottom a {
  color: var(--color-orange);
}

/* ================================
   RESPONSIVE STYLES
   ================================ */
@media (max-width: 768px) {
  /* Corner Logo Mobile */
  .corner-logo {
    top: 8px;
    left: 8px;
  }

  .corner-logo img {
    width: 84px;
  }

  .corner-logo.scrolled img {
    width: 72px;
  }

  .page-interior .nav-no-logo .nav-content {
    padding-left: 90px;
  }

  /* Mobile Nav Fixes */
  .page-interior .nav-links {
    margin-right: 0;
    width: 240px;
  }

  .page-interior .hamburger {
    margin-left: 8px;
  }

  /* Mobile: hide desktop-first Light Show, show mobile-last one */
  .nav-link-desktop-first {
    display: none;
  }

  .nav-link-mobile-last {
    display: block;
  }

  /* Page Header Mobile */
  .page-header {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .page-header-content {
    max-width: none;
  }

  /* FAQ Section Mobile */
  .faq-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .faq-question span {
    font-size: var(--text-sm);
  }

  .faq-answer {
    padding: 0 20px 16px 20px;
    font-size: var(--text-sm);
  }

  /* CTA Section Mobile */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Footer Mobile */
  .footer-grid {
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
