/* CSS Font Variables */
:root {
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
  font-family: var(--font-body);
  background: #f2f7fd;
  color: #7d97ad;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --cubic:
    cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*=====HOMEPAGE SPECIFIC STYLES=====*/
.homepage-hero-section {
  margin-bottom: -150px;
  position: relative;
  min-height: 870px;
  display: flex;
  align-items: center;
  justify-content:
    center;
  overflow: visible;
  margin-top: -90px;
  padding-top: 90px;
  padding-bottom: 0;
}

/* Wave Effect - Positioned at
bottom of hero */
.homepage-hero-wave {
  position: absolute;
  bottom: 150px;
  /* Gap önlemi */
  left: 0;
  width: 100%;
  z-index: 20;
  line-height: 0;
  pointer-events: none;
  background: transparent;
  height: auto;
}



.homepage-hero-wave svg {
  width: 100%;
  height: 120px;
  /* Sabit yükseklik kontrolü */
  display: block;
  filter: drop-shadow(0 -10px 15px rgba(242, 247, 253, 0.5));
}

/* Filler to make the area under the wave the same color */
.homepage-hero-wave::after {
  content: '';
  position: absolute;
  top: 99%;
  /* Slight overlap to prevent gaps */
  left: 0;
  width: 100%;
  height: 251px;
  /* Increased height to cover all desktops */
  background: #f2f7fd;
  z-index: 10;
}

/* Background Image */
.homepage-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95%;
  z-index: 1;
}

.homepage-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 120%;
}

/* Gradient Overlay for better text readability */
.homepage-hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(220, 230, 245, 0.6);
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Content Container */
.homepage-hero-container {
  position: relative;
  z-index: 30;
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
  padding:
    100px 24px 120px;
  text-align: center;
}

.homepage-hero-content {
  max-width: 800px;
  margin: 0 auto;
  margin-top:
    -343px;
}

.homepage-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #4c4c9d;
  margin: 0 0 16px 0;
  font-family: var(--font-heading);
  letter-spacing: -0.015em;
}

.homepage-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1f2937;
  margin: 0 0 20px 0;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.homepage-hero-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #4b5563;
  margin: 0 0 16px 0;
  font-family: var(--font-body);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0;
}

.homepage-hero-buttons {
  display:
    inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  transform: translateY(275px);
  position: relative;
  z-index: 40;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.homepage-hero-btn {
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.homepage-hero-btn-primary {
  background: #4c4c9d;
  color: white;
  box-shadow: 0 4px 12px rgba(76, 76, 157, 0.3);
}

.homepage-hero-btn-primary:hover {
  background: #3d3d7d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76,
      76, 157, 0.4);
}

/* Ultra Wide & 4K Displays (2000px and above) */
@media (min-width: 2000px) {
  .homepage-hero-section {
    min-height: 1270px;
  }

  .homepage-hero-container {
    padding: 150px 24px 200px;
  }

  .homepage-hero-content {
    margin-top: -508px;
  }

  .homepage-hero-wave {
    bottom: 200px !important;
  }

  .homepage-hero-wave svg {
    height: 180px;
  }

  .homepage-hero-wave::after {
    height: 401px !important;
    top: 99% !important;
    background: #f2f7fd !important;
  }

  .service-main-container {
    margin-top: 100px !important;
    max-width: 1600px;
  }

  .homepage-hero-buttons {
    transform: translateY(580px) !important;
    padding: 20px !important;
    border-radius: 16px !important;
  }

  .homepage-hero-btn {
    padding: 20px 60px !important;
    font-size: 1.125rem !important;
  }
}

/* ========================================
   RESPONSIVE BUTTON LAYOUT - CLEAN START
   ======================================== */

/* Large Desktop & 4K (1920px+) */
@media (min-width: 1920px) {
  .service-service-card-buttons {
    gap: 16px !important;
  }

  .service-btn-primary,
  .service-btn-outline {
    padding: 10px 15px !important;
    font-size: 1rem !important;
  }
}

/* Ultra Wide & 4K (2560px+) Alignment */
@media (min-width: 2560px) {

  .modern-tech-section,
  .faq-container {
    max-width: 1600px !important;
    margin: 0 auto !important;
  }

  .tech-row {
    gap: 100px !important;
  }
}

/* Standard Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
  .service-service-card-buttons {
    gap: 12px !important;
  }

  .service-btn-primary,
  .service-btn-outline {
    padding: 9px 22px !important;
    font-size: 0.9375rem !important;
  }
}

/* Small Desktop / Large Laptop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
  .service-service-card-buttons {
    gap: 10px !important;
  }

  .service-btn-primary,
  .service-btn-outline {
    padding: 8px 18px !important;
    font-size: 0.875rem !important;
  }
}

/* Laptop (1024px - 1199px) - CRITICAL RANGE */
@media (min-width: 1024px) and (max-width: 1199px) {
  .service-service-card {
    padding: 28px 16px !important;
  }

  .service-service-card-buttons {
    gap: 8px !important;
  }

  .service-btn-primary,
  .service-btn-outline {
    padding: 8px 12px !important;
    font-size: 0.8125rem !important;
    flex: 1 1 auto !important;
  }
}

/* Tablet (769px - 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
  .service-service-card {
    padding: 24px 20px !important;
  }

  .service-service-card-buttons {
    gap: 10px !important;
  }

  .service-btn-primary,
  .service-btn-outline {
    padding: 10px 20px !important;
    font-size: 0.9375rem !important;
  }
}

#hizmetler {
  scroll-margin-top: 100px;
  /* Accounts for sticky header + spacing */
}

