/* GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  color: #333333;
  background-color: #fdfaf6;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* NAVIGATION */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2c5f8a;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav h1 {
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: #ffffff;
  font-size: 1rem;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease;
  display: inline-block;
}

nav ul li a:hover {
  border-bottom: 2px solid #f0a500;
}

/* HERO SECTION */
#hero {
  background-color: #2c5f8a;
  color: #ffffff;
  text-align: center;
  padding: 100px 40px;
}

#hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #d6eaf8;
}

#hero a {
  background-color: #f0a500;
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#hero a:hover {
  background-color: #c98a00;
}

/* Hero photo — activate once images/hero-bg.jpg is added */
#hero.has-photo {
  background-image: linear-gradient(rgba(44, 95, 138, 0.82), rgba(44, 95, 138, 0.82)),
                    url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

#booking-hero.has-photo {
  background-image: linear-gradient(rgba(44, 95, 138, 0.82), rgba(44, 95, 138, 0.82)),
                    url('images/booking-hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

#faq-hero.has-photo {
  background-image: linear-gradient(rgba(44, 95, 138, 0.82), rgba(44, 95, 138, 0.82)),
                    url('images/faq-hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

/* ABOUT SECTION */
#about {
  background-color: #ffffff;
  padding: 80px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

#about h2 {
  font-size: 2rem;
  color: #2c5f8a;
  margin-bottom: 20px;
}

#about p {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.8;
}

.about-founder {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  background-color: #fdfaf6;
  border-left: 5px solid #c9a84c;
  border-radius: 10px;
  padding: 25px 30px;
  margin: 30px auto;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.about-founder-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  border: 4px solid #c9a84c;
}

.about-founder-info {
  flex: 1;
}

.about-founder h3 {
  font-size: 1.4rem;
  color: #2c5f8a;
  margin: 10px 0 12px 0;
}

@media (max-width: 768px) {
  .about-founder {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.about-team-link {
  display: inline-block;
  background-color: #2c5f8a;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.about-team-link:hover {
  background-color: #c9a84c;
}

/* SERVICES SECTION */
#services {
  background-color: #fdfaf6;
  padding: 80px 40px;
  text-align: center;
}

#services h2 {
  font-size: 2rem;
  color: #2c5f8a;
  margin-bottom: 40px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 1.3rem;
  color: #2c5f8a;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #555555;
}

/* CONTACT SECTION */
#contact {
  background-color: #2c5f8a;
  color: #ffffff;
  padding: 80px 40px;
  text-align: center;
}

#contact h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

#contact p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #d6eaf8;
}

#contact a {
  color: #f0a500;
  font-weight: bold;
  transition: color 0.3s ease;
}

#contact a:hover {
  color: #ffffff;
}

/* FOOTER */
footer {
  background-color: #1a3a52;
  color: #aaaaaa;
  padding: 60px 40px 20px 40px;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px auto;
}

.footer-brand h3,
.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-brand p,
.footer-contact p {
  line-height: 2;
}

.footer-contact a {
  color: #c9a84c;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}

.footer-links ul li a {
  color: #aaaaaa;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #c9a84c;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  color: #aaaaaa;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #c9a84c;
}

.footer-bottom {
  border-top: 1px solid #2c5f8a;
  padding-top: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-bottom a {
  color: #aaaaaa;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #c9a84c;
}

/* FOOTER MOBILE */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    align-items: center;
  }
}

/* SCROLL ANIMATIONS */
section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* HAMBURGER OPEN STATE */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE NAV */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .hamburger {
    display: flex;
  }

  #nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    padding: 15px 0;
  }

  #nav-menu.open {
    display: flex;
  }

  nav ul li a {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
  }

  nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  #hero h2 {
    font-size: 1.8rem;
  }

  .service-card {
    margin: 15px 20px;
  }
}

