@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Manrope:wght@200..800&display=swap");

@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --black-100: #101010;
  --black-200: #070707;
  --black-300: #1f1f1f;
  --secondary-color: #000000;
  --primary-color: #ff4f01;
  --background: #fff6ec;
  --bricolage: Bricolage Grotesque, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--main-color);
  background: var(--background);
  font-weight: 400;
  line-height: 30px;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-100);
  font-family: Bricolage Grotesque, sans-serif;
}

.btn {
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin: 0 5px 10px 0;
  overflow: visible;
  border-radius: 50px;
  padding: 17px 34px;
  text-align: center;
  text-transform: none;
  transition: 0.3s;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.25);
  transition: all 0.5s;
}

.accordion-item [data-open="true"] span {
  background-color: var(--primary-color);
}

.is-sticky {
  animation: slideDown 0.35s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.slideUp {
  animation: slideUp 0.35s ease-out;
}
@keyframes slideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

.logo-slider {
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}
.logos-slide {
  display: flex;
  animation: 45s slide infinite linear;
}

.logos-slide img {
  max-width: 130px;
  height: auto;
  margin: 0 40px;
  object-fit: contain;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* ================================
   INDUSTRY CARDS
   ================================ */
.industry-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  padding: 45px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 79, 1, 0.12);
}
.industry-card:hover::before {
  transform: scaleX(1);
}
.industry-card .industry-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: rgba(255, 79, 1, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-card .industry-icon i {
  font-size: 36px;
  color: var(--primary-color);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-card:hover .industry-icon {
  background: var(--primary-color);
  border-radius: 50%;
}
.industry-card:hover .industry-icon i {
  color: #fff;
}
.industry-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.industry-card p {
  font-size: 15px;
  line-height: 26px;
  color: rgb(119, 119, 125);
  margin-bottom: 0;
}
.industry-card .industry-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-card:hover .industry-link {
  opacity: 1;
  transform: translateY(0);
}
.industry-card .industry-link i {
  transition: transform 0.3s;
}
.industry-card:hover .industry-link i {
  transform: translateX(4px);
}

/* ================================
   SEO CONTENT / WHY CHOOSE SECTION
   ================================ */
.seo-content-wrap {
  background: var(--black-200);
  border-radius: 40px;
  overflow: hidden;
}
.seo-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .seo-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
.seo-content-left {
  padding: 70px 60px;
}
.seo-content-left h2 {
  color: #fff;
  line-height: 55px;
  font-size: 42px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .seo-content-left h2 {
    font-size: 34px;
    line-height: 44px;
  }
}
@media (max-width: 767px) {
  .seo-content-left h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
.seo-content-left p.seo-lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 40px;
}
.seo-feature-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 20px;
}
.seo-feature-item:last-child {
  margin-bottom: 0;
}
.seo-feature-item:hover {
  border-color: rgba(255, 79, 1, 0.4);
  background: rgba(255, 79, 1, 0.05);
}
.seo-feature-item .seo-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  background: rgba(255, 79, 1, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-feature-item .seo-icon i {
  font-size: 26px;
  color: var(--primary-color);
}
.seo-feature-item h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.seo-feature-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
}
.seo-content-right {
  background: rgba(255, 79, 1, 0.08);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.seo-content-right .seo-stat {
  margin-bottom: 40px;
}
.seo-content-right .seo-stat:last-of-type {
  margin-bottom: 0;
}
.seo-content-right .seo-stat h4 {
  font-size: 60px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 8px;
}
.seo-content-right .seo-stat p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
}

/* ================================
   CONTACT / BOOK SECTION
   ================================ */
.contact-info-card {
  background: var(--black-200);
  border-radius: 20px;
  padding: 55px 50px;
}
.contact-info-card h2 {
  color: #fff;
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 15px;
}
.contact-info-card > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 35px;
}
.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}
.contact-detail-row:last-child {
  margin-bottom: 0;
}
.contact-detail-row .contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  background: rgba(255, 79, 1, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.contact-detail-row:hover .contact-icon {
  background: var(--primary-color);
}
.contact-detail-row .contact-icon i {
  font-size: 22px;
  color: var(--primary-color);
  transition: all 0.4s;
}
.contact-detail-row:hover .contact-icon i {
  color: #fff;
}
.contact-detail-row .detail-text h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}
.contact-detail-row .detail-text a,
.contact-detail-row .detail-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: color 0.3s;
}
.contact-detail-row .detail-text a:hover {
  color: var(--primary-color);
}
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 55px 50px;
  border: 1px solid #e5e5e5;
}
.contact-form-card .form-group {
  margin-bottom: 20px;
}
.contact-form-card .form-group:last-of-type {
  margin-bottom: 25px;
}
.contact-form-card label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black-100);
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  color: var(--black-100);
  transition: all 0.4s;
  outline: none;
  background: #fafafa;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 79, 1, 0.1);
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #aaa;
}
.contact-form-card textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-card .form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}
.contact-form-card .form-note {
  text-align: center;
  font-size: 13px;
  color: rgb(119, 119, 125);
  margin-top: 15px;
}

