/* =============== ROOT VARIABLES =============== */
:root {
  --c-primary: #ff7300;
  --c-accent: #11af4b;
  --c-bg: #fafafc;
  --c-bg-alt: #fff;
  --c-txt-main: #1a1a1b;
  --c-txt-light: #fff;
  --nav-height: 110px; /* Increased from 64px to accommodate 100px logo */
  --font-h1: 1.75rem;
  --font-h2: 1.2rem;
  --font-paragraph: 1rem;
  --font-weight-bold: 700;
}

/* =============== RESET =============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--c-txt-main);
  background: var(--c-bg);
  line-height: 1.6;
}

/* =============== NAVBAR SECTION START =============== */
.ar-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--c-bg-alt);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.ar-nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ar-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
}

.ar-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain; /* Ensures logo maintains aspect ratio */
}

.ar-logo-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ar-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-txt-main);
}

.ar-logo-tagline {
  font-size: 0.65rem;
  font-style: italic;
  font-weight: 400;
  color: var(--c-txt-alt);
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.ar-hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.ar-hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--c-txt-main);
  transition: all 0.3s ease;
}

.ar-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ar-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.ar-nav-links a {
  text-decoration: none;
  color: var(--c-txt-main);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.ar-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width 0.3s ease;
}

.ar-nav-links a:hover::after,
.ar-nav-links a.active::after {
  width: 100%;
}

.ar-download-btn {
  padding: 0.7rem 1.5rem;
  background: var(--c-primary);
  color: var(--c-txt-light);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ar-download-btn:hover {
  background: var(--c-accent);
  transform: translateY(-2px);
}

/* =============== NAVBAR RESPONSIVE =============== */

/* Small Tablets and Mobile Landscape: 601px - 768px */
@media (min-width: 601px) and (max-width: 768px) {
  .ar-hamburger {
    display: flex;
  }

  .ar-logo-img {
    width: 70px;
    height: 70px;
  }

  .ar-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--c-bg-alt);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 2rem 2rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 102;
    overflow-y: auto;
  }

  .ar-nav-menu.active {
    right: 0;
  }

  .ar-nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .ar-nav-links li {
    width: 100%;
  }

  .ar-nav-links a {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .ar-download-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .ar-navbar::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 101;
  }

  .ar-navbar.menu-open::after {
    opacity: 1;
    visibility: visible;
  }
}

/* Mobile Portrait: 481px - 600px */
@media (min-width: 481px) and (max-width: 600px) {
  .ar-hamburger {
    display: flex;
  }

  .ar-logo-img {
    width: 60px;
    height: 60px;
  }

  .ar-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--c-bg-alt);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 2rem 2rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 102;
    overflow-y: auto;
  }

  .ar-nav-menu.active {
    right: 0;
  }

  .ar-nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .ar-nav-links li {
    width: 100%;
  }

  .ar-nav-links a {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .ar-download-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .ar-navbar::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 101;
  }

  .ar-navbar.menu-open::after {
    opacity: 1;
    visibility: visible;
  }

  .ar-navbar {
    padding: 0.8rem 3vw;
  }

  .ar-logo-text {
    font-size: 1.2rem;
  }
}

/* Extra Small Mobile: 320px - 480px */
@media (max-width: 480px) {
  .ar-hamburger {
    display: flex;
  }

  .ar-logo-img {
    width: 50px;
    height: 50px;
  }

  .ar-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--c-bg-alt);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 1.5rem 2rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 102;
    overflow-y: auto;
  }

  .ar-nav-menu.active {
    right: 0;
  }

  .ar-nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .ar-nav-links li {
    width: 100%;
  }

  .ar-nav-links a {
    display: block;
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
  }

  .ar-download-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.9rem;
    font-size: 1rem;
  }

  .ar-navbar::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 101;
  }

  .ar-navbar.menu-open::after {
    opacity: 1;
    visibility: visible;
  }

  .ar-navbar {
    padding: 0.7rem 3vw;
  }

  .ar-logo-text {
    font-size: 1.1rem;
  }
}
/* =============== NAV SECTION END =============== */

/* =============== SERVICES HERO SECTION =============== */
#services-hero-main {
  background: linear-gradient(135deg, #fafafc 0%, #f5f7fa 100%);
  min-height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: var(--nav-height);
  padding: 3rem 0 5rem;
  display: flex;
  align-items: center;
}

/* =============== ANIMATED ABSTRACT BACKGROUND =============== */
.services-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(at 20% 30%, rgba(255, 115, 0, 0.05) 0px, transparent 50%),
    radial-gradient(at 80% 20%, rgba(17, 175, 75, 0.05) 0px, transparent 50%),
    radial-gradient(at 40% 80%, rgba(59, 130, 246, 0.05) 0px, transparent 50%),
    radial-gradient(at 90% 70%, rgba(255, 115, 0, 0.04) 0px, transparent 50%);
  animation: mesh-shift 15s ease-in-out infinite;
}

@keyframes mesh-shift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  mix-blend-mode: multiply;
  animation-duration: 20s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.12) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  animation-name: blob-float-1;
}

.blob-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(17, 175, 75, 0.12) 0%, transparent 70%);
  top: 10%;
  right: -100px;
  animation-name: blob-float-2;
  animation-duration: 25s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: 20%;
  animation-name: blob-float-3;
  animation-duration: 22s;
}