/* --- HOMEPAGE SECTION HEADERS --- */
.homepage-section-header {
  text-align: center;
  margin-bottom: 58px;
  margin-top: 30px;
  position: relative;
  z-index: 10;
}

.homepage-section-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #1a202c !important;
  margin-bottom: 16px !important;
  font-family: var(--font-heading);
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
}

.homepage-section-subtitle {
  font-size: 1.125rem !important;
  color: #64748b !important;
  max-width: 750px;
  margin: 0 auto !important;
  line-height: 1.6 !important;
  font-family: var(--font-body);
}


#service-page-wrapper {
  background: #f2f7fd !important;
}

#homepage-main-container {
  position: relative;
  z-index: 50;
}

/* Remove container styling for homepage sections */
#homepage-main-container .service-content-box,
#homepage-main-container .service-trust-badges,
#service-page-wrapper .service-content-box {
  background: transparent !important;
  border-radius: 0;
  box-shadow: none;
  border: none;
  margin-bottom: 0px;
  padding: 0px;
}



.service-section-desc {
  margin-bottom: 60px;
}

/* Service Cards - Homepage Only - Modern Redesign */
.service-service-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}



.service-service-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: none;
  box-shadow: 0 8px 16px rgba(76, 76, 157, 0.15);
}

.service-service-card-icon i {
  font-size: 2.25rem;
  color: white;
}

.service-service-card h3 {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: #1f2937;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.service-service-card p {
  font-size: 0.9375rem;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 24px 0;
  flex: 1;
  letter-spacing: 0;
}

.service-service-card-buttons {
  display: flex !important;
  align-items: stretch !important;
  flex-wrap: nowrap !important;
  gap: 12px;
  margin-top: auto;
  width: 100%;
}



