/* ========= RESET ========= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #050816;
  --bg-elevated: #0b1020;
  --accent: #ffcc7b;
  --accent-soft: #ffe3b4;
  --accent-teal: #13d0b4;
  --text-main: #fff4df;
  --text-muted: #c9c1b0;
  --border-soft: rgba(255, 255, 255, 0.08);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.5);
}

body.light-mode {
  --bg-dark: #f8f9fa;
  /* Softer white/grey background */
  --bg-elevated: #ffffff;
  --text-main: #212529;
  /* Darker grey for better readability */
  --text-muted: #6c757d;
  --border-soft: rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Softer shadow */
  --accent: #e0a800;
  /* Darker gold */
  --accent-soft: #b8860b;
}

/* Light mode overrides for specific elements */
body.light-mode .navbar {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

body.light-mode .navbar.solid {
  background: #ffffff;
}

body.light-mode .card,
body.light-mode .product-card,
body.light-mode .service-card,
body.light-mode .review-card,
body.light-mode .faq-item,
body.light-mode .review-form,
body.light-mode .review-list-container,
body.light-mode .contact-form,
body.light-mode .card-badge,
body.light-mode .product-pill,
body.light-mode .tag-pill {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  color: var(--text-main);
}

body.light-mode .logo-text {
  color: #212529;
}

body.light-mode input,
body.light-mode select,
body.light-mode textarea {
  background: #ffffff;
  border: 1px solid #ced4da;
  color: #495057;
}

body.light-mode input:focus,
body.light-mode select:focus,
body.light-mode textarea:focus {
  border-color: #e0a800;
  box-shadow: 0 0 0 3px rgba(224, 168, 0, 0.15);
}

body.light-mode .footer {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: #6c757d;
}

body.light-mode .nav-links a {
  color: #495057;
}

body.light-mode .nav-links a.active,
body.light-mode .nav-links a:hover {
  color: #e0a800;
}

body.light-mode .nav-links a.active::after,
body.light-mode .nav-links a:hover::after {
  background: linear-gradient(90deg, #e0a800, #13d0b4);
}

/* Button overrides for light mode */
body.light-mode .btn-outline {
  border-color: #dee2e6;
  background: transparent;
  color: #212529;
}

body.light-mode .btn-outline:hover {
  background: #f1f3f5;
  border-color: #ced4da;
}

body.light-mode .btn-ghost {
  background: transparent;
  border-color: transparent;
  color: #495057;
}

body.light-mode .btn-ghost:hover {
  background: #e9ecef;
}

body.light-mode .hero-title {
  color: #e0a800;
  text-shadow: none;
}

body.light-mode .tag-pill {
  background: #ffffff;
  color: #495057;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

body.light-mode .faq-question {
  color: var(--text-main);
}

body.light-mode .faq-answer {
  background: #f8f9fa;
}

/* Page Hero Light Mode */
body.light-mode .page-hero {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-mode .page-hero h1 {
  color: #212529;
}







/* global */
body {
  font-family: "Poppins", system-ui, sans-serif;
  background: radial-gradient(circle at 0 0, #09263a 0, #050816 40%, #02030a 90%);
  color: var(--text-main);
  min-height: 100vh;
}

.page-main {
  padding-top: 96px;
}

a {
  color: inherit;
}

/* ========= BACKGROUND VIDEO (HOME ONLY) ========= */

.page-home .bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-home .overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(5, 8, 22, 0.4),
      rgba(5, 8, 22, 0.85),
      rgba(5, 8, 22, 0.98));
  z-index: -1;
}

/* ========= NAVBAR ========= */

.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 18px 24px;
  background: linear-gradient(to bottom, rgba(5, 8, 22, 0.9), transparent);
  backdrop-filter: blur(16px);
}

.navbar.solid {
  background: rgba(5, 8, 22, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 45px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  /* ensures logo isn't distorted */
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--accent-soft);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-teal));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* buttons */
.btn-primary,
.btn-outline,
.btn-ghost {
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-teal));
  color: #0a0812;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.9);
}

.btn-outline {
  border: 1px solid rgba(255, 239, 208, 0.6);
  background: rgba(8, 10, 24, 0.4);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 239, 208, 0.1);
}

.btn-ghost {
  background: rgba(18, 22, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--accent-soft);
}

.btn-ghost:hover {
  background: rgba(30, 38, 70, 0.9);
}

/* mobile nav button */
.nav-toggle {
  border: none;
  background: rgba(18, 22, 46, 0.8);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 1.3rem;
  display: none;
  color: var(--accent-soft);
}

/* ========= HERO (HOME) ========= */