.blob-4 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.08) 0%, transparent 70%);
  bottom: 15%;
  right: 15%;
  animation-name: blob-float-4;
  animation-duration: 28s;
}

@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(-40px, 50px) rotate(120deg) scale(1.08); }
  66% { transform: translate(30px, -40px) rotate(240deg) scale(0.92); }
}

@keyframes blob-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, -50px) scale(1.1); }
}

@keyframes blob-float-4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(40px, -30px) rotate(90deg); }
  50% { transform: translate(-20px, 50px) rotate(180deg); }
  75% { transform: translate(50px, 30px) rotate(270deg); }
}

/* =============== CONTAINER =============== */
.services-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  position: relative;
  z-index: 2;
}

/* =============== TOP BADGE =============== */
.services-top-badge {
  margin-bottom: 1.5rem;
}

.badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #4b5563;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}

.badge-inner svg {
  color: #11af4b;
  flex-shrink: 0;
}

/* =============== HERO GRID =============== */
.services-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* =============== LEFT CONTENT =============== */
.services-hero-content {
  max-width: 600px;
}

.services-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #1a1a1b;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.services-title-gradient {
  display: block;
  color: #ff7300;
  margin-top: 0.5rem;
}

.services-hero-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* =============== BENEFITS GRID =============== */
.services-benefits-grid {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: nowrap;
  flex-direction: row;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #4b5563;
  white-space: nowrap;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(17,175,75,0.1);
  color: #11af4b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =============== CTA BUTTONS =============== */
.services-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.services-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  border: none;
  background: #ff7300;
  color: white;
  box-shadow: 0 6px 20px rgba(255,115,0,0.3);
  position: relative;
  overflow: hidden;
}

.services-btn-primary:hover {
  background: #e66800;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,115,0,0.4);
}

.services-btn-primary:hover svg {
  transform: translateX(4px);
}

.services-btn-primary svg {
  transition: transform 0.3s ease;
  color: white;
}

.services-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  border: 2px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #4b5563;
  position: relative;
  overflow: hidden;
}

.services-btn-secondary:hover {
  background: #11af4b;
  border-color: #11af4b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(17, 175, 75, 0.3);
}

.services-btn-secondary:hover svg {
  color: white;
  transform: scale(1.1);
}

.services-btn-secondary svg {
  color: #4b5563;
  transition: all 0.3s ease;
}

/* =============== RIGHT CARDS =============== */
.services-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 480px;
}

/* =============== FEATURED CARD =============== */
.service-featured-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 2px solid rgba(255,115,0,0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
  border-color: #ff7300;
}

.service-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ff7300;
}

.featured-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.featured-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,115,0,0.1);
  color: #ff7300;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-featured-card:hover .featured-icon {
  transform: scale(1.1) rotate(5deg);
}

.featured-badge {
  background: rgba(255,115,0,0.1);
  color: #ff7300;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35em 0.8em;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1b;
  margin-bottom: 0.6rem;
}

.featured-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.featured-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  padding: 1rem;
  background: rgba(250,250,252,0.8);
  border-radius: 10px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1b;
}

.stat-label {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 600;
}

.featured-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ff7300;
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.featured-cta:hover {
  background: #e66800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,115,0,0.3);
}

.featured-cta:hover svg {
  transform: translateX(4px);
}

.featured-cta svg {
  transition: transform 0.3s ease;
  color: white;
}

/* =============== MINI CARDS GRID WITH 3D PERSPECTIVE =============== */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-mini-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 1.2rem 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.service-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #ff7300;
}

/* =============== ICON - GROWS ON HOVER =============== */
.mini-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: scale(1);
}

.service-mini-card:hover .mini-card-icon {
  transform: scale(1.3) rotateZ(15deg);
}

.icon-green {
  background: rgba(17,175,75,0.1);
  color: #11af4b;
}

.service-mini-card:hover .icon-green {
  background: #11af4b;
  color: white;
  box-shadow: 0 8px 20px rgba(17, 175, 75, 0.4);
}

.icon-blue {
  background: rgba(59,130,246,0.1);
  color: #3b82f6;
}

.service-mini-card:hover .icon-blue {
  background: #3b82f6;
  color: white;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.icon-purple {
  background: rgba(86,97,233,0.1);
  color: #5661e9;
}

.service-mini-card:hover .icon-purple {
  background: #5661e9;
  color: white;
  box-shadow: 0 8px 20px rgba(86, 97, 233, 0.4);
}

.icon-orange {
  background: rgba(255,115,0,0.1);
  color: #ff7300;
}

.service-mini-card:hover .icon-orange {
  background: #ff7300;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 115, 0, 0.4);
}

/* =============== TITLE - FADES ON HOVER =============== */
.mini-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a1a1b;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
  transition: all 0.4s ease;
}

.service-mini-card:hover .mini-card-title {
  opacity: 0;
  transform: scale(0.8) translateY(-10px);
  pointer-events: none;
}

/* =============== ARROW - FADES ON HOVER =============== */
.mini-card-arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.3rem;
  color: #ff7300;
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: all 0.4s ease;
}

.service-mini-card:hover .mini-card-arrow {
  opacity: 0;
  transform: scale(0.5) translateX(20px);
  pointer-events: none;
}

/* =============== 3D FLIP OVERLAY POPUP - OPTIMIZED FONT SIZES =============== */
.mini-card-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff7300 0%, #e66800 100%);
  border-radius: 14px;
  padding: 1.2rem 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10;
  transform: rotateY(-180deg);
}

