:root {
  --text-blue: #2b4190;
  --text-orange: #f55609;
  --text-dark: #212529;
  --pure-white: #ffffff;
  --text-grey: #f7f7f7;
}

/* Typography & Colors */
.text-orange {
  color: var(--text-orange);
}
.text-blue {
  color: var(--text-blue);
}
.fw-500 {
  font-weight: 500;
}
.grey-bg {
  background-color: var(--text-grey);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

/* Paragraphs & general text */
body,
p,
li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
}

/* Spacing */
.section-padding {
  padding-block: 5%;
}

/* Feature bullet */
.feature-bullet {
  background-color: var(--text-blue);
  width: 50px;
  height: 50px;
}

.feature-bullet i {
  font-size: 26px;
}

/* Campaign contact section */
.campaigne-contact-section {
  background-image: linear-gradient(
      rgba(15, 11, 47, 0.9),
      rgba(15, 11, 47, 0.7)
    ),
    url(/sites/default/files/campaign/campaign-contact-bg.webp);
  background-size: cover;
  width: 100%;
}

/* Custom pill */
.custom-pill {
  background-color: var(--text-orange);
  color: var(--pure-white);
}

/* Clients section */
.our-clients .slider-section {
  padding: 20px 0;
}
.our-clients .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-clients .swiper-slide img {
  max-width: 150px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.our-clients .swiper-slide img:hover {
  opacity: 1;
}

/* Service Card */
.service-card {
  border-radius: 16px;
  background: #fff;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.service-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  transition: all 0.25s ease;
}

/* Icon Circle */
.bg-orange {
  background: #ff5b1e;
}
.service-icon {
  width: 56px;
  height: 56px;
  font-size: 22px;
  box-shadow: 0 6px 14px rgba(255, 91, 30, 0.35);
}

/* Title + underline accent */
.service-title {
  letter-spacing: 0.2px;
}
.service-underline {
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #ff5b1e, rgba(255, 91, 30, 0.2));
}

/* Image styling */
.service-media img {
  display: block;
  width: 100%;
  height: auto;
}

/* Orange button */
.btn-orange {
  background: linear-gradient(90deg, #ff5b1e, #ff7a3c);
  color: #fff !important;
  border: none !important;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease !important;
  will-change: transform;
}
.btn-orange:hover {
  transform: scale(1.06);
  color: var(--pure-white);
}

/* Feature pill */
.feature-pill i {
  width: 50px;
  height: 50px;
  background-color: var(--text-orange);
  color: var(--pure-white);
  display: flex;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  font-size: 18px;
}

/* Get in touch & contact locations */
.getintouch-section,
.contact-locations {
  background-image: linear-gradient(
      rgba(15, 11, 47, 0.9),
      rgba(15, 11, 47, 0.7)
    ),
    url(/sites/default/files/campaign/campaign-getintouch.webp);
  background-size: cover;
  width: 100%;
}
.contact-locations {
  background-image: linear-gradient(
      rgba(15, 11, 47, 0.9),
      rgba(15, 11, 47, 0.7)
    ),
    url(/sites/default/files/campaign/process-bg.webp);
}
.contact-locations .card {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* Accent color helper */
.text-orange {
  color: #ff5b1e;
}

/* FAQ Section */
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0 45% 0 0;
  background-image: radial-gradient(
    rgba(0, 0, 0, 0.06) 1.2px,
    transparent 1.2px
  );
  background-size: 12px 12px;
  pointer-events: none;
}
.faq-accordion .accordion-item {
  background: #fff;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  padding: 1rem 1.25rem;
  box-shadow: none;
  background: #fff;
  border: none;
}
.faq-accordion .accordion-button.collapsed {
  background: #fff;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(255, 91, 30, 0.08);
  color: #ff5b1e;
}

/* Accordion icon */
.faq-accordion .accordion-button::after {
  content: "+";
  background: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ff5b1e;
  transform: none;
  margin-left: auto;
}
.faq-accordion .accordion-button[aria-expanded="true"]::after {
  content: "–";
  background: #ff5b1e;
  color: #fff;
  border-color: #ff5b1e;
}

/* Curved layered bars */
.faq-image-wrap {
  position: relative;
  display: inline-block;
}
.curve {
  position: absolute;
  left: 16%;
  right: 0;
  height: 14px;
  bottom: -12px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  transform: skewX(-12deg);
}
.curve-dark {
  background: #1f2438;
  bottom: -12px;
}
.curve-blue {
  background: #2b4190;
  bottom: -26px;
  left: 22%;
}
.curve-orange {
  background: #ff5b1e;
  bottom: -40px;
  left: 28%;
}

/* Campaigne services */
.campaigne-services {
  background-image: url(/sites/default/files/campaign/contact-address.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* ===========================
   Responsive Styles
   =========================== */

@media (max-width: 1025px) {
  .mini-cta {
    gap: 0.5rem !important;
  }
}

@media (max-width: 991.98px) {
  .faq-section::before {
    inset: 55% 0 0 0;
  }
  .curve {
    left: 0;
    transform: skewX(-8deg);
  }
  .mini-cta {
    gap: 0.5rem !important;
  }
  .campaigne-contact-section .custom-pill {
    /* flex: 0 0 40%; */
  }
}
@media (max-width: 427px) {
  .mini-cta {
    margin-bottom: 30px;
  }
  .contact-desc .d-inline-flex {
    margin-top: 30px;
  }
}
@media (max-width: 325px) {
  .mini-cta {
    text-align: center;
    flex-direction: column;
  }
}
/* Accordion body reveal on hover */
.accordion-collapse-hover {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item:hover .accordion-collapse-hover {
  max-height: 500px; /* adjust for long answers */
}

/* Add + and – toggle icons */
.accordion-button {
  position: relative;
  padding-right: 2rem; /* space for icon */
}

.accordion-button::after {
  content: "+"; /* default icon */
  position: absolute;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s, content 0.3s;
}

/* When hovered, switch to minus */
.accordion-item:hover .accordion-button::after {
  content: "-";
}

.mini-cta {
  gap: 1.5rem;
}
