.elementor-kit-12{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-kadence1:#2B6CB0;--e-global-color-kadence2:#215387;--e-global-color-kadence3:#1A202C;--e-global-color-kadence4:#2D3748;--e-global-color-kadence5:#4A5568;--e-global-color-kadence6:#718096;--e-global-color-kadence7:#EDF2F7;--e-global-color-kadence8:#F7FAFC;--e-global-color-kadence9:#ffffff;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-12.el-is-editing{--global-palette1:#2B6CB0;--global-palette2:#215387;--global-palette3:#1A202C;--global-palette4:#2D3748;--global-palette5:#4A5568;--global-palette6:#718096;--global-palette7:#EDF2F7;--global-palette8:#F7FAFC;--global-palette9:#ffffff;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.elementor-widget:not(:last-child){margin-bottom:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1025px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:768px;}}/* Start custom CSS *//* ===================================================
   GLOBAL HERO & SERVICES STYLES
   (Reusable across future sections)
   =================================================== */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* Main Container */
.multifaceted-hero-section {
  background-color: transparent;
  color: #ffffff;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
}

/* Typography */
.m-subtitle {
  color: #3b82f6;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.m-title {
  color: #d1d5db;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 auto 20px auto;
  letter-spacing: -1px;
}

.m-highlight {
  color: #2563eb;
  display: block;
}

.m-description {
  color: #9ca3af;
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto 32px auto;
  max-width: 720px;
}

/* Button Group */
.m-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  box-sizing: border-box;
}

.m-btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  border: 1px solid #2563eb;
}

.m-btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff;
}

.m-arrow {
  margin-left: 8px;
  font-size: 18px;
  line-height: 1;
}

.m-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #27272a;
}

.m-btn-secondary:hover {
  border-color: #52525b;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* Services Grid Container */
.m-services-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 36px;
  width: 100%;
}

.m-services-grid {
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax(110px, 1fr) );
  gap: 20px 12px;
  justify-items: center;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.m-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

/* Hexagon Frame & Glow Effects */
.m-hexagon {
  width: 64px;
  height: 74px;
  background-color: rgba(11, 15, 23, 0.7);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: hexGlow 3s infinite ease-in-out alternate;
  overflow: hidden;
}

.m-hexagon::before {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: #05070a;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 1;
}

/* Shimmer Line */
.m-hexagon::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  z-index: 3;
  animation: shineSweep 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.m-service-item:nth-child(1) .m-hexagon::after { animation-delay: 0s; }
.m-service-item:nth-child(2) .m-hexagon::after { animation-delay: 0.5s; }
.m-service-item:nth-child(3) .m-hexagon::after { animation-delay: 1.0s; }
.m-service-item:nth-child(4) .m-hexagon::after { animation-delay: 1.5s; }
.m-service-item:nth-child(5) .m-hexagon::after { animation-delay: 2.0s; }
.m-service-item:nth-child(6) .m-hexagon::after { animation-delay: 2.5s; }
.m-service-item:nth-child(7) .m-hexagon::after { animation-delay: 3.0s; }

.m-hexagon svg {
  width: 26px;
  height: 26px;
  color: #3b82f6;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  animation: iconFloat 3s infinite ease-in-out alternate;
}

/* Hover States */
.m-service-item:hover .m-hexagon {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 0 10px #3b82f6);
  animation-play-state: paused;
}

.m-service-item:hover .m-hexagon svg {
  color: #ffffff;
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px #ffffff);
}

.m-service-item:hover .m-service-label {
  color: #ffffff;
}

.m-service-label {
  color: #d1d5db;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.5px;
  text-align: center;
  transition: color 0.3s ease;
}

/* Tagline Bar */
.m-tagline-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  color: #9ca3af;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  flex-wrap: wrap;
}

.m-divider {
  color: #2563eb;
  font-weight: 300;
}

/* Keyframe Animations */
@keyframes shineSweep {
  0% { left: -150%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

@keyframes hexGlow {
  0% { filter: drop-shadow(0 0 2px rgba(37, 99, 235, 0.4)); }
  100% { filter: drop-shadow(0 0 7px rgba(59, 130, 246, 0.8)); }
}

@keyframes iconFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-2px); }
}


.m-service-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
  cursor: pointer;
}

/* Hover effects for hexagon and labels */
.m-service-link:hover .m-hexagon {
  border-color: #2563eb !important;
  color: #2563eb !important;
  transform: translateY(-3px);
  transition: all 0.2s ease-in-out;
}