/* POPUP APPEARS ON HOVER (3D FLIP) */
.service-mini-card:hover .mini-card-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: rotateY(0deg);
}

/* =============== POPUP CONTENT ANIMATIONS - OPTIMIZED =============== */
.popup-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.popup-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: white;
  margin: 0;
  opacity: 0;
  animation: slideInDown 0.6s ease 0.3s forwards;
  line-height: 1.2;
}

.popup-description {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
  opacity: 0;
  animation: slideInUp 0.6s ease 0.4s forwards;
}

.popup-cta {
  background: white;
  color: #ff7300;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  margin-top: 0.4rem;
  align-self: center;
  opacity: 0;
  animation: slideInUp 0.6s ease 0.5s forwards;
}

.popup-cta:hover {
  background: #fffaf0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* =============== ANIMATIONS =============== */
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1200px) {
  .services-hero-title {
    font-size: 3rem;
  }
  .services-hero-grid {
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .services-hero-content {
    max-width: 100%;
    text-align: center;
  }
  .services-hero-cards {
    max-width: 600px;
    margin: 0 auto;
  }
  .services-top-badge {
    display: flex;
    justify-content: center;
  }
  .services-benefits-grid {
    justify-content: center;
    flex-wrap: wrap;
  }
  .services-cta-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #services-hero-main {
    padding: 2rem 0 4rem;
  }
  .services-hero-title {
    font-size: 2.5rem;
    text-align: center;
  }
  .services-hero-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }
  .services-hero-content {
    text-align: center;
  }
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .badge-inner {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  .services-benefits-grid {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .services-cta-group {
    justify-content: center;
  }
  .blob-1, .blob-2, .blob-3, .blob-4 {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .services-hero-title {
    font-size: 2rem;
  }
  .services-hero-subtitle {
    font-size: 1rem;
  }
  .services-cta-group {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .services-btn-primary,
  .services-btn-secondary {
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }
  
  /* Smaller fonts on mobile */
  .popup-title {
    font-size: 0.9rem;
  }
  
  .popup-description {
    font-size: 0.7rem;
    line-height: 1.3;
  }
  
  .popup-cta {
    font-size: 0.7rem;
    padding: 0.5rem 0.9rem;
  }
}

@media (max-width: 480px) {
  .services-hero-title {
    font-size: 1.75rem;
  }
  .services-hero-subtitle {
    font-size: 0.95rem;
  }
  .service-featured-card {
    padding: 1.8rem 1.5rem;
  }
  .featured-title {
    font-size: 1.3rem;
  }
  .service-mini-card {
    padding: 1rem 0.8rem;
    min-height: 130px;
  }
  .service-cards-grid {
    gap: 0.8rem;
  }
  .blob-1, .blob-2, .blob-3, .blob-4 {
    width: 200px;
    height: 200px;
  }
  
  /* Even smaller on tiny screens */
  .popup-title {
    font-size: 0.85rem;
  }
  
  .popup-description {
    font-size: 0.65rem;
  }
}

/* =============== END OF SERVICES HERO SECTION =============== */


/* =============== SERVICE SHOWCASE SECTION =============== */
#service-showcase-main {
  background: #f3f4f6;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* =============== ANIMATED BACKGROUND - REMOVED =============== */
#service-showcase-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

/* =============== CONTAINER =============== */
.service-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  position: relative;
  z-index: 1;
}

/* =============== SECTION HEADER =============== */
.showcase-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 115, 0, 0.1);
  color: #ff7300;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.showcase-badge svg {
  flex-shrink: 0;
}

.showcase-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a1a1b;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.title-accent {
  color: #ff7300;
}

.showcase-desc {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* =============== SERVICE TABS =============== */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.service-tab:hover {
  border-color: #ff7300;
  color: #ff7300;
  transform: translateY(-2px);
}

.service-tab.active {
  background: #ff7300;
  color: white;
  border-color: #ff7300;
  box-shadow: 0 6px 20px rgba(255, 115, 0, 0.3);
}

.service-tab svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =============== SERVICE PANELS =============== */
.service-panels {
  position: relative;
}

.service-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.service-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* =============== PANEL GRID =============== */
.panel-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* =============== PANEL CONTENT =============== */
.panel-content {
  max-width: 550px;
}

.panel-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1a1a1b;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.panel-desc {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* =============== PANEL STATS =============== */
.panel-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-box {
  flex: 1;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ff7300;
  display: block;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #9ca3af;
  font-weight: 600;
}

/* =============== PANEL FEATURES =============== */
.panel-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: #11af4b;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1b;
  margin: 0 0 0.3rem 0;
}

.feature-item p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

/* =============== PANEL CTA BUTTON =============== */
.panel-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.2rem;
  background: #ff7300;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.panel-cta-btn:hover {
  background: #e66800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 115, 0, 0.3);
}

.panel-cta-btn:hover svg {
  transform: translateX(4px);
}

.panel-cta-btn svg {
  transition: transform 0.3s ease;
}

/* =============== PANEL VISUAL - CALCULATOR CARD =============== */
.panel-visual {
  position: relative;
}

.visual-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
}