/* CALLOUT BANNER */
#callout {
  background-color: #c9a84c;
  color: #ffffff;
  text-align: center;
  padding: 25px 40px;
  font-size: 1.1rem;
  line-height: 2;
}

#callout a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}

/* FAQ SECTION */
#faq {
  background-color: #ffffff;
  padding: 80px 40px;
  text-align: center;
}

#faq h2 {
  font-size: 2rem;
  color: #2c5f8a;
  margin-bottom: 40px;
}

.faq-item {
  background-color: #fdfaf6;
  border-left: 5px solid #c9a84c;
  border-radius: 10px;
  padding: 25px 30px;
  margin: 20px auto;
  max-width: 700px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #2c5f8a;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1rem;
  color: #555555;
}

/* TEAM HERO */
#team-hero {
  background-color: #2c5f8a;
  color: #ffffff;
  text-align: center;
  padding: 80px 40px;
}

#team-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

#team-hero p {
  font-size: 1.2rem;
  color: #d6eaf8;
}

/* TEAM SECTION */
#team {
  background-color: #fdfaf6;
  padding: 80px 40px;
}

/* TEAM CARDS */
.team-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  margin: 30px auto;
  max-width: 850px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 30px;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  border: 4px solid #c9a84c;
}

.team-info h3 {
  font-size: 1.5rem;
  color: #2c5f8a;
  margin-bottom: 5px;
}

.team-title {
  display: inline-block;
  background-color: #c9a84c;
  color: #ffffff;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.team-info p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 10px;
}

.team-info ul {
  padding-left: 20px;
  color: #555555;
  line-height: 2;
}

/* TEAM PAGE MOBILE */
@media (max-width: 768px) {
  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-info ul {
    text-align: left;
  }
}

/* SERVICE AREAS */
#service-areas {
  background-color: #ffffff;
  padding: 80px 40px;
  text-align: center;
}

#service-areas h2 {
  font-size: 2rem;
  color: #2c5f8a;
  margin-bottom: 15px;
}

#service-areas p {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 40px;
}

.states-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.states-grid span {
  background-color: #2c5f8a;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.states-grid span:hover {
  background-color: #c9a84c;
  transform: translateY(-3px);
}

/* BOOKING HERO */
#booking-hero {
  background-color: #2c5f8a;
  color: #ffffff;
  text-align: center;
  padding: 80px 40px;
}

#booking-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

#booking-hero p {
  font-size: 1.2rem;
  color: #d6eaf8;
}

/* QUIZ SECTION */
#quiz {
  background-color: #fdfaf6;
  padding: 80px 40px;
  text-align: center;
}

/* QUIZ STEPS */
.quiz-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.quiz-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-step h3 {
  font-size: 1.8rem;
  color: #2c5f8a;
  margin-bottom: 30px;
}

/* QUIZ BUTTONS */
.quiz-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.quiz-buttons button {
  background-color: #ffffff;
  color: #2c5f8a;
  border: 2px solid #2c5f8a;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiz-buttons button:hover {
  background-color: #2c5f8a;
  color: #ffffff;
}

.quiz-buttons button.selected {
  background-color: #2c5f8a;
  color: #ffffff;
}

/* BOOKING CARDS */
.booking-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px 30px;
  margin: 15px auto;
  max-width: 700px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: left;
}

.booking-card:hover {
  transform: translateY(-3px);
}

.booking-card.highlighted {
  border-left: 5px solid #c9a84c;
  background-color: #fffdf5;
}

.booking-card-info h4 {
  font-size: 1.1rem;
  color: #2c5f8a;
  margin-bottom: 5px;
}

.booking-card-info p {
  font-size: 0.95rem;
  color: #555555;
}

.book-btn {
  background-color: #2c5f8a;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: bold;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #c9a84c;
}

/* ALL SERVICES TITLE */
.all-services-title {
  margin-top: 50px;
  margin-bottom: 20px;
  color: #555555;
  font-size: 1.3rem;
}