.m-service-link:hover .m-service-label {
  color: #2563eb !important;
  transition: color 0.2s ease-in-out;
}


/* ===================================================
   MOBILE BREAKPOINTS & RESPONSIVE FIXES
   =================================================== */

@media (max-width: 640px) {
  .multifaceted-hero-section {
    padding: 24px 16px;
  }

  .m-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .m-btn {
    width: 100%;
    padding: 14px 20px;
  }

  /* Grid layout for small mobile screens: 2 columns */
  .m-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }

  .m-service-label {
    font-size: 10.5px;
  }

  .m-tagline-bar {
    gap: 8px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .m-divider {
    display: inline-block;
  }
}

/* Extra small screens (3-column icon flow where space allows) */
@media (min-width: 420px) and (max-width: 640px) {
  .m-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}



/* ===================================================
   GLOBAL MOBILE CENTER ALIGNMENT
   (Applies to current & upcoming custom sections)
   =================================================== */

@media (max-width: 640px) {
  /* Center align section headers */
  .wwd-section,
  .about-section {
    text-align: center !important;
  }

  .wwd-title,
  .about-title {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Center align card content and icons for "What We Do" */
  .wwd-card {
    align-items: center !important;
    text-align: center !important;
  }

  .wwd-icon-box {
    justify-content: center !important;
  }

  /* Center align list content and left border for "About Us" */
  .about-item {
    text-align: center !important;
    border-left: none !important;
    border-top: 2px solid #2563eb !important;
    padding-left: 0 !important;
    padding-top: 16px !important;
  }
}





/* ===================================================
   WHAT WE DO - SERVICES GRID SECTION
   =================================================== */

.wwd-section {
  background-color: transparent;
  color: #ffffff;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

/* Header Styling */
.wwd-subtitle {
  color: #3b82f6;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.wwd-title {
  color: #ffffff;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 50px 0;
  max-width: 650px;
  letter-spacing: -1px;
}

/* Grid Container with Shared Inner Borders */
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background-color: rgba(13, 17, 23, 0.6);
  overflow: hidden;
}

/* Individual Service Cards */
.wwd-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}

/* Remove outer right borders on row ends */
.wwd-card:nth-child(4n) {
  border-right: none;
}

/* Remove bottom borders on last row */
.wwd-card:nth-child(n+5) {
  border-bottom: none;
}

.wwd-card:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* SVG Icon Container */
.wwd-icon-box {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease, color 0.3s ease;
}

.wwd-icon-box svg {
  width: 28px;
  height: 28px;
}

.wwd-card:hover .wwd-icon-box {
  transform: translateY(-3px);
  color: #60a5fa;
}