.panel-grid:hover .visual-card {
  transform: translateY(-6px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.12);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card-tag {
  display: inline-block;
  background: rgba(17, 175, 75, 0.1);
  color: #11af4b;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35em 0.8em;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-return {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ff7300;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1b;
  margin: 0 0 1.5rem 0;
}

/* =============== CALCULATOR INPUT =============== */
.interactive-calculator {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc-input-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #4b5563;
}

.calc-input-field {
  padding: 0.8rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.calc-input-field:focus {
  outline: none;
  border-color: #ff7300;
  box-shadow: 0 0 0 3px rgba(255, 115, 0, 0.1);
}

.calc-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e5e7eb;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff7300;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 115, 0, 0.3);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(255, 115, 0, 0.4);
}

.calc-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff7300;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 115, 0, 0.3);
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(255, 115, 0, 0.4);
}

/* =============== CALCULATOR RESULTS =============== */
.calc-result-box {
  background: rgba(250, 250, 252, 0.9);
  border-radius: 12px;
  padding: 1.2rem;
  margin-top: 1.5rem;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.result-row span:first-child {
  color: #6b7280;
  font-weight: 600;
}

.result-value {
  font-weight: 700;
  color: #1a1a1b;
}

.result-value-green {
  color: #11af4b;
}

.result-value-red {
  color: #ef4444;
}

.result-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 1rem 0;
}

.result-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.result-total span:first-child {
  color: #4b5563;
}

.result-total-value {
  font-size: 1.3rem;
  color: #1a1a1b;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1200px) {
  .showcase-title {
    font-size: 2.4rem;
  }

  .panel-grid {
    gap: 2rem;
  }

  .panel-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 1024px) {
  .panel-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .panel-content {
    max-width: 100%;
  }

  .panel-visual {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  #service-showcase-main {
    padding: 4rem 0;
  }

  .showcase-title {
    font-size: 2rem;
  }

  .showcase-desc {
    font-size: 1rem;
  }

  .service-tabs {
    gap: 0.8rem;
  }

  .service-tab {
    padding: 0.8rem 1.4rem;
    font-size: 0.9rem;
  }

  .service-tab span {
    display: none;
  }

  .service-tab.active span {
    display: inline;
  }

  .panel-title {
    font-size: 1.6rem;
  }

  .panel-stats {
    flex-wrap: wrap;
  }

  .stat-box {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 150px;
  }

  .visual-card {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  #service-showcase-main {
    padding: 3rem 0;
  }

  .showcase-title {
    font-size: 1.75rem;
  }

  .service-tabs {
    flex-direction: column;
    width: 100%;
  }

  .service-tab {
    width: 100%;
    justify-content: center;
  }

  .service-tab span {
    display: inline;
  }

  .panel-title {
    font-size: 1.4rem;
  }

  .panel-desc {
    font-size: 1rem;
  }

  .panel-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-box {
    flex: 1;
  }

  .panel-features {
    gap: 1rem;
  }

  .feature-item h4 {
    font-size: 0.9rem;
  }

  .feature-item p {
    font-size: 0.85rem;
  }

  .panel-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }

  .visual-card {
    padding: 1.3rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .calc-input-group label {
    font-size: 0.85rem;
  }

  .calc-input-field {
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
  }

  .calc-result-box {
    padding: 1rem;
  }

  .result-row {
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
  }

  .result-total-value {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  #service-showcase-main {
    padding: 2rem 0;
  }

  .showcase-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .showcase-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .showcase-desc {
    font-size: 0.95rem;
  }

  .service-tab {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    gap: 0.4rem;
  }

  .service-tab svg {
    width: 16px;
    height: 16px;
  }

  .panel-title {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
  }

  .panel-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .panel-cta-btn {
    padding: 0.9rem 1.4rem;
    font-size: 0.95rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .calc-input-field {
    padding: 0.65rem 0.8rem;
    font-size: 0.9rem;
  }

  .result-row {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }

  .result-total-value {
    font-size: 1rem;
  }
}

/* =============== END OF SERVICE SHOWCASE SECTION =============== */


/* =============== TESTIMONIALS SECTION =============== */
#testimonials-main {
  background: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* =============== SECTION HEADER =============== */
.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(17,175,75,0.1);
  color: #11af4b;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.5em 1.2em;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border: 2px solid rgba(17,175,75,0.2);
}

.testimonials-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #1a1a1b;
  line-height: 1.2;
}

.testimonials-desc {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
}

/* =============== STATS BAR - CENTER ALIGNED =============== */
.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  background: #fafafc;
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,115,0,0.1);
  color: #ff7300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1a1a1b;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
}

/* =============== CAROUSEL WRAPPER =============== */
.testimonials-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* =============== NAVIGATION BUTTONS =============== */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #6b7280;
}

.carousel-nav:hover {
  background: #ff7300;
  border-color: #ff7300;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 16px rgba(255,115,0,0.3);
}

.carousel-prev {
  left: -60px;
}

.carousel-next {
  right: -60px;
}

/* =============== CAROUSEL TRACK =============== */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