/* Primary Button - İncele */
.service-btn-primary {
  flex: 1;
  padding: 8px 24px;
  background: linear-gradient(135deg, #4c4c9d 0%, #3d3d7d 100%);
  color: white;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 0.9375rem;
  white-space: nowrap !important;
  min-width: max-content;
  font-weight: 600;
  font-family: var(--font-heading);
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(76, 76, 157, 0.25);
  letter-spacing: 0.4px;
}

.service-btn-primary:hover {
  background: linear-gradient(135deg, #3d3d7d 0%, #2a2a5a 100%);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 76, 157, 0.35);
}

/* Secondary Button - Fiyat Hesapla / Teklif Al */
.service-btn-outline {
  flex: 1;
  padding: 8px 24px;
  background: transparent;
  color: #4c4c9d;
  border: 2px solid #4c4c9d;
  border-radius: 6px;
  font-size: 0.9375rem;
  white-space: nowrap !important;
  min-width: max-content;
  font-weight: 600;
  font-family: var(--font-heading);
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  letter-spacing: 0.4px;
}

/* Process Icons - Matching Service Card Icons */
.service-process-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 16px rgba(76, 76, 157, 0.15);
}

.service-process-icon i {
  font-size: 2.25rem;
  color: white;
}

/* Process Timeline Modern Grid */
.service-process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-process-connector {
  display: none;
  /* Hide old connector divs */
}

.service-process-step {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.service-process-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #1f2937;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.service-process-desc {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.service-process-step p {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  font-family: var(--font-body);
  max-width: 250px;
  margin: 0 auto;
  letter-spacing: 0;
}

/* Arrow Connector for Desktop */
@media (min-width: 992px) {
  .service-process-step:not(:last-child)::after {
    content: "\f061";
    /* FontAwesome arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 36px;
    /* Center with icon (72px/2) */
    right: -16px;
    /* Position in the gap */
    transform: translateY(-50%);
    color: #d1d5db;
    /* Light gray */
    font-size: 1.5rem;
  }
}

/* ===== TRUST & SECURITY SECTION ===== */
.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.trust-stat-card {
  background: white;
  padding: 32px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.trust-stat-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1;
}

.trust-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.trust-stat-label {
  font-size: 0.9375rem;
  color: #6b7280;
  font-family: var(--font-body);
  line-height: 1.5;
}

.trust-badges-section {
  margin-bottom: 48px;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-badge {
  background: white;
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.trust-badge h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
  font-family: var(--font-heading);
}

.trust-badge p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
  font-family: var(--font-body);
}

.trust-quote {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border-left: 4px solid #4c4c9d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.trust-quote-icon {
  font-size: 2.5rem;
  color: #e5e7eb;
  margin-bottom: 16px;
}

.trust-quote-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #374151;
  margin: 0 0 24px 0;
  font-family: var(--font-body);
  font-style: italic;
}

.trust-quote-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-quote-author strong {
  font-size: 1rem;
  color: #1f2937;
  font-family: var(--font-heading);
}

.trust-quote-author span {
  font-size: 0.875rem;
  color: #6b7280;
  font-family: var(--font-body);
}

/* ===== MODERN TECHNOLOGY SECTION ===== */
.modern-tech-section {
  max-width: 1200px;
  margin: 0 auto;
}

.service-services-grid {
  margin: 0px;
}

.tech-row {
  display: flex;
  margin-top: -25px;
  align-items: center;
  gap: 60px;
}

.service-process-timeline {
  margin-bottom: 48px;
  ;
}

.tech-row.tech-reverse {
  flex-direction: row-reverse;
}

/* Clean Modern Card Design - COMPACT */
.tech-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  background: white;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}

/* Vertical Divider Line in the middle of the gap */
.tech-row::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  background: #4c4c9d;
  opacity: 0.2;
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .tech-row::after {
    display: none;
  }
}

.tech-image-col,
.tech-content-col {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-image-wrapper {
  position: relative;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Very subtle gloss/light catch on top of image */
.tech-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
  pointer-events: none;
  border-radius: 12px;
  max-width: 380px;
  margin: 0 auto;
}

.tech-main-img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(76, 76, 157, 0.08);
  /* Color matched subtle border */
  filter: brightness(1.01) saturate(1.05);
  /* Subtle pop */
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 10px 20px -5px rgba(76, 76, 157, 0.1);
}





.tech-content-card {
  background: transparent;
  padding: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tech-row.tech-reverse .tech-content-card {
  padding-left: 8px;
}

.tech-content-card h3 {
  color: #1f2937 !important;
  font-size: 1.25rem !important;
  margin-bottom: 12px !important;
  line-height: 1.3 !important;
}

.tech-content-card>p {
  color: #4b5563 !important;
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  margin-bottom: 20px !important;
}

.tech-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #EEF2FF;
  color: #4c4c9d;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.tech-content-card h3 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  margin-bottom: 20px !important;
  font-family: var(--font-heading) !important;
  line-height: 1.3 !important;
}

.tech-content-card p {
  font-size: 1.0625rem !important;
  color: #4b5563 !important;
  line-height: 1.7 !important;
  margin-bottom: 32px !important;
  font-family: var(--font-body) !important;
}

.tech-feature-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.tech-feature-list li {
  display: flex !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
  align-items: flex-start !important;
}