.hero {
  padding-top: 130px;
  padding-inline: 24px;
  padding-bottom: 80px;
  text-align: center;
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.08;
  margin-top: 20px;
  color: var(--accent-soft);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
  margin-top: 18px;
  max-width: 640px;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero-cta {
  margin-top: 26px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.3), transparent),
    rgba(8, 10, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7);
  font-size: 0.8rem;
  color: var(--accent-soft);
  backdrop-filter: blur(18px);
}

.hero-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  width: clamp(220px, 60vw, 360px);
  aspect-ratio: 1 / 1;
  padding: clamp(16px, 4vw, 32px);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 204, 123, 0.15), transparent 70%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}

.hero-logo-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.05),
      transparent);
  animation: shine 8s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: rotate(45deg) translateY(-20%);
  }

  100% {
    transform: rotate(45deg) translateY(120%);
  }
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-logo-container {
  margin-bottom: 0;
  max-width: 100%;
  padding: 30px;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}

.about-layout-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.founder-card {
  padding: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.founder-image {
  width: clamp(220px, 65%, 320px);
  aspect-ratio: 1 / 1;
  margin: 32px auto 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.founder-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.founder-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.founder-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.founder-list i {
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .founder-image {
    width: clamp(200px, 70vw, 280px);
  }

  .founder-image img {
    height: 100%;
  }
}

.tag-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-teal);
  box-shadow: 0 0 16px rgba(19, 208, 180, 0.9);
}

/* ========= GENERIC SECTIONS ========= */

.section {
  padding: 32px 24px 80px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 580px;
  font-size: 0.95rem;
}

/* highlight section home */
.section-highlight {
  padding-top: 8px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

/* ========= MISSION VISION ========= */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

/* ========= CARDS ========= */

.card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0 0, rgba(255, 204, 123, 0.12), transparent),
    radial-gradient(circle at 100% 100%, rgba(19, 208, 180, 0.08), transparent),
    rgba(6, 10, 30, 0.95);
  border: 1px solid var(--border-soft);
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: var(--accent);
}

.card h3 {
  font-size: 1.1rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.card-list {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 4px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-list i {
  font-size: 1rem;
  color: var(--accent-teal);
  margin-right: 6px;
}

/* product & service specific tweaks */
.product-grid .product-card {
  position: relative;
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 239, 208, 0.05);
  border: 1px solid rgba(255, 205, 123, 0.4);
  color: var(--accent-soft);
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 239, 208, 0.3);
  font-size: 0.75rem;
  color: var(--accent-soft);
  background: rgba(8, 10, 24, 0.8);
}

/* ========= PAGE HERO (INNER PAGES) ========= */

.page-hero {
  padding: 110px 24px 40px;
  background: radial-gradient(circle at 0 0, rgba(255, 204, 123, 0.18), transparent),
    radial-gradient(circle at 100% 0, rgba(19, 208, 180, 0.16), transparent),
    linear-gradient(135deg, #050816, #050b1b);
  border-bottom: 1px solid var(--border-soft);
}

.page-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: var(--accent-soft);
}

.page-hero p {
  max-width: 580px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* ========= CONTACT LAYOUT ========= */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: flex-start;
}

.contact-info .info-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  align-items: flex-start;
}

.info-row i {
  font-size: 1.3rem;
  color: var(--accent);
}

/* form */
.contact-form {
  border-radius: var(--radius-lg);
  background: rgba(6, 10, 30, 0.95);
  border: 1px solid var(--border-soft);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}



label {
  font-size: 0.83rem;
  color: var(--text-muted);
}

input,
select,
textarea {
  background: #050816;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 11px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 204, 123, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 204, 123, 0.3);
}

textarea {
  resize: vertical;
}

.full-width {
  width: 100%;
  justify-content: center;
}

.form-note {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--accent-soft);
}

/* ========= FOOTER ========= */

.footer {
  padding: 22px 24px 26px;
  border-top: 1px solid var(--border-soft);
  background: rgba(3, 4, 15, 0.96);
  margin-top: 40px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-note {
  opacity: 0.8;
}

/* ========= RESPONSIVE ========= */

.sm-hidden {
  /* hidden by default on mobile – shown with media query */
}

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: 18px;
    background: rgba(8, 10, 22, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 170px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .sm-hidden {
    display: none;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .navbar-inner {
    gap: 12px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .section,
  .page-hero {
    padding-inline: 16px;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* ===== FUTURISTIC PRODUCT CARDS (WITH IMAGE) ===== */

.product-grid .product-card {
  position: relative;
  overflow: hidden;
}

/* image wrapper */
.product-media {
  position: relative;
  margin: -10px -10px 14px;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, rgba(255, 204, 123, 0.22), transparent),
    radial-gradient(circle at 100% 100%, rgba(19, 208, 180, 0.18), transparent);
}

/* product image */
.product-media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(1.1) contrast(1.02);
}

/* subtle gradient on top of image */
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 8, 22, 0.1), rgba(5, 8, 22, 0.55));
}