/* =============== TESTIMONIAL CARDS =============== */
.testimonial-card {
  display: none;
  background: white;
  border-radius: 24px;
  padding: 3rem;
  border: 2px solid #e5e7eb;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  position: relative;
  min-height: 400px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.testimonial-card.exit-left {
  opacity: 0;
  transform: translateX(-100px);
}

.testimonial-card.exit-right {
  opacity: 0;
  transform: translateX(100px);
}

/* =============== CARD HEADER =============== */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.stars-rating {
  display: flex;
  gap: 0.3rem;
}

.stars-rating svg {
  color: #fbbf24;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

/* =============== TESTIMONIAL TEXT =============== */
.testimonial-text {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-style: italic;
  position: relative;
}

/* =============== TESTIMONIAL AUTHOR =============== */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 2px solid #f3f4f6;
}

.author-avatar {
  flex-shrink: 0;
}

.avatar-initial {
  width: 64px;
  height: 64px;
  background: #ff7300;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1b;
  margin-bottom: 0.3rem;
}

.author-role {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(17,175,75,0.1);
  color: #11af4b;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3em 0.8em;
  border-radius: 50px;
}

/* =============== CAROUSEL INDICATORS =============== */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  background: #e5e7eb;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator:hover {
  background: #ff7300;
  transform: scale(1.2);
}

.indicator.active {
  background: #ff7300;
  width: 32px;
  border-radius: 6px;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1200px) {
  .testimonials-title {
    font-size: 2.4rem;
  }

  .carousel-prev {
    left: -50px;
  }

  .carousel-next {
    right: -50px;
  }
}

@media (max-width: 1024px) {
  .testimonials-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  #testimonials-main {
    padding: 4rem 0;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-desc {
    font-size: 1rem;
  }

  .testimonials-stats {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1rem;
  }

  .stat-item {
    padding: 0.8rem;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .testimonial-card {
    padding: 2rem;
    min-height: 350px;
  }

  .testimonial-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }
}

@media (max-width: 600px) {
  .testimonials-title {
    font-size: 1.75rem;
  }

  .testimonial-card {
    padding: 1.5rem;
    min-height: 320px;
  }

  .card-header {
    margin-bottom: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .author-avatar {
    display: none;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-role {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 1.2rem;
  }

  .carousel-nav {
    width: 36px;
    height: 36px;
  }

  .stars-rating svg {
    width: 16px;
    height: 16px;
  }

  .quote-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* =============== END OF TESTIMONIALS SECTION =============== */


/* =============== FAQ SECTION =============== */
#faq-main {
  background: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.faq-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* =============== SECTION HEADER =============== */
.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,115,0,0.1);
  color: #ff7300;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.5em 1.2em;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,115,0,0.2);
}

.faq-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #1a1a1b;
  line-height: 1.2;
}

.title-accent {
  color: #ff7300;
}

.faq-desc {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
}

/* =============== FAQ GRID =============== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* =============== FAQ ITEM =============== */
.faq-item {
  background: white;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #ff7300;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  border-color: #ff7300;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: #ff7300;
  box-shadow: 0 12px 32px rgba(255,115,0,0.15);
}

.faq-item.active::before {
  transform: scaleY(1);
}

/* =============== FAQ QUESTION =============== */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1.5rem 1.8rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255,115,0,0.03);
}

.faq-item.active .faq-question {
  background: rgba(255,115,0,0.05);
}

/* =============== FAQ NUMBER =============== */
.faq-number {
  font-size: 1.2rem;
  font-weight: 900;
  color: #e5e7eb;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-number {
  color: #ff7300;
  transform: scale(1.1);
}

.question-text {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1b;
  line-height: 1.4;
  flex: 1;
}

/* =============== FAQ ICON =============== */
.faq-icon {
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
  background: rgba(255,115,0,0.1);
  color: #ff7300;
}

.faq-item.active .faq-icon {
  background: #ff7300;
  color: white;
  transform: rotate(45deg);
}

/* =============== FAQ ANSWER =============== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.answer-content {
  padding: 0 1.8rem 1.5rem 3rem;
  border-top: 1px solid #f3f4f6;
  margin-top: -0.5rem;
}

.answer-content p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.8;
  margin: 1.5rem 0 0 0;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============== BOTTOM CTA =============== */
.faq-bottom-cta {
  margin-top: 4rem;
}

.cta-card {
  background: #fafafc;
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ff7300;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,115,0,0.1);
  color: #ff7300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cta-card:hover .cta-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255,115,0,0.15);
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a1b;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ff7300;
  color: white;
  border: none;
  padding: 1.1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(255,115,0,0.3);
  flex-shrink: 0;
}

.cta-btn:hover {
  background: #e66800;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,115,0,0.4);
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

.cta-btn svg {
  transition: transform 0.3s ease;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1200px) {
  .faq-title {
    font-size: 2.4rem;
  }

  .faq-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  #faq-main {
    padding: 4rem 0;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-desc {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1.2rem 1.2rem 1.2rem 1.5rem;
    gap: 0.8rem;
  }

  .faq-number {
    font-size: 1rem;
  }

  .question-text {
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
  }

  .faq-icon svg {
    width: 18px;
    height: 18px;
  }

  .answer-content {
    padding: 0 1.5rem 1.2rem 2.5rem;
  }

  .answer-content p {
    font-size: 0.9rem;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
  }

  .cta-icon {
    width: 64px;
    height: 64px;
  }

  .cta-icon svg {
    width: 28px;
    height: 28px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .faq-title {
    font-size: 1.75rem;
  }

  .faq-header {
    margin-bottom: 3rem;
  }

  .faq-question {
    padding: 1rem 1rem 1rem 1.2rem;
  }

  .faq-number {
    font-size: 0.9rem;
  }

  .question-text {
    font-size: 0.9rem;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
  }

  .faq-icon svg {
    width: 16px;
    height: 16px;
  }

  .answer-content {
    padding: 0 1.2rem 1rem 2rem;
  }

  .cta-card {
    padding: 1.5rem;
  }

  .cta-title {
    font-size: 1.3rem;
  }

  .cta-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 1rem;
    gap: 0.6rem;
  }

  .faq-number {
    font-size: 0.85rem;
  }

  .question-text {
    font-size: 0.85rem;
  }

  .answer-content {
    padding: 0 1rem 1rem 1.8rem;
  }

  .answer-content p {
    font-size: 0.85rem;
  }
}
/* =============== END OF FAQ SECTION =============== */

/* =============== CTA PREMIUM SECTION =============== */
#cta-premium {
  background: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Animated background elements */
#cta-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: cta-float-1 20s ease-in-out infinite;
}