/* ================================
   FOOTER
   ================================ */
.footer-bg {
  background: var(--black-200);
}
.footer-top {
  padding: 80px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-about .footer-logo {
  font-size: 28px;
  font-weight: 700;
  font-family: Bricolage Grotesque, sans-serif;
  color: #fff;
  margin-bottom: 20px;
}
.footer-about .footer-logo span {
  color: var(--primary-color);
}
.footer-about .footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 25px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  transition: all 0.4s;
}
.footer-social a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.footer-heading {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li:last-child {
  margin-bottom: 0;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}
.footer-links a i {
  font-size: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-contact-item:last-child {
  margin-bottom: 0;
}
.footer-contact-item i {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 3px;
}
.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 26px;
}
.footer-contact-item a:hover {
  color: var(--primary-color);
}
.footer-bottom {
  padding: 25px 0;
}
.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
}
.footer-bottom p a {
  color: var(--primary-color);
  font-weight: 600;
}
.footer-bottom-links {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  transition: color 0.3s;
}
.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* Responsive fixes */
@media (max-width: 991px) {
  .seo-content-left {
    padding: 40px 30px;
  }
  .seo-content-right {
    padding: 40px 30px;
  }
  .seo-content-left h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .contact-info-card {
    padding: 40px 30px;
  }
  .contact-form-card {
    padding: 40px 30px;
  }
  .footer-top {
    padding: 50px 0 30px;
  }
}
@media (max-width: 767px) {
  .seo-content-left {
    padding: 30px 20px;
  }
  .seo-content-left h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .seo-content-right .seo-stat h4 {
    font-size: 40px;
  }
  .contact-info-card {
    padding: 30px 25px;
    margin-bottom: 10px;
  }
  .contact-form-card {
    padding: 30px 25px;
  }
  .footer-bottom-wrap {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-about .footer-logo {
    font-size: 24px;
  }
}

/* ================================
   Services dropdown (nav)
   ================================ */
@media (min-width: 992px) {
  #menu {
    overflow: visible !important;
  }
}
.has-dropdown {
  position: relative;
}
.has-dropdown .dropdown-arrow {
  transition: transform 0.3s;
  font-size: 16px;
}
.has-dropdown:hover .dropdown-arrow,
.has-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}
.has-dropdown .dropdown {
  list-style: none;
  margin: 0;
  padding: 10px;
  background: var(--black-200);
  border-radius: 14px;
  min-width: 320px;
  z-index: 80;
}
.has-dropdown .dropdown li {
  border: 0 !important;
}
.has-dropdown .dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--bricolage);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.3s;
}
.has-dropdown .dropdown a i {
  color: var(--primary-color);
  font-size: 18px;
}
.has-dropdown .dropdown a:hover,
.has-dropdown .dropdown a.active {
  background: rgba(255, 79, 1, 0.12);
  color: #fff;
}
.has-dropdown .dropdown .dropdown-head {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 14px 4px;
}
.has-dropdown .dropdown .dropdown-head .ri-arrow-right-line {
  margin-left: auto;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.35);
  transition: all 0.3s;
}
.has-dropdown .dropdown .dropdown-head:hover .ri-arrow-right-line {
  color: var(--primary-color);
  transform: translateX(3px);
}
.has-dropdown .dropdown .dropdown-sublinks {
  list-style: none;
  margin: 0;
  padding: 0 0 6px 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.has-dropdown .dropdown .dropdown-sublinks a {
  padding: 7px 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.has-dropdown .dropdown .dropdown-sublinks a:hover {
  background: transparent;
  color: var(--primary-color);
}
.has-dropdown .dropdown > li:last-child .dropdown-sublinks {
  border-bottom: 0;
  padding-bottom: 4px;
}
@media (min-width: 992px) {
  .has-dropdown .dropdown {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    width: 660px;
    display: flex;
    justify-content: space-between;
    gap: 6px;
    min-width: 0;
    transform: translateY(12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .has-dropdown .dropdown > .dropdown-group {
    flex: 1 1 0;
    min-width: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 6px;
  }
  .has-dropdown .dropdown > .dropdown-group:last-child {
    border-right: 0;
    padding-right: 0;
  }
  .has-dropdown .dropdown .dropdown-head {
    padding: 4px 10px 8px;
  }
  .has-dropdown .dropdown .dropdown-sublinks {
    border-bottom: 0;
    padding: 0 0 4px 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .has-dropdown .dropdown {
    width: 600px;
  }
  .has-dropdown .dropdown .dropdown-sublinks a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  #menu {
    position: fixed;
    top: 80px;
    left: 12px;
    right: 12px;
    width: auto;
    min-width: 0;
    max-height: calc(100vh - 96px);
    max-height: calc(100dvh - 96px);
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: var(--black-200);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(7, 7, 7, 0.35);
    padding: 10px;
  }
  .has-dropdown .dropdown {
    display: none;
    margin: 4px 10px 10px;
    min-width: 0;
  }
  .has-dropdown.open .dropdown {
    display: block;
  }
  .has-dropdown .dropdown a {
    color: rgba(255, 255, 255, 0.85);
  }
  .has-dropdown .dropdown a:hover,
  .has-dropdown .dropdown a.active {
    background: rgba(255, 79, 1, 0.14);
    color: #fff;
  }
  .has-dropdown .dropdown .dropdown-sublinks a {
    color: rgba(255, 255, 255, 0.6);
  }
  .has-dropdown .dropdown .dropdown-sublinks a:hover {
    background: transparent;
    color: var(--primary-color);
  }
  .has-dropdown .dropdown .dropdown-head {
    color: #fff;
  }
}

/* ================================
   Service page hero
   ================================ */
.page-hero {
  padding: 150px 0 40px;
}
.page-hero .hero-image {
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid #ece4d8;
  box-shadow: 0 30px 60px rgba(16, 16, 16, 0.14);
}
.page-hero .hero-image img {
  display: block;
  width: 100%;
  height: auto;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  color: #bbb;
}

/* ================================
   Shared service-page components
   ================================ */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 16px;
  line-height: 26px;
  color: #555;
}
.check-list li i {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}
.check-list strong {
  color: var(--black-100);
}

.feature-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 26px 22px;
  transition: all 0.4s;
}
.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 16, 16, 0.08);
}
.feature-card .feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 79, 1, 0.1);
  margin-bottom: 16px;
}
.feature-card .feature-icon i {
  color: var(--primary-color);
  font-size: 26px;
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--black-100);
}
.feature-card p {
  font-size: 14.5px;
  line-height: 24px;
  color: #666;
  margin: 0;
}

