/* ===== Google Fonts imported in HTML ===== */

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background-color: #fefcfb;
  color: #4a4a5a;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  color: #5c5470;
  line-height: 1.3;
}

:root {
  --text-light: #7a7a8a;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Header & Navigation ===== */
header {
  background: linear-gradient(135deg, #e1bee7 0%, #d1c4e9 50%, #c5cae9 100%);
  padding: 20px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

header h1 {
  font-size: 1.7rem;
  color: #5c5470;
  white-space: nowrap;
  min-width: 0;
}

header h1 a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

header h1 .logo-img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.footer-brand .logo-img {
  height: 30px;
  width: auto;
  vertical-align: middle;
  border-radius: 6px;
  margin-right: 6px;
}

header h1 .logo-icon {
  font-size: 1.8rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

nav a {
  padding: 8px 14px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #5c5470;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  background: rgba(92, 84, 112, 0.1);
  color: #3d3555;
}

nav a.active {
  background: #5c5470;
  color: #fff;
}

/* Nav Dropdown (More menu) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .dropdown-toggle {
  padding: 8px 14px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #5c5470;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > .dropdown-toggle:hover {
  background: rgba(92, 84, 112, 0.1);
  color: #3d3555;
}

.nav-dropdown > .dropdown-toggle.has-active {
  background: #5c5470;
  color: #fff;
}

.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 6px;
  background: transparent;
  min-width: 170px;
  z-index: 1002;
}

.dropdown-menu-inner {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(92, 84, 112, 0.18);
  border: 1px solid rgba(92, 84, 112, 0.08);
  padding: 8px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: #5c5470;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(92, 84, 112, 0.08);
}

.dropdown-menu a.active {
  background: #5c5470;
  color: #fff;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #5c5470;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(180deg, #ffffff 0%, #fef9ff 100%);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, #fefcfb);
}

.hero img {
  width: 100%;
  max-width: 900px;
  max-height: 450px;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 auto 30px;
  box-shadow: 0 15px 40px rgba(92, 84, 112, 0.15);
}

.hero h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #5c5470, #9575cd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: #7a7a8a;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Page Banner (for inner pages) ===== */
.page-banner {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(180deg, #ffffff 0%, #fef9ff 100%);
}

.page-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 1.1rem;
  color: #7a7a8a;
  max-width: 600px;
  margin: 0 auto;
}

.page-banner .banner-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}

/* ===== Container ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 24px;
}

/* ===== Section ===== */
.section {
  margin-bottom: 50px;
}

.section h2 {
  color: #5c5470;
  margin-bottom: 18px;
  font-size: 1.7rem;
}

.section p {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

/* ===== Card Grid ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(92, 84, 112, 0.08);
  border: 1px solid rgba(92, 84, 112, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(92, 84, 112, 0.14);
}

.card .card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #5c5470;
}

.card p {
  font-size: 0.95rem;
  color: #6a6a7a;
}

/* ===== Timeline (Schedule) ===== */
.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ce93d8, #9575cd, #7986cb);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 15px rgba(92, 84, 112, 0.07);
  border: 1px solid rgba(92, 84, 112, 0.05);
  transition: transform 0.2s ease;
}

.timeline-item:hover {
  transform: translateX(4px);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: #9575cd;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #ce93d8;
}

.timeline-item .time {
  font-weight: 700;
  color: #9575cd;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.timeline-item .activity {
  color: #4a4a5a;
  font-size: 1.05rem;
}

/* ===== Meal Cards ===== */
.meal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.meal-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(92, 84, 112, 0.07);
  border: 1px solid rgba(92, 84, 112, 0.05);
  transition: transform 0.3s ease;
}

.meal-card:hover {
  transform: translateY(-3px);
}

.meal-card .meal-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.meal-card h3 {
  font-size: 1.1rem;
  color: #5c5470;
  margin-bottom: 8px;
}

.meal-card p {
  font-size: 0.92rem;
  color: #7a7a8a;
}

/* ===== Weekly Menu Table ===== */
.menu-table-wrapper {
  overflow-x: auto;
  margin: 0 auto 40px;
  max-width: 960px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.menu-table thead tr {
  background: linear-gradient(135deg, #7c5cbf 0%, #a78bfa 100%);
  color: #fff;
}

.menu-table th {
  padding: 14px 12px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  text-align: center;
  letter-spacing: 0.3px;
}

.menu-table td {
  padding: 14px 12px;
  text-align: center;
  vertical-align: top;
  border-bottom: 1px solid #f0eef5;
  line-height: 1.6;
  color: #4a4a5a;
}

.menu-table tbody tr:hover {
  background-color: #faf8ff;
}

.menu-table .meal-label {
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: #5b3e96;
  white-space: nowrap;
  text-align: left;
  min-width: 110px;
}

.menu-table .lunch-row {
  background: #fef9f0;
}

.menu-table .lunch-row td[colspan] {
  font-style: italic;
  color: #9a8a6a;
  font-weight: 500;
}

@media (max-width: 768px) {
  .menu-table {
    font-size: 0.82rem;
  }
  .menu-table th,
  .menu-table td {
    padding: 10px 8px;
  }
}

/* ===== CTA Button ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Nunito', 'Segoe UI', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #9575cd, #7e57c2);
  color: #fff;
  box-shadow: 0 4px 18px rgba(149, 117, 205, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7e57c2, #673ab7);
  box-shadow: 0 6px 25px rgba(149, 117, 205, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: #5c5470;
  border: 2px solid #5c5470;
}

.btn-secondary:hover {
  background: #5c5470;
  color: #fff;
}

/* ===== Contact Form ===== */
.contact-form {
  max-width: 600px;
  margin: 30px auto 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #5c5470;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e0f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #4a4a5a;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #9575cd;
  box-shadow: 0 0 0 3px rgba(149, 117, 205, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Contact Info Cards ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info-card {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 15px rgba(92, 84, 112, 0.07);
  border: 1px solid rgba(92, 84, 112, 0.05);
}

.contact-info-card .info-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.contact-info-card h3 {
  font-size: 1rem;
  color: #5c5470;
  margin-bottom: 4px;
}

.contact-info-card p {
  color: #7a7a8a;
  font-size: 0.95rem;
}

.contact-info-card a {
  color: #9575cd;
  font-weight: 600;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* ===== Spring Break Feature ===== */
.camp-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.camp-highlight {
  text-align: center;
  padding: 24px 16px;
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.camp-highlight:hover {
  transform: scale(1.03);
}

.camp-highlight .highlight-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
}

.camp-highlight h3 {
  font-size: 1rem;
  color: #5c5470;
}

/* ===== Camp Theme Cards ===== */
.camp-themes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.camp-theme-card {
  position: relative;
  text-align: center;
  padding: 28px 16px 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--accent, #7c5cbf);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.camp-theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.camp-theme-card .theme-day {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  background: var(--accent, #7c5cbf);
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.camp-theme-card .theme-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.camp-theme-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: #3a3a4a;
  margin-bottom: 6px;
}

.camp-theme-card p {
  font-size: 0.85rem;
  color: #7a7a8a;
  line-height: 1.5;
}

/* Camp schedule table extras */
.camp-schedule-table td[colspan] {
  font-weight: 500;
  color: #5b3e96;
}

.camp-schedule-table td em {
  display: block;
  font-size: 0.82em;
  color: #9a8ab0;
  margin-top: 2px;
}

/* Alternating row colors for camp table */
.camp-schedule-table tbody tr:nth-child(odd) {
  background-color: #faf8ff;
}

.camp-schedule-table tbody tr:nth-child(even) {
  background-color: #fff;
}

/* Special row highlights */
.camp-schedule-table tbody tr.row-arrival {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
}

.camp-schedule-table tbody tr.row-breakfast {
  background: linear-gradient(135deg, #fff8e1, #fff3e0);
}

.camp-schedule-table tbody tr.row-outdoor {
  background: linear-gradient(135deg, #e0f7fa, #e8f5e9);
}

.camp-schedule-table tbody tr.row-lunch {
  background: linear-gradient(135deg, #fff3e0, #fce4ec);
}

.camp-schedule-table tbody tr.row-nap {
  background: linear-gradient(135deg, #ede7f6, #e8eaf6);
}

.camp-schedule-table tbody tr.row-snack {
  background: linear-gradient(135deg, #fce4ec, #fff3e0);
}

.camp-schedule-table tbody tr.row-craft {
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
}

.camp-schedule-table tbody tr.row-freeplay {
  background: linear-gradient(135deg, #e8f5e9, #e0f2f1);
}

.camp-schedule-table tbody tr.row-story {
  background: linear-gradient(135deg, #e3f2fd, #ede7f6);
}

.camp-schedule-table tbody tr.row-pickup {
  background: linear-gradient(135deg, #f3e5f5, #fce4ec);
}

.camp-schedule-table tbody tr:hover {
  filter: brightness(0.97);
  transition: filter 0.2s ease;
}

/* ===== Enrollment Highlights ===== */
.enrollment-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.enrollment-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 15px rgba(92, 84, 112, 0.07);
  border: 1px solid rgba(92, 84, 112, 0.05);
}

.enrollment-feature .feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.enrollment-feature h3 {
  font-size: 1.05rem;
  color: #5c5470;
  margin-bottom: 4px;
}

.enrollment-feature p {
  font-size: 0.92rem;
  color: #7a7a8a;
}

/* ===== About Values ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(92, 84, 112, 0.08);
  border: 1px solid rgba(92, 84, 112, 0.06);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card .value-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.value-card h3 {
  font-size: 1.1rem;
  color: #5c5470;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.92rem;
  color: #7a7a8a;
}

/* ===== Text Highlights ===== */
.highlight-box {
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
  border-radius: 16px;
  padding: 30px;
  margin: 20px 0;
  text-align: center;
}

.highlight-box h3 {
  font-size: 1.3rem;
  color: #5c5470;
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 1.05rem;
  color: #6a6a7a;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #e1bee7 0%, #d1c4e9 50%, #c5cae9 100%);
  margin-top: 60px;
  font-size: 0.9rem;
  color: #4a4a5a;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-inner .footer-brand {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #5c5470;
  margin-bottom: 8px;
}

.footer-inner .footer-links {
  margin: 12px 0;
}

.footer-inner .footer-links a {
  color: #5c5470;
  margin: 0 10px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-inner .footer-links a:hover {
  color: #9575cd;
}

.footer-inner .footer-copy {
  margin-top: 12px;
  font-size: 0.85rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.2s; }
.animate-in:nth-child(4) { animation-delay: 0.3s; }
.animate-in:nth-child(5) { animation-delay: 0.4s; }
.animate-in:nth-child(6) { animation-delay: 0.5s; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding-top: 12px;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 50%, #e8eaf6 100%);
    padding: 12px 16px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 999;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 12px 16px;
    text-align: center;
    width: 100%;
    border-radius: 12px;
  }

  /* Flatten dropdown on mobile */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown > .dropdown-toggle {
    display: none;
  }

  .dropdown-menu {
    display: contents;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    min-width: unset;
    background: transparent;
  }

  .dropdown-menu a {
    padding: 12px 16px;
    text-align: center;
    width: 100%;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  header h1 {
    font-size: 1.15rem;
  }

  .hero h2 {
    font-size: 1.6rem;
  }

  .hero {
    padding: 50px 16px 40px;
  }

  .page-banner h2 {
    font-size: 1.6rem;
  }

  .container {
    padding: 35px 16px;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item::before {
    left: -27px;
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1rem;
  }

  .hero h2 {
    font-size: 1.35rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .meal-grid {
    grid-template-columns: 1fr;
  }

  .camp-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .camp-themes {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 10px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 28px;
  box-shadow: 0 4px 20px rgba(92, 84, 112, 0.08);
  border: 1px solid rgba(92, 84, 112, 0.06);
  border-top: 4px solid #ce93d8;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.testimonial-stars {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: #5a5a6a;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.92rem;
  color: #5c5470;
}

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

.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 3px 15px rgba(92, 84, 112, 0.07);
  border: 1px solid rgba(92, 84, 112, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item[open] {
  box-shadow: 0 6px 25px rgba(92, 84, 112, 0.12);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #5c5470;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
  font-family: 'Nunito', 'Segoe UI', sans-serif;
}

.faq-question:hover {
  background: rgba(92, 84, 112, 0.04);
}

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

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: #9575cd;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: #5a5a6a;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-answer ul {
  margin: 10px 0 10px 20px;
}

.faq-answer li {
  margin-bottom: 6px;
}

.faq-answer a {
  color: #9575cd;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* ===== Photo Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(92, 84, 112, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(92, 84, 112, 0.18);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.gallery-caption {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #5c5470;
  text-align: center;
  background: #fff;
}

/* ===== Policy Cards ===== */
.policy-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 28px;
  box-shadow: 0 4px 20px rgba(92, 84, 112, 0.08);
  border: 1px solid rgba(92, 84, 112, 0.06);
}

.policy-card h3 {
  font-size: 1.2rem;
  color: #5c5470;
  margin-bottom: 14px;
  font-family: 'Nunito', 'Segoe UI', sans-serif;
}

.policy-card p {
  font-size: 0.98rem;
  color: #5a5a6a;
  margin-bottom: 10px;
  line-height: 1.7;
}

.policy-card ul {
  margin: 10px 0 10px 20px;
  color: #5a5a6a;
  font-size: 0.98rem;
}

.policy-card li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===== Footer Info Line ===== */
.footer-inner .footer-info {
  font-size: 0.92rem;
  color: #5c5470;
  font-weight: 600;
  margin-bottom: 10px;
}