#cta-premium::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(17, 175, 75, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: cta-float-2 25s ease-in-out infinite;
}

@keyframes cta-float-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

@keyframes cta-float-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 40px); }
}

.cta-premium-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  position: relative;
  z-index: 1;
}

/* =============== HERO CARD =============== */
.cta-hero-card {
  background: white;
  border-radius: 32px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* =============== CONTENT GRID =============== */
.cta-content-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* =============== LEFT SECTION =============== */
.cta-left-section {
  position: relative;
  z-index: 2;
}

.cta-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff7300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-main-heading {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.heading-highlight {
  display: block;
  color: #ff7300;
}

.heading-light {
  display: block;
  color: #1a1a1b;
}

.cta-subtext {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 2rem 0;
}

/* =============== QUICK STATS =============== */
.cta-quick-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.quick-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* =============== STAT ICONS - SOLID ORANGE =============== */
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 115, 0, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.stat-icon svg {
  fill: none;
  stroke: #ff7300;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  color: #ff7300;
  width: 24px;
  height: 24px;
}

.quick-stat:hover .stat-icon {
  background: rgba(255, 115, 0, 0.25);
  transform: scale(1.08) rotate(5deg);
}

.quick-stat:hover .stat-icon svg {
  stroke: #ff7300;
  filter: drop-shadow(0 2px 4px rgba(255, 115, 0, 0.2));
}

/* =============== STAT INFO - WITH SUFFIX =============== */
.stat-info {
  display: flex;
  align-items: baseline;
  flex-direction: row;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1b;
  line-height: 1;
}

.stat-suffix {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ff7300;
  margin-top: 0.2rem;
}

.stat-name {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 600;
  width: 100%;
  margin-top: 0.2rem;
}

/* =============== RIGHT SECTION =============== */
.cta-right-section {
  position: relative;
  z-index: 2;
}

.cta-action-box {
  background: #ff7300;
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(255, 115, 0, 0.3);
}

.cta-action-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-action-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.action-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5em 1em;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.action-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 0.8rem 0;
  position: relative;
  z-index: 1;
}

.action-desc {
  font-size: 0.95rem;
  opacity: 0.95;
  margin: 0 0 1.8rem 0;
  position: relative;
  z-index: 1;
}

/* =============== ACTION BUTTONS =============== */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

/* =============== PRIMARY BUTTON =============== */
.action-btn-primary {
  background: white;
  color: #ff7300;
}

.action-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.action-btn-primary svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.action-btn-primary:hover svg {
  transform: translateX(4px);
}

/* =============== SECONDARY BUTTON =============== */
.action-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.action-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
  transform: translateY(-2px);
}

.action-btn-secondary svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.action-btn-secondary:hover svg {
  transform: scale(1.1);
}

/* =============== TRUST NOTE =============== */
.action-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.action-trust svg {
  fill: white;
  color: white;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: none;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1200px) {
  .cta-main-heading {
    font-size: 2.8rem;
  }

  .cta-hero-card {
    padding: 3.5rem;
  }
}

@media (max-width: 1024px) {
  .cta-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-hero-card {
    padding: 3rem;
  }

  .cta-main-heading {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  #cta-premium {
    padding: 4rem 0;
  }

  .cta-hero-card {
    padding: 2.5rem 2rem;
  }

  .cta-main-heading {
    font-size: 2rem;
  }

  .cta-subtext {
    font-size: 1rem;
  }

  .cta-quick-stats {
    gap: 1.5rem;
  }

  .quick-stat {
    gap: 0.8rem;
  }

  .stat-value {
    font-size: 1.2rem;
  }

  .stat-suffix {
    font-size: 0.85rem;
  }

  .stat-icon {
    width: 44px;
    height: 44px;
  }

  .stat-icon svg {
    width: 22px;
    height: 22px;
  }

  .cta-action-box {
    padding: 2rem;
  }

  .action-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .cta-hero-card {
    padding: 2rem 1.5rem;
  }

  .cta-main-heading {
    font-size: 1.7rem;
  }

  .heading-highlight,
  .heading-light {
    display: inline;
  }

  .cta-quick-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .quick-stat {
    gap: 0.8rem;
  }

  .stat-value {
    font-size: 1.1rem;
  }

  .stat-suffix {
    font-size: 0.8rem;
    margin-top: 0;
  }

  .stat-name {
    font-size: 0.75rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    gap: 0.6rem;
  }

  .action-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .cta-main-heading {
    font-size: 1.5rem;
  }

  .cta-eyebrow {
    font-size: 0.75rem;
  }

  .cta-subtext {
    font-size: 0.95rem;
  }

  .stat-value {
    font-size: 1rem;
  }

  .stat-suffix {
    font-size: 0.75rem;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-icon svg {
    width: 20px;
    height: 20px;
  }

  .action-title {
    font-size: 1.3rem;
  }

  .action-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .action-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* =============== END OF CTA PREMIUM SECTION =============== */



/* =============== TRUST SECTION START =============== */
#trust-section {
  background: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* =============== SECTION HEADER =============== */
.trust-header {
  text-align: center;
  margin-bottom: 4rem;
}

.trust-main-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a1a1b;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.trust-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* =============== CERTIFICATIONS ROW - 2 COLUMNS =============== */
.certifications-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.cert-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ff7300;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.cert-card:hover {
  border-color: #ff7300;
  box-shadow: 0 12px 32px rgba(255, 115, 0, 0.15);
  transform: translateY(-8px);
}

.cert-card:hover::before {
  transform: scaleX(1);
}

.cert-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 115, 0, 0.1);
  color: #ff7300;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cert-card:hover .cert-icon {
  background: rgba(255, 115, 0, 0.2);
  transform: scale(1.1);
}