.info-panel {
  background: var(--black-200);
  color: #fff;
  border-radius: 20px;
  padding: 40px 38px;
}
.info-panel h2,
.info-panel h3 {
  color: #fff;
}
.info-panel .info-highlight {
  font-size: 44px;
  line-height: 50px;
  font-weight: 700;
  font-family: var(--bricolage);
  color: var(--primary-color);
}
.info-panel p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 27px;
}

.table-data {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  font-size: 15px;
}
.table-data th,
.table-data td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid #f0f0f0;
}
.table-data th {
  background: var(--black-200);
  color: #fff;
  font-family: var(--bricolage);
  font-weight: 600;
  font-size: 14px;
}
.table-data tr:last-child td {
  border-bottom: 0;
}
.table-data td {
  color: #444;
}
.table-data tr:hover td {
  background: #fffbf6;
}
.table-data i {
  color: var(--primary-color);
  margin-right: 8px;
}

.cta-panel {
  background: linear-gradient(120deg, var(--primary-color), #ff7a3d);
  border-radius: 22px;
  padding: 46px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-panel h2,
.cta-panel p {
  color: #fff;
}
.cta-panel p {
  opacity: 0.92;
  max-width: 620px;
  line-height: 27px;
}
.cta-panel .btn {
  background: #fff;
  color: var(--black-100);
  border-color: #fff;
  margin-top: 22px;
}
.cta-panel .btn:hover {
  background: var(--black-200);
  color: #fff;
}
.cta-panel::after {
  content: "\EA8D";
  font-family: "remixicon";
  font-size: 220px;
  position: absolute;
  right: 20px;
  bottom: -40px;
  opacity: 0.12;
}

.other-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.other-service {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.3s;
  color: var(--black-100);
  text-decoration: none;
}
.other-service:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  color: var(--primary-color);
}
.other-service i:first-child {
  font-size: 26px;
  color: var(--primary-color);
}
.other-service strong {
  font-family: var(--bricolage);
  font-size: 16px;
  font-weight: 600;
}

/* Honeypot + form success */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}
.faq-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 12px;
  cursor: pointer;
}
.faq-item summary {
  font-family: var(--bricolage);
  font-weight: 600;
  font-size: 17px;
  color: var(--black-100);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "\EA78";
  font-family: "remixicon";
  font-size: 20px;
  color: var(--primary-color);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-item p {
  margin: 12px 0 0;
  color: #555;
  line-height: 26px;
  font-size: 15px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto 30px;
  background: #eafaf1;
  border: 1px solid #b9e5c9;
  color: #175e38;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
}
.form-success i {
  font-size: 28px;
  color: #1f9d55;
  flex-shrink: 0;
}

.sec-title {
  font-family: var(--bricolage);
  font-weight: 600;
  color: var(--black-100);
  font-size: 40px;
  line-height: 52px;
  margin: 0 0 12px;
}
.sec-lead {
  font-size: 17px;
  line-height: 28px;
  margin: 0 auto 34px;
  max-width: 720px;
}
@media (max-width: 767px) {
.page-hero h1 {
  font-family: var(--bricolage);
  font-weight: 600;
  color: var(--black-100);
  font-size: 42px;
  line-height: 54px;
  margin-bottom: 20px;
}
.narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.sec-title {
    font-size: 30px;
    line-height: 40px;
  }
}
.section-space {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .section-space {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding-top: 130px;
  }
  .page-hero h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .info-panel {
    padding: 30px 24px;
  }
  .cta-panel {
    padding: 34px 26px;
  }
  .table-data th,
  .table-data td {
    padding: 10px 12px;
    font-size: 13px;
  }
}
/* ================================================================ */
/* Blog                                                             */
/* ================================================================ */
.blog-hero-pill {
  border: 1px solid #bebebe;
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
}

.blog-hero-pill i {
  color: var(--primary-color, #ff4f01);
}

.blog-cat-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.blog-cat-filter a {
  border: 1px solid #bebebe;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  color: var(--black-100, #101010);
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-cat-filter a:hover,
.blog-cat-filter a.active {
  background: var(--primary-color, #ff4f01);
  color: #fff;
  border-color: var(--primary-color, #ff4f01);
}

.blog-card {
  display: block;
  background: #fff;
  border: 1px solid #bebebe;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--black-100, #101010);
}

.blog-card:hover {
  border-color: var(--primary-color, #ff4f01);
  box-shadow: 0 18px 40px rgba(255, 79, 1, 0.08);
  transform: translateY(-4px);
}

.blog-card-media {
  position: relative;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: all 0.6s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 79, 1, 0.9);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: rgb(119, 119, 125);
}

.blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  margin: 10px 0;
}

.blog-card:hover h3 {
  color: var(--primary-color, #ff4f01);
}

.blog-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: rgb(119, 119, 125);
}

.blog-card-footer {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--primary-color, #ff4f01);
}

/* single post */
.blog-single-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.blog-single-cover {
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #ccc;
}

.blog-single-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
  color: rgb(119, 119, 125);
  align-items: center;
}

.blog-single-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.blog-single-meta a {
  color: var(--primary-color, #ff4f01);
  font-weight: 500;
}

.blog-content {
  font-size: 17px;
  line-height: 30px;
  color: #2b2b2b;
}

.blog-content h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  margin: 34px 0 14px;
  color: var(--black-200, #070707);
  font-family: "Bricolage Grotesque", sans-serif;
  scroll-margin-top: 120px;
}

.blog-content h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin: 26px 0 10px;
  color: var(--black-200, #070707);
  scroll-margin-top: 120px;
}

.blog-content p {
  margin-bottom: 16px;
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 20px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-content ul li {
  list-style: none;
  position: relative;
  padding-left: 22px;
}

.blog-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color, #ff4f01);
}

.blog-content ol {
  list-style: decimal;
}

.blog-content ol li::marker {
  color: var(--primary-color, #ff4f01);
  font-weight: 600;
}

.blog-content a:not(.btn) {
  color: var(--primary-color, #ff4f01);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-content a:not(.btn):hover {
  color: #c73d00;
}

.blog-content blockquote {
  border-left: 4px solid var(--primary-color, #ff4f01);
  background: #fff6ec;
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 18px;
  line-height: 30px;
  margin: 22px 0;
}

.blog-callout {
  background: #fff6ec;
  border: 1px solid rgba(255, 79, 1, 0.35);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 22px 0;
}

.blog-callout h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--black-200, #070707);
  margin-bottom: 8px;
}

.blog-callout h4 i {
  color: var(--primary-color, #ff4f01);
}

.blog-callout p {
  margin-bottom: 0;
  color: #2b2b2b;
}

.blog-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 16px;
}

.blog-table th,
.blog-table td {
  border: 1px solid #bebebe;
  padding: 12px 16px;
  text-align: left;
  line-height: 24px;
}

.blog-table th {
  background: var(--black-200, #070707);
  color: #fff;
  font-weight: 500;
}

.blog-table tr:nth-child(even) td {
  background: #fff6ec;
}

.blog-author-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--black-200, #070707);
  border-radius: 16px;
  padding: 22px 26px;
  margin-top: 36px;
}

.blog-author-box img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.blog-author-box h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.blog-author-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 24px;
}

.blog-section-cta {
  margin-top: 100px;
}

@media (max-width: 991px) {
  .blog-section-cta {
    margin-top: 56px;
  }
}

.blog-inline-img {
  margin: 26px 0;
}

.blog-inline-img img {
  width: 100%;
  border: 6px solid #ccc;
  border-radius: 14px;
  display: block;
}

.blog-inline-img .blog-inline-caption {
  display: block;
  text-align: center;
  font-size: 14px;
  color: rgb(119, 119, 125);
  margin-top: 10px;
}