.tech-list-icon {
  width: 36px;
  height: 36px;
  background: radial-gradient(circle at center, #f5f7ff 0%, #eef1ff 100%);
  border: 1px solid #e0e7ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-feature-list li:hover .tech-list-icon {
  background: #f0f4ff;
  color: #4c4c9d;
}

.tech-feature-list li strong {
  display: block !important;
  font-size: 0.9375rem !important;
  color: #1f2937 !important;
  font-weight: 600 !important;
  margin-bottom: 2px !important;
  font-family: var(--font-heading) !important;
}

.tech-feature-list li span {
  font-size: 0.8125rem !important;
  color: #6b7280 !important;
  line-height: 1.5 !important;
  font-family: var(--font-body) !important;
}


.space18 {
  height: 18px;
}

.space28 {
  height: 28px;
}

.space40 {
  height: 40px;
}

.space60 {
  height: 60px;
}

.space100 {
  height: 100px;
}

/* ===== SERVICE CARD ICON GRADIENTS ===== */
.service-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}

.service-icon-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-icon-pink {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-icon-cyan {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-icon-teal {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.service-icon-yellow {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.service-icon-indigo {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.service-icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* ===== TRUST SECURITY SECTION ===== */
.trust-security-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e1e8f0 100%);
  padding: 48px 24px;
  border-radius: 16px;
  margin-bottom: 32px;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

/* ===== WHY TRUST US BOX ===== */
.why-trust-box {
  margin-bottom: 48px;
  background: white;
  padding: 40px 32px;
  border-radius: 12px;
  border-left: 4px solid #4c4c9d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.why-trust-title {
  font-size: 1.375rem !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  margin: 0 0 20px 0 !important;
  font-family: var(--font-heading) !important;
  text-align: center !important;
}

.why-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.why-trust-item {
  display: flex !important;
  gap: 16px !important;
  align-items: start !important;
  padding: 12px !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
}

.why-trust-item:hover {
  background: #f8fafc !important;
}

.why-trust-item:hover .why-trust-icon {
  transform: scale(1.1) !important;
}

.why-trust-icon {
  flex-shrink: 0 !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.why-trust-icon.blue-bg {
  background: #e0f2fe !important;
}

.why-trust-icon.yellow-bg {
  background: #fef3c7 !important;
}

.why-trust-icon.green-bg {
  background: #dcfce7 !important;
}

.why-trust-icon i {
  font-size: 1.25rem !important;
}

.why-trust-icon.blue-bg i {
  color: #0284c7 !important;
}

.why-trust-icon.yellow-bg i {
  color: #d97706 !important;
}

.why-trust-icon.green-bg i {
  color: #16a34a !important;
}

.why-trust-item h4 {
  font-size: 1.0625rem !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  margin: 0 0 6px 0 !important;
  font-family: var(--font-heading) !important;
}

.why-trust-item p {
  font-size: 0.9375rem !important;
  color: #6b7280 !important;
  margin: 0 !important;
  line-height: 1.6 !important;
  font-family: var(--font-body) !important;
}

/* ===== PROCESS TIMELINE ICON GRADIENTS ===== */
.process-icon-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.process-icon-pink {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.process-icon-cyan {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.process-icon-teal {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
}



/* ===== TRUST SECTION FEATURE CARDS ===== */
.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.trust-feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.trust-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.trust-feature-icon.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.trust-feature-icon.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.trust-feature-icon.orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.trust-feature-icon i {
  font-size: 1.75rem;
  color: white;
}

.trust-feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.trust-feature-card p {
  font-size: 0.9375rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* ===== SERVICE ITEMS GRID (Why Choose Us) ===== */
.service-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.service-service-item {
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.service-service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-service-item i {
  color: #4c4c9d;
  font-size: 1.25rem;
  min-width: 24px;
}

.service-service-text {
  color: #374151;
  font-weight: 500;
  font-size: 0.9375rem;
  font-family: var(--font-body);
}

/* ===== FAQ SECTION ===== */
/* ===== MODERN PREMIUM FAQ SECTION ===== */
.faq-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin-bottom: 48px;
}

.service-faq-item {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 24px !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
  position: relative;
  overflow: hidden;
  height: min-content;
}

.service-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  border-color: #e2e8f0;
}

.service-faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: background 0.3s ease;
}

.service-faq-item:hover::before {
  background: linear-gradient(90deg, #4c4c9d, #6366f1);
}

.service-faq-question {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 16px !important;
}

.service-faq-question span {
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  font-family: var(--font-heading) !important;
  line-height: 1.4 !important;
}

.service-faq-answer {
  color: #4b5563 !important;
  font-size: 0.9375rem !important;
  line-height: 1.7 !important;
  font-family: var(--font-body) !important;
  margin: 0 !important;
  padding-left: 0 !important;
  opacity: 0.9;
}

.service-faq-answer strong {
  color: #111827 !important;
  font-weight: 700 !important;
}

.service-faq-answer a {
  color: #4c4c9d !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-bottom: 1px dashed #4c4c9d !important;
}

.service-faq-icon {
  flex-shrink: 0 !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.3s ease !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.service-faq-item:hover .service-faq-icon {
  transform: scale(1.1) rotate(5deg) !important;
}

.service-faq-icon i {
  color: white !important;
  font-size: 1.125rem !important;
}

/* Modifier Colors - Premium Gradients */
.service-faq-icon.purple {
  background: linear-gradient(135deg, #6366f1 0%, #4c4c9d 100%) !important;
}

.service-faq-icon.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.service-faq-icon.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
}

.service-faq-icon.orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

.service-faq-icon.indigo {
  background: linear-gradient(135deg, #818cf8 0%, #4f46e5 100%) !important;
}

.service-faq-icon.violet {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%) !important;
}

.service-faq-icon.pink {
  background: linear-gradient(135deg, #f472b6 0%, #db2777 100%) !important;
}

.service-faq-icon.cyan {
  background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%) !important;
}

.service-faq-icon.teal {
  background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%) !important;
}



.cta-primary-btn {
  background: white !important;
  color: #1e1b4b !important;
  padding: 14px 32px !important;
  border-radius: 12px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
  font-family: var(--font-heading) !important;
}

.cta-primary-btn:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2) !important;
  background: #f8fafc !important;
}

.cta-primary-btn i {
  transition: transform 0.3s ease !important;
}

.cta-primary-btn:hover i {
  transform: translateX(5px) !important;
}

.cta-trust-badges {
  display: flex !important;
  gap: 20px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  font-family: var(--font-body) !important;
}

.cta-trust-badges span {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.cta-trust-badges i {
  color: #10b981 !important;
}

.service-btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
}

.service-btn-white {
  background: white;
  color: #4c4c9d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ===== CONTACT GRID ===== */
.service-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.service-contact-item {
  background: white;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.service-contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4c4c9d 0%, #3d3d7d 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-contact-icon i {
  color: white;
  font-size: 1.25rem;
}

.service-contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-contact-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-family: var(--font-body);
}

.service-contact-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
}

.service-contact-value:hover {
  color: #4c4c9d;
}

.service-section-desc {
  margin-bottom: 60px;
}

.space50 {
  height: 50px;
}



/* ==========================================================
   ===      RESPONSIVE DESIGN SYSTEM V2 (MOBILE OVERHAUL)   === 
   ===        Sil Baştan (Clean Sheet) Redesign             ===
   ========================================================== */

/* --- TABLET & SMALL LAPTOP (Max 1024px) --- */
@media (max-width: 1024px) {
  .homepage-hero-section {
    min-height: 750px;
  }

  .homepage-hero-container {
    padding: 80px 24px 100px;
  }

  .homepage-hero-content {
    margin-top: -280px;
  }

  .homepage-hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
  }

  .homepage-hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }

  .homepage-hero-description {
    font-size: 0.9375rem;
    line-height: 1.65;
    letter-spacing: 0;
  }

  .homepage-hero-buttons {
    transform: translateY(240px);
  }

  .homepage-hero-wave {
    display: block !important;
    bottom: 50px !important;
    transform: scale(1.15);
  }

  .homepage-hero-wave::after {
    height: 251px !important;
    top: 99% !important;
    background: #f2f7fd !important;
  }

  .service-main-container {
    margin-top: 150px !important;
    max-width: 98% !important;
    width: 98% !important;
  }
}

/* --- MOBILE DEVICES (Max 768px) --- */
@media (max-width: 768px) {

  /* GLOBAL SPACING & TYPOGRAPHY */
  :root {
    --container-padding: 20px;
  }

  body {
    font-size: 15px;
  }

  h1,
  .homepage-hero-title {
    font-size: 2.125rem !important;
    line-height: 1.25 !important;
  }

  h2 {
    font-size: 1.625rem !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
  }

  h3 {
    font-size: 1.25rem !important;
    line-height: 1.35 !important;
  }

  p {
    font-size: 0.9375rem !important;
    line-height: 1.7 !important;
    color: #4a5568 !important;
  }

  .homepage-section-title {
    font-size: 1.625rem !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 12px !important;
  }

  .homepage-section-subtitle {
    font-size: 1rem !important;
  }

  /* LAYOUT UTILITIES */
  .container,
  .service-main-container,
  .homepage-hero-container {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* HERO SECTION REDESIGN */
  .homepage-hero-section {
    min-height: 650px;
    margin-top: -75px;
    padding-top: 75px;
    margin-bottom: -50px;
    text-align: center;
  }

  /* FIX: Mobilde üstteki beyaz boşluğu kapat */
  .homepage-hero-background {
    top: -75px !important;
    height: calc(100% + 75px) !important;
  }

  .homepage-hero-bg-img {
    object-position: center top !important;
  }

  .homepage-hero-container {
    padding: 60px 20px 80px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .homepage-hero-content {
    margin-top: -245px;
    max-width: 100%;
  }

  .homepage-hero-title {
    font-size: 1.75rem !important;
    margin-bottom: 14px;
    line-height: 1.25 !important;
    letter-spacing: -0.015em;
  }

  .homepage-hero-subtitle {
    font-size: 1.25rem !important;
    margin-bottom: 16px;
    line-height: 1.35 !important;
    letter-spacing: -0.01em;
    color: #1f2937;
    font-weight: 600;
  }

  .homepage-hero-description {
    display: block !important;
    font-size: 0.9375rem !important;
    margin-bottom: 20px;
    line-height: 1.65 !important;
    padding: 0 10px;
    letter-spacing: 0;
    max-width: 100%;
  }

  .homepage-hero-buttons {
    transform: translateY(220px) !important;
    width: calc(100% - 40px);
    max-width: 400px;
    padding: 10px;
    gap: 12px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .homepage-hero-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0.4px;
    border-radius: 8px;
  }

  .homepage-hero-wave {
    display: block !important;
    bottom: 15px !important;
    transform: scale(1.25);
  }

  /* SERVICE CARDS - STACKED & CLEAN */
  .service-services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  .service-service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 32px 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    border: 1px solid #f1f5f9;
    height: auto;
  }

  .service-service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin: 0 auto 20px;
  }

  .service-service-card h3 {
    text-align: center;
    margin-bottom: 12px;
    font-size: 1.125rem !important;
  }

  .service-service-card p {
    text-align: center;
    margin-bottom: 24px;
    font-size: 0.9375rem;
  }

  .service-service-card-buttons {
    flex-direction: column;
  }

  .service-btn-primary,
  .service-btn-outline {
    width: 100%;
    padding: 14px;
  }

  /* TRUST SECTION - GRIDS */
  .trust-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-stat-card {
    padding: 24px 16px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  }

  .trust-stat-number {
    font-size: 1.75rem;
  }

  .trust-stat-label {
    font-size: 0.85rem;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-badge {
    padding: 24px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  }

  .trust-badge>div:first-child {
    /* Fix for icon container */
    width: 48px !important;
    height: 48px !important;
    flex-shrink: 0;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .trust-badge i {
    font-size: 1.5rem !important;
    color: white !important;
    /* Icons usually have white color with bg color container */
  }



  /* PROCESS TIMELINE - VERTICAL */
  .service-process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 10px;
    position: relative;
    margin-top: 40px;
  }

  /* Connecting Line */
  .service-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
    z-index: 0;
  }

  .service-process-step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .service-process-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 0 0 8px #f2f7fd;
  }

  /* MODERN TECHNOLOGY SECTION - MOBILE */


  .tech-row {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 24px 16px !important;
    margin-bottom: 24px !important;
  }

  .tech-row.tech-reverse {
    direction: ltr;
    /* Ensure image stays on top or as per order */
  }

  .tech-image-wrapper {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }

  .tech-main-img {
    max-width: 100% !important;
    border-radius: 10px !important;
  }

  .tech-image-wrapper::after {
    display: none !important;
  }

  .tech-content-card {
    padding: 0 !important;
    text-align: left !important;
  }

  .tech-content-card h3 {
    font-size: 1.125rem !important;
    margin-bottom: 10px !important;
    padding-top: 0 !important;
  }

  .tech-content-card p {
    font-size: 0.8125rem !important;
    margin-bottom: 16px !important;
  }

  .tech-feature-list li {
    background: #f8fafc !important;
    padding: 12px !important;
    border-radius: 10px !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
  }

  .tech-list-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.8rem !important;
  }

  .tech-feature-list li strong {
    font-size: 0.875rem !important;
  }

  .tech-feature-list li span {
    font-size: 0.75rem !important;
  }


  /* WHY CHOOSE US (Neden AkademikTR?) */
  .service-services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 55px;
  }

  .service-service-item {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    padding: 20px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
    gap: 16px !important;
    text-align: left !important;
  }

  .service-service-item i {
    font-size: 1.5rem !important;
    color: #4c4c9d !important;
    min-width: 32px;
    text-align: center;
  }

  .service-service-text {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
  }



  /* SPACING RESET */
  .space100,
  .space60,
  .space50 {
    height: 40px !important;
  }







  .service-cta-content p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 0.9;
  }

  .service-cta-button {
    width: 100%;
    margin-top: 32px;
  }

  .service-cta-button .service-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 1.0625rem !important;
    border-radius: 16px;
    font-weight: 700;
  }

  .service-section-desc {
    margin-bottom: 0px !important;
  }

  #homepage-main-container {
    margin-top: 20px !important;
  }
}