/* pill label on image */
.product-pill {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 4px 11px;
  font-size: 0.72rem;
  border-radius: 999px;
  background: rgba(6, 10, 30, 0.9);
  border: 1px solid rgba(255, 239, 208, 0.4);
  color: var(--accent-soft);
  z-index: 1;
  backdrop-filter: blur(6px);
}

/* hover effects */
.product-card:hover .product-media img {
  transform: scale(1.08);
  filter: saturate(1.25) contrast(1.07);
}

.product-card:hover {
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(96, 155, 200, 0.99),
    0 0 80px rgba(19, 208, 180, 0.2);
  transform: translateY(-2px);
}

/* small icon tweak so it matches theme */
.card-list i {
  vertical-align: middle;
}


/* ===== REVIEW MODULE ===== */

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.review-form {
  border-radius: var(--radius-lg);
  background: rgba(6, 10, 30, 0.96);
  border: 1px solid var(--border-soft);
  padding: 22px 20px 24px;
  box-shadow: var(--shadow-soft);
}

.review-form .section-title {
  margin-bottom: 14px;
}

.required {
  color: #ff7a7a;
}

.hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* star rating */
.rating-stars {
  display: inline-flex;
  gap: 6px;
  margin-top: 4px;
}

.rating-stars .star {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.24);
  transition: color 0.15s ease, transform 0.15s ease;
  padding: 0;
}

.rating-stars .star.active,
.rating-stars .star:hover,
.rating-stars .star:hover~.star {
  transform: translateY(-1px);
}

/* active color set through JS class */
.rating-stars .star.active i,
.rating-stars .star.selected i {
  color: #ffc857;
}

.rating-stars .star i {
  color: rgba(255, 255, 255, 0.24);
}

/* captcha */
.captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 12px;
  align-items: flex-end;
  margin-top: 4px;
}

.captcha-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #050816;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  padding: 10px 0;
  font-family: "Poppins", monospace;
  letter-spacing: 0.22em;
  font-size: 0.95rem;
  color: var(--accent-soft);
  user-select: none;
}

/* actions */
.review-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

#reviewNote {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--accent-soft);
}

/* RIGHT SIDE LIST */
.review-list-container {
  border-radius: var(--radius-lg);
  background: rgba(6, 10, 30, 0.96);
  border: 1px solid var(--border-soft);
  padding: 18px 16px 18px;
  box-shadow: var(--shadow-soft);
}

.review-list-header h3 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}

.review-list-header i {
  color: var(--accent);
}

.review-list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  max-height: 380px;
  overflow-y: auto;
}

/* individual review card */
.review-card {
  border-radius: 14px;
  background: radial-gradient(circle at 0 0, rgba(255, 204, 123, 0.18), transparent),
    rgba(8, 10, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 11px 9px;
  font-size: 0.85rem;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.review-card-name {
  font-weight: 500;
}

.review-card-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.review-card-rating {
  color: #ffc857;
  font-size: 0.9rem;
}

.review-card-comment {
  margin-top: 4px;
  color: var(--text-main);
}

/* responsive */
@media (max-width: 960px) {
  .review-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .captcha-row {
    grid-template-columns: minmax(0, 1fr);
  }
}


.about-copy {
  margin-top: 10px;
  display: grid;
  gap: 15px;
  max-width: 900px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-copy p[lang="ta"] {
  line-height: .7;
}


.direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 18px;
  background: rgba(255, 204, 123, 0.12);
  border: 1px solid rgba(255, 204, 123, 0.35);
  color: var(--accent-soft);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.25s ease;
  backdrop-filter: blur(6px);
}

.direction-btn i {
  font-size: 1.2rem;
}

.direction-btn:hover {
  background: rgba(255, 204, 123, 0.25);
  border-color: rgba(255, 204, 123, 0.55);
  transform: translateY(-2px);
}


/* ========= FAQ ACCORDION ========= */

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-lg);
  background: rgba(6, 10, 30, 0.6);
  border: 1px solid var(--border-soft);
  margin-bottom: 16px;
  overflow: hidden;
  transition: background 0.2s ease;
}

.faq-item:hover {
  background: rgba(6, 10, 30, 0.95);
}

.faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Open state */
.faq-item.open .faq-question {
  color: var(--accent-soft);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  /* large enough to fit content */
  transition: max-height 0.3s ease-in-out;
}

/* ===== REVIEW DISPLAY CARDS (Static) ===== */
.review-display-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-display-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-teal));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.review-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-main);
  line-height: 1.3;
}

.review-rating {
  color: #ffc857;
  font-size: 0.95rem;
  margin-top: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}