/* RESTART BUTTON */
.restart-btn {
  margin-top: 40px;
  background-color: transparent;
  color: #2c5f8a;
  border: 2px solid #2c5f8a;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.restart-btn:hover {
  background-color: #2c5f8a;
  color: #ffffff;
}

/* BOOKING MOBILE */
@media (max-width: 768px) {
  .booking-card {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .quiz-buttons button {
    width: 100%;
  }
}

/* SERVICE DESCRIPTION BULLETS */
.service-description {
  margin-top: 10px;
  padding-left: 20px;
  color: #555555;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* SERVICE AREAS PAGE */
#service-areas-hero {
  background-color: #2c5f8a;
  color: #ffffff;
  text-align: center;
  padding: 80px 40px;
}

#service-areas-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

#service-areas-hero p {
  font-size: 1.2rem;
  color: #d6eaf8;
}

#map-section {
  background-color: #fdfaf6;
  padding: 80px 40px;
  text-align: center;
}

#map-section h2 {
  font-size: 2rem;
  color: #2c5f8a;
  margin-bottom: 10px;
}

#map-section p {
  color: #555555;
  margin-bottom: 30px;
}

/* US MAP */
#map-container {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.state {
  fill: #d0d0d0;
  stroke: #ffffff;
  stroke-width: 0.5;
  cursor: pointer;
  transition: fill 0.2s ease;
}

.state.served {
  fill: #2c5f8a;
}

.state.hovered {
  fill: #c9a84c;
}

.state-borders {
  fill: none;
  stroke: #ffffff;
  stroke-width: 0.5;
}

/* STATE INFO BOX */
#state-info {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px 40px;
  max-width: 500px;
  margin: 0 auto 50px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

#state-name {
  font-size: 1.5rem;
  color: #2c5f8a;
  margin-bottom: 10px;
}

#state-status {
  font-size: 1rem;
  margin-bottom: 15px;
}

#state-book-btn {
  background-color: #c9a84c;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#state-book-btn:hover {
  background-color: #2c5f8a;
}

nav ul li a.active-nav {
  color: #c9a84c;
  border-bottom: 2px solid #c9a84c;
}

/* FAQ PAGE */
#faq-hero {
  background-color: #2c5f8a;
  color: #ffffff;
  text-align: center;
  padding: 80px 40px;
}

#faq-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

#faq-hero p {
  font-size: 1.2rem;
  color: #d6eaf8;
}

#faq-page {
  background-color: #fdfaf6;
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 50px;
}

.faq-category h3 {
  font-size: 1.5rem;
  color: #2c5f8a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c9a84c;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f5f0e8;
}

.faq-question span {
  font-size: 1.05rem;
  color: #2c5f8a;
  font-weight: bold;
}

.faq-icon {
  font-size: 1.5rem;
  color: #c9a84c;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 25px;
}

.faq-answer p {
  color: #555555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.faq-answer ul {
  padding-left: 20px;
  color: #555555;
  line-height: 2;
  margin-bottom: 10px;
}

.faq-link {
  display: inline-block;
  background-color: #c9a84c;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
}

.faq-link:hover {
  background-color: #2c5f8a;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 15px 25px 20px 25px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* TRUST SECTION */
#trust {
  background-color: #ffffff;
  padding: 80px 40px;
  text-align: center;
}

#trust h2 {
  font-size: 2rem;
  color: #2c5f8a;
  margin-bottom: 15px;
}

#trust p {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 50px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-card {
  background-color: #fdfaf6;
  border-radius: 15px;
  padding: 35px 25px;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.trust-card h3 {
  font-size: 1.2rem;
  color: #2c5f8a;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 0;
}

/* TRUST MOBILE */
@media (max-width: 768px) {
  .trust-grid {
    flex-direction: column;
    align-items: center;
  }

  .trust-card {
    width: 100%;
    max-width: 400px;
  }
}