/* ===== TRUSTPILOT-INSPIRED REVIEW SECTION ===== */
#testimonials {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

/* Section title (override for review section) */
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.section-title p {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 40px;
}

/* Reviews list */
.client-reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Individual review card (override for review section) */
.client-review-card {
  background: var(--bg-card, #fff) !important;
  color: var(--text-main, #24292f) !important;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transition: background 0.2s, color 0.2s;
}
.client-review-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main, #24292f) !important;
}
.review-stars {
  color: #00b67a;
  font-size: 16px;
}

/* Leave review button */
.review-expand-btn {
  padding: 12px 28px;
  font-size: 15px;
  border-radius: 999px;
  background: #00b67a;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.review-expand-btn:hover {
  background: #009e68;
}

/* Review form panel */
#clientReviewPanel {
  margin-top: 40px;
  width: 100%;
}

/* Form wrapper */
.client-review-form-wrapper {
  max-width: 420px;
  width: 100%;
  background: var(--bg-card, #fff) !important;
  color: var(--text-main, #24292f) !important;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s;
}

/* Form fields */
.client-review-form .form-group {
  text-align: left;
  margin-bottom: 16px;
}
.client-review-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main, #24292f) !important;
}
.client-review-form .form-control {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}
.client-review-form .form-control:focus {
  outline: none;
  border-color: #00b67a;
}

/* Star rating input */
.client-review-stars {
  display: flex;
  gap: 6px;
  font-size: 26px;
  cursor: pointer;
}
.client-review-stars .star {
  color: #d1d5db;
  transition: transform 0.15s ease, color 0.15s ease;
}
.client-review-stars .star:hover {
  transform: scale(1.15);
}
.client-review-stars .star.filled {
  color: #00b67a;
}

/* Submit button */
#clientReviewBtn {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  font-size: 15px;
  border-radius: 10px;
  background: #00b67a;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
#clientReviewBtn:hover {
  background: #009e68;
}

/* Mobile adjustments for review section */
@media (max-width: 480px) {
  .section-title h2 {
    font-size: 26px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-card: #23272e;
    --text-main: #e6edf3;
  }
}
/* ===== TRUSTPILOT-INSPIRED REVIEW SECTION ===== */
#testimonials {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

/* Reviews list */
.client-reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Individual review card */
.client-review-card {
  background: var(--bg-card, #fff) !important;
  color: var(--text-main, #24292f) !important;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transition: background 0.2s, color 0.2s;
}
.client-review-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main, #24292f) !important;
}
.review-stars {
  color: #00b67a;
  font-size: 16px;
}

/* Leave review button */
.review-expand-btn {
  padding: 12px 28px;
  font-size: 15px;
  border-radius: 999px;
  background: #00b67a;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.review-expand-btn:hover {
  background: #009e68;
}

/* Review form panel */
#clientReviewPanel {
  margin-top: 40px;
  width: 100%;
}

/* Form wrapper */
.client-review-form-wrapper {
  max-width: 420px;
  width: 100%;
  background: var(--bg-card, #fff) !important;
  color: var(--text-main, #24292f) !important;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s;
}

/* Form fields */
.client-review-form .form-group {
  text-align: left;
  margin-bottom: 16px;
}
.client-review-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main, #24292f) !important;
}
.client-review-form .form-control {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}
.client-review-form .form-control:focus {
  outline: none;
  border-color: #00b67a;
}

/* Star rating input */
.client-review-stars {
  display: flex;
  gap: 6px;
  font-size: 26px;
  cursor: pointer;
}
.client-review-stars .star {
  color: #d1d5db;
  transition: transform 0.15s ease, color 0.15s ease;
}
.client-review-stars .star:hover {
  transform: scale(1.15);
}
.client-review-stars .star.filled {
  color: #00b67a;
}

/* Submit button */
#clientReviewBtn {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  font-size: 15px;
  border-radius: 10px;
  background: #00b67a;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
#clientReviewBtn:hover {
  background: #009e68;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .section-title h2 {
    font-size: 26px;
  }
}
/* Hero section padding moved from index.php */
.hero {
  padding: 32px 0 32px 0;
}
:root {
  --bg-main: #f6f8fa;
  --bg-card: #fff;
  --border-default: #d0d7de;
  --text-main: #24292f;
  --text-muted: #57606a;
  --primary: #0969da;
  --primary-hover: #0550ae;
  --success: #1a7f37;
  --danger: #cf222e;
}


body, html {
  background: var(--bg-main) !important;
  color: var(--text-main);
}