.cert-content {
  flex: 1;
}

.cert-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1b;
  margin-bottom: 0.5rem;
}

.cert-number {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(17, 175, 75, 0.1);
  color: #11af4b;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4em 0.9em;
  border-radius: 50px;
}

.cert-badge svg {
  width: 12px;
  height: 12px;
}

/* =============== AWARDS & STATS ROW =============== */
.awards-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* =============== STATS BOX =============== */
.trust-stats-box {
  background: #fafafc;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 2.5rem;
}

.stats-box-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1b;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.trust-stat-item {
  background: white;
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  text-align: center;
}

.trust-stat-item:hover {
  border-color: #ff7300;
  box-shadow: 0 8px 24px rgba(255, 115, 0, 0.1);
  transform: translateY(-4px);
}

.trust-stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 115, 0, 0.1);
  color: #ff7300;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.trust-stat-item:hover .trust-stat-icon {
  background: rgba(255, 115, 0, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.trust-stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1a1a1b;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
}

/* =============== AWARDS BOX =============== */
.trust-awards-box {
  background: #fafafc;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 2.5rem;
}

.awards-box-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1b;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.award-item {
  background: white;
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.award-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #ff7300;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: top;
}

.award-item:hover {
  border-color: #ff7300;
  box-shadow: 0 8px 24px rgba(255, 115, 0, 0.1);
  transform: translateX(8px);
}

.award-item:hover::after {
  transform: scaleY(1);
}

.award-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 115, 0, 0.1);
  color: #ff7300;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.award-item:hover .award-icon {
  background: rgba(255, 115, 0, 0.2);
  transform: scale(1.1);
}

.award-content {
  flex: 1;
}

.award-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1b;
  margin-bottom: 0.3rem;
}

