:root {
  --accent: #e1e423;
  --nav-radius: 18px;
  --max-width: 1200px;
  --cta-bg: #6c757d;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #111;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

/* Intro overlay */
#intro {
  position: fixed;
  inset: 0;
  background: #ffffff; /* dark bg */
  display: flex;
  align-items: center; /* horizontal center */
  justify-content: center; /* vertical center */
  flex-direction: column;
  z-index: 9999;
  color: #000000;
  text-align: center; /* makes text under logo also centered */
}

/* Logo fade in */
.intro-logo {
  width: 80px;
  height: auto;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  display: block; /* ensure no inline spacing issues */
  margin: 0 auto; /* reinforces center */
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Title appear after logo */
.intro-title {
  font-family: "Cormorant Garamond", serif;

  margin-top: 18px;
  font-size: 2rem;
  font-weight: 500;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
  text-align: center;
}

/* Tagline after title */
.intro-tagline {
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.6s;
  text-align: center;
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar Styling */
.site-nav {
  background: #fff;
  border-radius: 25px;
  padding: 10px 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  margin: 20px auto;
  max-width: 1200px;
}

/* Logo */
.logo-img {
  height: 42px;
  width: auto;
}

/* Nav Links */
.navbar-nav {
  gap: 30px;
}
.nav-link {
  color: #111 !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: #111 !important;
}
.nav-link.active,
.nav-link:focus,
.nav-link:hover {
  color: #111 !important;
}
.nav-link.active::after,
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0%;
  height: 3px;
  background: #050505;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* CTA Button */
.btn-contact {
  margin-left: 16px;
  background: #000000;
  color: #fff;
  border-radius: 15px;
  padding: 0.45rem 1rem;
  display: flex;
  gap: 8px;
  align-items: center;
  border: 0;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn-contact:hover {
  background: #ffffff;
  border: 0.5px solid #111;
}
.btn-contact i {
  font-size: 1rem;
}

.navbar-toggler {
  border: none;
  background: transparent !important;
  outline: none;
  box-shadow: none !important;
  padding: 6px 8px;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: #111;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: #111;
  transition: all 0.3s ease-in-out;
}
.navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler.collapsed .navbar-toggler-icon {
  background-color: #111;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-color: transparent;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}
@media (max-width: 992px) {
  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
  }
}

@media (max-width: 992px) {
  .site-nav {
    border-radius: 20px;
    margin: 10px;
  }
  .btn-contact {
    display: none;
  }
}
@media (max-width: 992px) {
  .navbar .btn-contact {
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.9rem;
  }
  .navbar .btn-contact span {
    display: none;
  }
}
.btn-enquiry {
  background: #000;
  color: #fff !important;
  border-radius: 10px;
  padding: 5px 10px !important;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-enquiry:hover {
  background: #333;
}

@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@600;700&family=Manrope:wght@300;400;600&family=Cormorant+Garamond:wght@700&display=swap");

.hero {
  min-height: 100vh;
  background-image: url("img/hero.jpg");
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 10%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1100px;
  padding: 56px 28px;
  box-sizing: border-box;
  text-align: center;
}

.hero-tag {
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1;
  letter-spacing: -0.6px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  font-size: clamp(32px, 5.6vw, 46px);
}

.hero-accent {
  display: block;
  font-weight: 700;
  font-size: 1.02em;
  margin-top: 6px;
}

.hero-meta {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  margin: 12px 0 18px;
  font-size: clamp(14px, 2.2vw, 18px);
  letter-spacing: 0.2px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.22s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.btn-quote {
  background: linear-gradient(180deg, #c68d36, #a86b2b);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.btn-hero:hover {
  transform: translateY(-3px);
}

.hero-watermark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6%;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(42px, 8vw, 110px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  opacity: 0.98;
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .hero-inner {
    padding: 18px 20px 14px;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    transform: translateY(-6vh);
    margin-bottom: 30% !important;
  }

  .hero-tag {
    font-size: clamp(28px, 9.6vw, 20px) !important;
    line-height: 1.06;
    margin-bottom: 8px;
  }

  .hero-meta {
    font-size: 14px;
    margin-top: 6px;
    margin-bottom: 12px;
  }

  .hero-buttons {
    justify-content: flex-start;
    gap: 12px;
  }
  .btn-hero {
    padding: 12px 16px;
    font-size: 0.58rem;
  }

  .hero-watermark {
    top: 55% !important;
    bottom: auto;
    font-size: clamp(60px, 20vw, 100px) !important;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 420px) {
  .hero-inner {
    transform: translateY(-7vh);
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-tag {
    font-size: clamp(24px, 10.5vw, 38px);
  }
  .hero-watermark {
    top: 60%;
    font-size: clamp(54px, 26vw, 130px);
  }
}

.hero-watermark[data-aos="fade"] {
  transform: translateX(-50%) !important;
}

.rn-value {
  background: #fff;
  color: #111;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.rn-value .vp-title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}
.rn-value .vp-title span {
  color: #555;
}

.rn-value .vp-text {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 24px;
}

.rn-value .vp-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7f9fb;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.rn-value .vp-feature .icon {
  flex-shrink: 0;
}
.rn-value .vp-feature p {
  margin: 0;
  color: #333;
}

.rn-value .vp-image img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
  .rn-value .vp-title {
    text-align: center;
  }
  .rn-value .vp-text {
    text-align: center;
  }
  .rn-value .vp-feature {
    justify-content: center;
  }
}

.about-section {
  background: #fff;
  position: relative;
  overflow-x: hidden;
}

.about-title {
  font-family: "Unbounded", "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #111;
}

.about-title span {
  color: #555;
}

.about-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-stat {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  position: relative;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.4rem;
}
.about-img-wrapper {
  align-items: center;
}
@media (max-width: 768px) {
  .about-stat {
    font-size: 1.6rem;
  }
  .about-title {
    text-align: center;
  }
  .about-text {
    text-align: center;
  }
}

.rn-services {
  background: #ffffff;
  color: #111;
}

.rn-services .section-title {
  font-family: "Unbounded", "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #111;
}
.rn-services .section-subtext {
  color: #555;
  font-size: 0.95rem;
}

.rn-service-card {
  display: block;
  position: relative;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-size: cover;
  background-position: center center;
  transition: transform 320ms ease, box-shadow 320ms ease;
  will-change: transform;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .rn-service-card {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .rn-service-card {
    height: 340px;
  }
}

.rn-service-card:hover,
.rn-service-card:focus {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  outline: none;
}

.rn-card-overlay {
  position: absolute;
  inset: 0;
  transition: background 280ms ease;
  pointer-events: none;
}

.rn-service-card:hover .rn-card-overlay,
.rn-service-card:focus .rn-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.64) 100%
  );
}

.rn-card-content {
  position: absolute;
  z-index: 2;
  inset: auto 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  text-align: left;
}

.rn-card-title {
  margin: 0;
  font-family: "Poppins", "Unbounded", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  text-transform: none;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.rn-card-desc {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.rn-card-cta {
  margin-top: 8px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 220ms ease, transform 220ms ease;
  cursor: pointer;
  text-decoration: none;
}

.rn-card-cta .rn-cta-arrow {
  display: inline-block;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.rn-service-card:hover .rn-card-cta .rn-cta-arrow,
.rn-service-card:focus .rn-card-cta .rn-cta-arrow {
  transform: translateX(6px);
}

.rn-service-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12), 0 18px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px) scale(1.02);
}

.rn-card-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 12px;
  display: block;
  text-align: center;
}

.btn-services {
  margin-top: 16px;
  background: #000000;
  color: #ffffff;
  border-radius: 12px;
  padding: 0.65rem 1.2rem;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 0;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-services:hover {
  background: #ffffff;
  color: #000000;
  border: 0.5px solid #111;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn-services i {
  font-size: 1rem;
}

@media (max-width: 575.98px) {
  .rn-card-content {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: flex-start;
  }
}

.rn-service-card:focus .rn-card-cta,
.rn-service-card:hover .rn-card-cta {
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1400px) {
  .rn-services .container {
    max-width: 1300px;
  }
}

.rn-whyus {
  background: #f6f7f8;
  color: #111;
  font-family: "Poppins", sans-serif;
}

.rn-whyus .why-title {
  font-family: "Unbounded", "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 36px);
  margin-bottom: 8px;
  color: #111;
}
.rn-whyus .why-sub {
  color: #6b6b6b;
  font-size: 0.98rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.rn-whyus .why-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 12px 40px rgba(7, 12, 19, 0.06);
  border: 1px solid rgba(15, 15, 15, 0.03);
  height: 100%;
  min-height: 260px;
}

.rn-whyus .why-icon {
  width: 108px;
  height: 108px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.95)
  );
  box-shadow: 0 12px 36px rgba(7, 12, 19, 0.1);
  overflow: visible;
}

.rn-whyus .why-icon svg {
  width: 72px;
  height: 72px;
  display: block;
}

.rn-whyus .why-card-title {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 6px 0 8px;
  color: #111;
}
.rn-whyus .why-card-text {
  color: #6b6b6b;
  font-size: 0.94rem;
  line-height: 1.45;
  margin: 0;
  max-width: 260px;
}

.rn-whyus .row.align-items-stretch {
  align-items: stretch;
}

@media (max-width: 991px) {
  .rn-whyus .why-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 14px;
  }
  .rn-whyus .why-icon svg {
    width: 64px;
    height: 64px;
  }
  .rn-whyus .why-card {
    padding: 22px;
    min-height: 240px;
  }
  .rn-whyus .why-card-text {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .rn-whyus .why-card {
    padding: 18px;
    min-height: unset;
  }
  .rn-whyus .why-icon {
    width: 76px;
    height: 76px;
  }
  .rn-whyus .why-icon svg {
    width: 56px;
    height: 56px;
  }
  .rn-whyus .why-card-title {
    font-size: 1rem;
  }
  .rn-whyus .why-card-text {
    font-size: 0.92rem;
  }
}

.contact-section {
  background: #f9f9f9;
  overflow-x: hidden;
}
.section-title {
  font-weight: 700;
  font-size: 2rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #555;
}
.contact-info h6 {
  font-weight: 600;
}
.form-control {
  border-radius: 12px;
  border: 1px solid #ddd;
  transition: 0.3s ease;
}
.form-control:focus {
  border-color: #000;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}
.btn-dark {
  background: linear-gradient(135deg, #000, #333);
  border: none;
  transition: 0.3s ease;
}
.btn-dark:hover {
  background: linear-gradient(135deg, #333, #000);
  transform: translateY(-2px);
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

.footer {
  font-family: "Poppins", sans-serif;
}
.footer-brand {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}
.footer-text {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.6;
}
.footer-heading {
  font-weight: 600;
  font-size: 1.1rem;
}
.footer-link {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #fff;
}
.footer-contact i {
  font-size: 1.2rem;
  color: #999;
}
.footer-contact span {
  font-size: 0.95rem;
  color: #bbb;
}
.footer-social .social-link {
  font-size: 1.2rem;
  color: #bbb;
  transition: all 0.3s ease;
}
.footer-social .social-link:hover {
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
  .footer-contact li {
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}
/* FAQ Section */
.rn-faq {
  background: #fff;
  color: #111;
  font-family: "Poppins", sans-serif;
}
.rn-faq .section-title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(26px, 3.6vw, 34px);
  margin-bottom: 6px;
}
.rn-faq .section-subtext {
  color: #666;
  margin-bottom: 18px;
}

/* Search */
.faq-search-wrapper {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}
.faq-search-wrapper input[type="search"] {
  min-width: 320px;
  width: clamp(220px, 40vw, 520px);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-family: "Manrope", sans-serif;
}
.faq-search-wrapper button {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

/* Grid */
.faq-grid {
  display: grid;
  gap: 12px;
}

/* Item */
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Question (button) */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #111;
  text-align: left;
}
.faq-q:hover {
  background: rgba(0, 0, 0, 0.02);
}

/* Icon */
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f5f6f7;
  color: #111;
  transition: transform 0.28s ease, background 0.28s ease;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: #111;
  color: #fff;
}

/* Answer region */
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.2, 0.95, 0.2, 1),
    padding 0.3s ease;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0));
}
.faq-a p {
  margin: 14px 0 20px;
  color: #444;
  line-height: 1.6;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

/* When open (JS toggles .open) */
.faq-item.open .faq-a {
  padding: 12px 20px 20px;
  max-height: 400px; /* enough for content; JS will further set precise height if needed */
}

/* Responsive */
@media (min-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .faq-search-wrapper input[type="search"] {
    width: 100%;
    min-width: 0;
  }
  .faq-search-wrapper {
    width: 100%;
    justify-content: center;
  }
}

/* subtle focus styles */
.faq-q:focus {
  outline: 3px solid rgba(0, 0, 0, 0.06);
  outline-offset: 3px;
  border-radius: 10px;
}

/* =========================
   JOTFORM CHAT — SAFE STYLE
   ========================= */

/* Only visual styling — no positioning overrides */
#form-agent-helper {
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25) !important;
  z-index: 99999 !important;

  /* DO NOT override position, height, bottom, left, transform */
}

/* Slight mobile polish — safe */
@media (max-width: 480px) {
  #form-agent-helper {
    border-radius: 20px !important;
    max-height: 75vh !important;   /* SAFE: does not break collapsed state */
  }
}

/* Avatar size */
.ai-agent-chat-avatar {
  width: 56px !important;
  height: 56px !important;
}

.ai-agent-chat-avatar img {
  height: 48px !important;
  width: auto !important;
}

/* Tooltip styling */
.ai-agent-chat-avatar-tooltip {
  font-size: 12px !important;
  padding: 4px 8px !important;
  max-width: 180px !important;
  border-radius: 6px !important;
}