.dashboard-main, main, section, .cta, .features, .feature, .wallet-card, .blog-card, .booking-card, .recent-activity-list li, .section-title, .newsletter, .footer, .dashboard-sidebar, .dashboard-container, .dashboard-main, .dashboard-section-title, .booking-title, .blog-title {
  background: var(--bg-main) !important;
  color: var(--text-main) !important;
  border-color: var(--border-default) !important;
}

.wallet-card, .blog-card, .booking-card, .feature, .recent-activity-list li {
  background: var(--bg-card) !important;
  border-color: var(--border-default) !important;
}



.main-nav a.active, .main-nav a[aria-current="page"] {
  color: var(--primary) !important;
}

.btn-primary, .wallet-actions, .booking-form-submit {
  background: var(--primary) !important;
  color: #fff !important;
}
.btn-primary:hover, .wallet-actions:hover, .booking-form-submit:hover {
  background: var(--primary-hover) !important;
}

.dark-theme {
  --bg-main: #181c20;
  --bg-card: #23272e;
  --border-default: #30363d;
  --text-main: #e6edf3;
  --text-muted: #8b949e;
  --primary: #58a6ff;
  --primary-hover: #1f6feb;
  --success: #238636;
  --danger: #f85149;
}



.wallet-card, .blog-card, .booking-card, .feature {
  background: var(--bg-card);
  border-color: var(--border-default);
}

.section-title h2, .dashboard-section-title, .blog-title, .booking-title {
  color: var(--text-main);
}

.main-nav a, .main-nav a:visited {
  color: var(--text-main);
}

.main-nav a.active, .main-nav a[aria-current="page"] {
  color: var(--primary);
}

.btn-primary, .wallet-actions, .booking-form-submit {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .wallet-actions:hover, .booking-form-submit:hover {
  background: var(--primary-hover);
}
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--bg-main) !important;
  color: var(--text-main) !important;
  margin: 0;
}
header {
  background: #24292f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
}
nav#navMenu {
  display: flex;
  gap: 24px;
}
nav#navMenu a {
  color: #c9d1d9;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
}
nav#navMenu a:hover {
  color: #58a6ff;
  border-bottom: 2px solid #58a6ff;
}
.menu-toggle { display: none; }
@media (max-width: 800px) {
  header { flex-direction: column; align-items: flex-start; padding: 18px 16px; }
  nav#navMenu { flex-direction: column; gap: 12px; width: 100%; }
}
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #24292f 60%, #58a6ff 100%);
  color: #fff;
  padding: 64px 40px 48px 40px;
  min-height: 340px;
}
.hero > div:first-child {
  max-width: 540px;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -2px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 18px;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #58a6ff;
  color: #fff;
}
.btn-primary:hover {
  background: #1f6feb;
}
.btn-secondary {
  background: #fff;
  color: #24292f;
  border: 1px solid #d0d7de;
}
.btn-secondary:hover {
  background: #f6f8fa;
}
.hero-card {
  background: #fff;
  color: #24292f;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(36,41,47,0.08);
  padding: 32px 28px;
  margin-left: 40px;
  min-width: 200px;
  min-height: 180px;
}
.hero-card ul { list-style: none; padding: 0; margin: 0; }
.hero-card li { margin-bottom: 14px; font-size: 1.1rem; }
.section-title {
  text-align: center;
  margin: 60px 0 24px 0;
}
.section-title h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}
.feature {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(36,41,47,0.06);
  padding: 28px 22px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  text-align: left;
}
.feature h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.feature p { font-size: 1rem; color: #57606a; }
.badge {
  display: inline-block;
  background: #58a6ff;
  color: #fff;
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 0.95rem;
  margin-top: 8px;
}
.cta {
  background: #24292f;
  color: #fff;
  text-align: center;
  padding: 48px 0 40px 0;
  margin-top: 40px;
}
footer {
  background: #161b22;
  color: #8b949e;
  text-align: center;
  padding: 32px 0 18px 0;
  font-size: 1rem;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 40px 10px; }
  .hero-card { margin-left: 0; margin-top: 32px; }
  .features { flex-direction: column; align-items: center; }
}
@media (max-width: 800px) {
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 200;
  }
  .menu-toggle span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
  }
  nav#navMenu {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    background: #24292f;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 100;
    padding: 18px 0 18px 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 24px rgba(36,41,47,0.10);
  }
  nav#navMenu.active {
    display: flex;
  }
  nav#navMenu a {
    color: #c9d1d9;
    padding: 12px 24px;
    border-bottom: 1px solid #30363d;
    margin: 0;
  }
  nav#navMenu a:last-child {
    border-bottom: none;
  }
  header { flex-direction: row; align-items: center; padding: 12px 10px; }
}