.award-org {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

/* =============== MEDIA MENTIONS =============== */
.media-mentions {
  text-align: center;
}

.media-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.media-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.media-logo {
  font-size: 0.95rem;
  font-weight: 700;
  color: #9ca3af;
  padding: 1rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.media-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff7300;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.media-logo:hover {
  border-color: #ff7300;
  color: #ff7300;
  background: rgba(255, 115, 0, 0.05);
  transform: translateY(-2px);
}

.media-logo:hover::before {
  transform: scaleX(1);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1200px) {
  .trust-main-title {
    font-size: 2.4rem;
  }

  .awards-stats-row {
    gap: 2rem;
  }

  .certifications-row {
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .certifications-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .awards-stats-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  #trust-section {
    padding: 4rem 0;
  }

  .trust-main-title {
    font-size: 2rem;
  }

  .trust-subtitle {
    font-size: 1rem;
  }

  .certifications-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cert-card {
    padding: 2rem;
  }

  .cert-icon {
    width: 48px;
    height: 48px;
  }

  .cert-title {
    font-size: 1rem;
  }

  .trust-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-stat-item {
    padding: 1.2rem;
  }

  .trust-stat-number {
    font-size: 1.5rem;
  }

  .stats-box-title,
  .awards-box-title {
    font-size: 1.3rem;
  }

  .trust-stats-box,
  .trust-awards-box {
    padding: 2rem;
  }

  .awards-list {
    gap: 1rem;
  }

  .award-item {
    padding: 1.2rem;
  }

  .award-title {
    font-size: 0.95rem;
  }

  .media-logos {
    gap: 1rem;
  }

  .media-logo {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .trust-main-title {
    font-size: 1.75rem;
    margin-bottom: 0.8rem;
  }

  .trust-subtitle {
    font-size: 0.95rem;
  }

  .certifications-row {
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .cert-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .cert-icon {
    margin-left: auto;
    margin-right: auto;
    width: 44px;
    height: 44px;
  }

  .cert-title {
    font-size: 0.95rem;
  }

  .cert-number {
    font-size: 0.8rem;
  }

  .trust-stats-box,
  .trust-awards-box {
    padding: 1.5rem;
  }

  .stats-box-title,
  .awards-box-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .trust-stat-item {
    padding: 1rem;
  }

  .trust-stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.8rem;
  }

  .trust-stat-number {
    font-size: 1.3rem;
  }

  .trust-stat-label {
    font-size: 0.75rem;
  }

  .award-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .award-icon {
    margin-left: auto;
    margin-right: auto;
    width: 40px;
    height: 40px;
  }

  .award-title {
    font-size: 0.9rem;
  }

  .award-org {
    font-size: 0.75rem;
  }

  .media-mentions {
    margin-top: 2rem;
  }

  .media-title {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .media-logos {
    flex-direction: column;
    gap: 0.8rem;
  }

  .media-logo {
    width: 100%;
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 480px) {
  #trust-section {
    padding: 3rem 0;
  }

  .trust-main-title {
    font-size: 1.5rem;
  }

  .trust-subtitle {
    font-size: 0.9rem;
  }

  .certifications-row {
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }

  .cert-card {
    padding: 1.2rem;
  }

  .cert-icon {
    width: 40px;
    height: 40px;
  }

  .cert-title {
    font-size: 0.9rem;
  }

  .cert-number {
    font-size: 0.75rem;
  }

  .cert-badge {
    font-size: 0.7rem;
    padding: 0.3em 0.7em;
  }

  .trust-stats-box,
  .trust-awards-box {
    padding: 1.2rem;
  }

  .stats-box-title,
  .awards-box-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .trust-stat-item {
    padding: 0.8rem;
  }

  .trust-stat-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.5rem;
  }

  .trust-stat-number {
    font-size: 1.2rem;
  }

  .trust-stat-label {
    font-size: 0.7rem;
  }

  .award-item {
    padding: 0.8rem;
  }

  .award-icon {
    width: 36px;
    height: 36px;
  }

  .award-title {
    font-size: 0.85rem;
  }

  .award-org {
    font-size: 0.7rem;
  }

  .media-logo {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* =============== END OF TRUST SECTION =============== */




/* =============== FOOTER SECTION START =============== */

#ar-footer {
  background: var(--c-txt-main);
  color: #e5e7eb;
}

/* Main Footer Layout */
.ar-footer-main {
  padding: 4rem 4vw 2rem;
}
.ar-footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* === Footer Content Grid === */
.ar-footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* === Brand Column === */
.ar-brand-col {
  max-width: 350px;
}
/* Logo Row */
.ar-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.ar-footer-logo img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}
/* Brand Name and Tagline */
.ar-footer-logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.2;
}
.ar-footer-tagline {
  font-weight: 400;
  font-size: 0.75rem; /* Smaller font size */
  font-style: italic; /* Italic style */
  color: #9ca3af;
  margin-top: 2px;
  letter-spacing: 0.03em;
}
/* Brand About */
.ar-footer-about {
  font-size: var(--font-paragraph);
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* === Social Links === */
.ar-footer-social {
  display: flex;
  gap: 1rem;
}
.ar-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #e5e7eb;
  transition: all 0.3s ease;
}
.ar-social-link:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* === Footer Columns === */
.ar-footer-col {
  display: flex;
  flex-direction: column;
}
/* Column Headings */
.ar-footer-heading {
  font-size: var(--font-h2);
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-bottom: 1.5rem;
}
/* Links and Contact */
.ar-footer-links,
.ar-footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.ar-footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: var(--font-paragraph);
  transition: all 0.3s ease;
  display: inline-block;
}
.ar-footer-links a:hover {
  color: var(--c-primary);
  transform: translateX(4px);
}
/* Contact Items */
.ar-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #9ca3af;
  font-size: var(--font-paragraph);
  line-height: 1.6;
}
.ar-footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--c-primary);
}

/* === Footer Bottom === */
.ar-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 4vw;
}
.ar-footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
/* Copyright and Legal Links */
.ar-footer-copyright {
  font-size: 0.9rem;
  color: #9ca3af;
}
.ar-footer-legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.ar-footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.ar-footer-legal a:hover {
  color: var(--c-primary);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  .ar-footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }
  .ar-footer-col:nth-child(4),
  .ar-footer-col:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .ar-footer-main {
    padding: 3rem 4vw 2rem;
  }
  .ar-footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .ar-brand-col {
    grid-column: span 2;
    max-width: 100%;
  }
  .ar-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .ar-footer-legal {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .ar-footer-main {
    padding: 2.5rem 4vw 1.5rem;
  }
  .ar-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ar-brand-col {
    grid-column: span 1;
  }
  .ar-footer-heading {
    font-size: 1.3rem;
  }
  .ar-footer-social {
    gap: 0.8rem;
  }
  .ar-social-link {
    width: 36px;
    height: 36px;
  }
  .ar-footer-legal {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
@media (max-width: 360px) {
  .ar-footer-logo-text {
    font-size: 1.3rem;
  }
  .ar-footer-heading {
    font-size: 1.2rem;
  }
}
/* =============== FOOTER SECTION END =============== */

/* =============== SCROLL TO TOP BUTTON START =============== */
.ar-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ff7300; /* Use your primary color solid */
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(.51,.92,.24,1), box-shadow 0.2s;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(255,115,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.ar-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ar-scroll-top:hover,
.ar-scroll-top:focus {
  background: #fff;
  color: #ff7300;
  border-color: #ff7300;
  box-shadow: 0 7px 24px rgba(255,115,0,0.19);
  transform: translateY(-3px) scale(1.05);
}
.ar-scroll-top:active {
  background: #f8f8f8;
  color: #ff7300;
  transform: translateY(0) scale(0.97);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .ar-scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}
/* =============== SCROLL TO TOP BUTTON END =============== */