/* Card Content Typography */
.wwd-card-title {
  color: #ffffff;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.wwd-card-desc {
  color: #9ca3af;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* ===================================================
   RESPONSIVE MOBILE & TABLET BREAKPOINTS
   =================================================== */

@media (max-width: 1024px) {
  .wwd-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wwd-card:nth-child(4n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .wwd-card:nth-child(2n) {
    border-right: none;
  }

  .wwd-card:nth-child(n+5) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .wwd-card:nth-child(n+7) {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .wwd-section {
    padding: 50px 16px;
  }

  .wwd-title {
    margin-bottom: 32px;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
  }

  .wwd-card {
    padding: 28px 20px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  .wwd-card:last-child {
    border-bottom: none !important;
  }
}






/* ===================================================
   ABOUT US / STRATEGY DECK SECTION
   =================================================== */

.about-section {
  background-color: transparent;
  color: #ffffff;
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

/* Header Styling */
.about-subtitle {
  color: #3b82f6;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.about-title {
  color: #ffffff;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 48px 0;
  max-width: 750px;
  letter-spacing: -1px;
}

/* Feature List with Left Accent Border */
.about-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-item {
  border-left: 2px solid #2563eb;
  padding-left: 24px;
  position: relative;
  transition: border-color 0.3s ease;
}

.about-item:hover {
  border-left-color: #60a5fa;
}

.about-item-title {
  color: #ffffff;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.about-item-desc {
  color: #9ca3af;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  max-width: 780px;
}

/* ===================================================
   MOBILE BREAKPOINTS
   =================================================== */

@media (max-width: 640px) {
  .about-section {
    padding: 50px 16px;
  }

  .about-title {
    margin-bottom: 36px;
  }

  .about-list {
    gap: 28px;
  }

  .about-item {
    padding-left: 16px;
    border-left-width: 2px;
  }

  .about-item-title {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .about-item-desc {
    font-size: 14.5px;
    line-height: 1.55;
  }
}





/* ===================================================
   HOW WE WORK - PROCESS SECTION
   =================================================== */

.hww-section {
  background-color: transparent;
  color: #ffffff;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

/* Header Styling */
.hww-subtitle {
  color: #3b82f6;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.hww-title {
  color: #ffffff;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 48px 0;
  letter-spacing: -1px;
}

/* 4-Column Grid */
.hww-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* Step Card */
.hww-card {
  background-color: rgba(13, 17, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
}

.hww-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background-color: rgba(255, 255, 255, 0.02);
  transform: translateY(-4px);
}

/* Step Number */
.hww-step-num {
  color: #2563eb;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

/* Step Title & Description */
.hww-card-title {
  color: #ffffff;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.hww-card-desc {
  color: #9ca3af;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Bottom Note Bar */
.hww-footer-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9ca3af;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.hww-badge-icon {
  color: #2563eb;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hww-badge-icon svg {
  width: 100%;
  height: 100%;
}

/* ===================================================
   RESPONSIVE BREAKPOINTS & MOBILE CENTER ALIGNMENT
   =================================================== */

@media (max-width: 1024px) {
  .hww-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .hww-section {
    padding: 50px 16px;
    text-align: center !important;
  }

  .hww-title {
    margin-bottom: 32px;
  }

  .hww-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hww-card {
    padding: 28px 20px;
    align-items: center !important;
    text-align: center !important;
  }

  .hww-step-num {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .hww-footer-note {
    justify-content: center !important;
    font-size: 13px;
    line-height: 1.5;
  }
}


/* ===================================================
   CLIENT REVIEWS / TESTIMONIALS SECTION
   =================================================== */

.reviews-section {
  background-color: transparent;
  color: #ffffff;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

/* Header Styling */
.reviews-subtitle {
  color: #3b82f6;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.reviews-title {
  color: #ffffff;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 48px 0;
  letter-spacing: -1px;
}

/* 3-Column Grid Layout */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Review Card Styling */
.review-card {
  background-color: rgba(13, 17, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
}

.review-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background-color: rgba(255, 255, 255, 0.02);
  transform: translateY(-4px);
}

/* Star Rating */
.review-stars {
  display: flex;
  gap: 4px;
  color: #2563eb;
  margin-bottom: 24px;
}

.review-star-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Review Text */
.review-quote {
  color: #9ca3af;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 32px 0;
  font-weight: 400;
}

/* Divider Line */
.review-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 0 20px 0;
}

/* Author Info */
.review-author-name {
  color: #ffffff;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.review-author-role {
  color: #6b7280;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  margin: 0;
  font-weight: 400;
}

/* ===================================================
   RESPONSIVE BREAKPOINTS & MOBILE CENTER ALIGNMENT
   =================================================== */

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .reviews-section {
    padding: 50px 16px;
    text-align: center !important;
  }

  .reviews-title {
    margin-bottom: 32px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 28px 20px;
    align-items: center !important;
    text-align: center !important;
  }

  .review-stars {
    justify-content: center !important;
    margin-bottom: 20px;
  }

  .review-quote {
    font-size: 14.5px;
    margin-bottom: 24px;
  }

  .review-divider {
    width: 100%;
  }
}


/* ===================================================
   FAQ ACCORDION SECTION
   =================================================== */

.faq-section {
  background-color: transparent;
  color: #ffffff;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

/* 2-Column Split Layout */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* Left Column Styling */
.faq-subtitle {
  color: #3b82f6;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.faq-title {
  color: #ffffff;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
}

.faq-subtext {
  color: #9ca3af;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.faq-phone-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.faq-phone-link:hover {
  color: #60a5fa;
  text-decoration: underline;
}

/* Accordion List Styling */
.faq-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Native Details Tag Reset & Custom Styling */
.faq-item details {
  width: 100%;
}

.faq-item summary {
  padding: 24px 0;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: #3b82f6;
}

/* Chevron Icon Animation */
.faq-icon {
  width: 18px;
  height: 18px;
  color: #3b82f6;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item details[open] .faq-icon {
  transform: rotate(180deg);
}

/* Collapsible Content */
.faq-answer {
  color: #9ca3af;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  padding-bottom: 24px;
  margin: 0;
}

/* ===================================================
   RESPONSIVE BREAKPOINTS & MOBILE CENTER ALIGNMENT
   =================================================== */

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 50px 16px;
  }

  .faq-header {
    text-align: center !important;
  }

  .faq-title {
    margin-bottom: 16px;
  }

  .faq-subtext {
    font-size: 14px;
  }

  .faq-item summary {
    padding: 18px 0;
    font-size: 15.5px;
    text-align: left; /* Kept left-aligned inside accordions for natural reading flow */
  }

  .faq-answer {
    font-size: 14px;
    text-align: left;
  }
}




/* ===================================================
   CONTACT US SECTION
   =================================================== */

.contact-section {
  background-color: transparent;
  color: #ffffff;
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

/* Header Styling */
.contact-subtitle {
  color: #3b82f6;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.contact-title {
  color: #ffffff;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
  max-width: 650px;
}

.contact-desc {
  color: #9ca3af;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: 650px;
  font-weight: 400;
}

/* Contact Details List */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: #3b82f6;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-text,
.contact-link {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #60a5fa;
  text-decoration: underline;
}

/* ===================================================
   RESPONSIVE BREAKPOINTS & MOBILE CENTER ALIGNMENT
   =================================================== */

@media (max-width: 640px) {
  .contact-section {
    padding: 50px 16px;
    text-align: center !important;
  }

  .contact-title,
  .contact-desc {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .contact-title {
    margin-bottom: 16px;
  }

  .contact-desc {
    font-size: 14.5px;
    margin-bottom: 32px;
  }

  .contact-info-list {
    align-items: center !important;
    gap: 18px;
  }

  .contact-info-item {
    justify-content: center !important;
  }

  .contact-text,
  .contact-link {
    font-size: 15px;
  }
}





/* ===================================================
   FOOTER SECTION
   =================================================== */

.footer-links {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-links li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer {
  background-color: transparent;
  color: #ffffff;
  padding: 80px 20px 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

/* 4-Column Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.1fr;
  gap: 40px;
}

/* Column 1: Brand Info */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-brand-title {
  color: #ffffff;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-desc {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px 0;
  font-weight: 400;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon-btn:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.05);
}

.social-icon-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Section Titles */
.footer-column-title {
  color: #ffffff;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

/* Navigation Lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Get In Touch Column */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text,
.footer-contact-link {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: #ffffff;
}

/* ===================================================
   RESPONSIVE BREAKPOINTS & MOBILE LAYOUT
   =================================================== */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 50px 16px 30px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center !important;
  }

  .footer-brand {
    justify-content: center !important;
  }

  .footer-socials {
    justify-content: center !important;
  }

  .footer-contact-item {
    justify-content: center !important;
    text-align: center !important;
  }
}


/* ===================================================
   FIX THEME BOTTOM FOOTER / COPYRIGHT BAR
   =================================================== */

/* Force theme footer containers to expand full width & match dark background */
footer,
.site-footer,
.footer-bottom,
.footer-copyright,
.copyright-bar,
.ast-small-footer,
.site-below-footer-wrap {
  background-color: #0D1116 !important; /* Matches your dark background */
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* Ensure copyright text inside stays centered and properly colored */
.footer-bottom *,
.footer-copyright *,
.copyright-bar * {
  color: #9ca3af !important;
}

/* Optional: Hide theme bottom bar completely if you don't want it */
/* 
.footer-bottom, 
.copyright-bar { 
  display: none !important; 
} 
*/


/* Ensure all social buttons match exact dimensions */
.social-icon-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 6px !important;
  color: #9ca3af !important;
  transition: all 0.2s ease-in-out !important;
}

/* Force SVG sizing to match Font Awesome icons */
.social-icon-btn svg.social-svg {
  width: 14px !important;
  height: 14px !important;
  stroke: #9ca3af !important;
  transition: stroke 0.2s ease-in-out !important;
}

/* Hover State: Changes Border, Font Color, and SVG Stroke to Blue */
.social-icon-btn:hover {
  color: #2563eb !important;
  border-color: #2563eb !important;
  background-color: rgba(37, 99, 235, 0.1) !important;
}

.social-icon-btn:hover svg.social-svg {
  stroke: #2563eb !important;
}/* End custom CSS */