/* --- SMALL MOBILE (Max 480px) --- */
@media (max-width: 480px) {
  .homepage-hero-section {
    min-height: 520px;
    margin-top: -70px;
    padding-top: 70px;
    margin-bottom: 0;
  }

  .homepage-hero-container {
    padding: 40px 12px 60px;
  }

  .homepage-hero-content {
    margin-top: -195px;
  }

  .homepage-hero-title {
    font-size: 1.5rem !important;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
    line-height: 1.25 !important;
  }

  .homepage-section-title {
    font-size: 1.375rem !important;
  }

  .homepage-hero-subtitle {
    font-size: 1.125rem !important;
    margin-bottom: 12px;
    line-height: 1.3 !important;
    letter-spacing: -0.01em;
  }

  .homepage-hero-description {
    display: none !important;
  }

  .homepage-hero-buttons {
    transform: translateY(170px) !important;
    width: calc(85% - 24px);
    padding: 8px;
    gap: 10px;
  }

  .homepage-hero-btn {
    padding: 11px 20px;
    letter-spacing: 0.3px;
    line-height: 1.5;
  }

  .homepage-hero-wave {
    display: block !important;
    bottom: 40px !important;
    transform: scale(1.6);
  }

  .homepage-hero-wave svg {
    height: 50px;
  }

  .trust-stats-grid {
    grid-template-columns: 1fr;
  }

  /* Left Aligned Process Flow for small screens */
  .service-process-timeline::before {
    left: 30px;
    transform: none;
  }

  .service-process-step {
    text-align: left;
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .service-process-icon {
    position: absolute;
    left: 0;
    top: 30px;
    margin: 0;
    width: 60px;
    height: 60px;
  }

  .service-process-icon i {
    font-size: 1.5rem;
  }

  /* TRUST FEATURES - MOBILE */
  .trust-features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .trust-feature-card {
    padding: 24px 20px !important;
  }

  .trust-feature-icon {
    width: 48px !important;
    height: 48px !important;
  }

  .trust-feature-icon i {
    font-size: 1.5rem !important;
  }

  .trust-feature-card h3 {
    font-size: 1.0625rem !important;
  }

  .trust-feature-card p {
    font-size: 0.875rem !important;
  }


  .service-btn {
    width: 100%;
    text-align: center;
  }

  /* CONTACT GRID - MOBILE */
  .service-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .service-contact-item {
    padding: 20px !important;
  }

  .service-contact-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .service-contact-icon i {
    font-size: 1.125rem !important;
  }

  .service-contact-value {
    font-size: 1rem !important;
  }

  /* FAQ - MOBILE ADJUSTMENTS */
  .faq-container {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
  }

  .service-faq-item {
    padding: 20px !important;
    margin-bottom: 12px !important;
  }

  .service-faq-question span {
    font-size: 1rem !important;
  }

  .service-faq-icon {
    width: 38px !important;
    height: 38px !important;
  }

  .service-faq-icon i {
    font-size: 1rem !important;
  }

}