/* Service Detail Page Styles */

/* Gradient Icons - Soft Pastel Colors */
.gradient-blue {
  background: linear-gradient(135deg, #a8b5ff 0%, #c5a8e8 100%);
  color: #fff;
}

.gradient-pink {
  background: linear-gradient(135deg, #ffc1e3 0%, #ffb3d9 100%);
  color: #fff;
}

.gradient-green {
  background: linear-gradient(135deg, #b3e5fc 0%, #81d4fa 100%);
  color: #fff;
}

.gradient-purple {
  background: linear-gradient(135deg, #e1bee7 0%, #f8bbd0 100%);
  color: #fff;
}

.gradient-orange {
  background: linear-gradient(135deg, #ffccbc 0%, #ffe0b2 100%);
  color: #fff;
}

.gradient-teal {
  background: linear-gradient(135deg, #b2dfdb 0%, #80cbc4 100%);
  color: #fff;
}

/* Service Hero Section - Redesigned */
.service-hero {
  padding: 2rem 0 4rem;
  background: linear-gradient(135deg, #36ad6e 0%, #4063af 50%, #000000 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  opacity: 0.7;
}

.service-hero .container {
  width: 80%;
  position: relative;
  z-index: 1;
}

.service-hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-hero-content {
  max-width: 100%;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: #000;
  backdrop-filter: blur(20px);
  padding: 0.875rem 1.75rem;
  border-radius: 60px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
}

.service-hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.service-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Slider */
.service-hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  justify-content: center;
  background: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slide-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #fff;
}

.slide-image-wrapper img {
  width: 100%;
  max-height: 100%;
  display: block;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 181, 255, 0.3) 0%, rgba(197, 168, 232, 0.3) 100%);
  pointer-events: none;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

/* Service Description - Soft Design */
.service-description {
  padding:  0;
}

.service-description-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  margin: 20px 0;
}

/* Sidebar Menu - Kurumsal Pages */
.sidebar-menu {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-menu-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03), 0 0 0 1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.sidebar-menu-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, #a8b5ff 0%, #c5a8e8 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-menu-header i {
  font-size: 1.25rem;
}

.sidebar-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-menu-item:last-child {
  border-bottom: none;
}

.sidebar-menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.sidebar-menu-link:hover {
  background: rgba(168, 181, 255, 0.08);
  color: #a8b5ff;
  padding-left: 1.75rem;
}

.sidebar-menu-link.active {
  background: linear-gradient(135deg, rgba(168, 181, 255, 0.15) 0%, rgba(197, 168, 232, 0.15) 100%);
  color: #a8b5ff;
  font-weight: 600;
  border-left: 3px solid #a8b5ff;
}

.sidebar-menu-link i {
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
}

.description-content {
  margin: 0;
}

.description-text {
  background: #fff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03), 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.features-content {
  width: 100%;
}

.description-text p {
  font-size: 1.1rem;
  line-height: 2;
  color: #555;
  margin-bottom: 2rem;
  text-align: justify;
}

.description-text p:first-child {
  font-size: 1.2rem;
  font-weight: 500;
  color: #444;
}

.description-text p:last-child {
  margin-bottom: 0;
}

/* Service Features - Soft Design */
.service-features {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #fafbfc 0%, #f5f7fa 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.feature-card > p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #555;
  font-size: 0.95rem;
}

.feature-list li i {
  color: #a8b5ff;
  margin-top: 0.25rem;
  font-size: 0.85rem;
}

/* How It Works - Redesigned */
.how-it-works {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

.process-timeline {
  max-width: 1000px;
  margin: 4rem auto 0;
  position: relative;
}

.process-step-card {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  padding: 2rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.process-step-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.process-step-card:last-child {
  margin-bottom: 0;
}

.step-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-connector {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 3rem;
  background: linear-gradient(to bottom, #a8b5ff 0%, transparent 100%);
  transform: translateX(-50%);
  margin-top: 1rem;
}

.process-step-card:last-child .step-connector {
  display: none;
}

.step-content {
  flex: 1;
}

.step-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(168, 181, 255, 0.1);
  color: #a8b5ff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.step-content > p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(168, 181, 255, 0.08);
  border-radius: 12px;
  color: #555;
  font-size: 0.9rem;
}

.step-features li i {
  color: #a8b5ff;
  font-size: 0.85rem;
}

/* Service Benefits - Redesigned */
.service-benefits {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 50%, #e8f0f5 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.benefit-icon-wrapper {
  margin-bottom: 1.5rem;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.benefit-card p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

.benefits-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.stat-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* Quote Form Section - Redesigned */
.quote-form-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

.quote-form-header {
  text-align: center;
  margin-bottom: 4rem;
}

.quote-form-wrapper {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.quote-form-content {
  position: sticky;
  top: 100px;
}

.form-intro-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 2.5rem;
  border-radius: 28px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.intro-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-intro-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.form-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.form-benefits li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.form-benefits li:last-of-type {
  border-bottom: none;
}

.form-benefits li i {
  color: #a8b5ff;
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-benefits li div {
  flex: 1;
}

.form-benefits li strong {
  display: block;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.form-benefits li span {
  display: block;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-guarantee {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(168, 181, 255, 0.08);
  border-radius: 16px;
  margin-top: 2rem;
}

.form-guarantee i {
  color: #a8b5ff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.form-guarantee div {
  flex: 1;
}

.form-guarantee strong {
  display: block;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.form-guarantee span {
  display: block;
  color: #666;
  font-size: 0.9rem;
}

.quote-form {
  background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
  padding: 2.5rem;
  border-radius: 28px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.quote-form .form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(168, 181, 255, 0.1);
}

.quote-form .form-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.quote-form .form-header p {
  color: #666;
  font-size: 1rem;
}

.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.quote-form .form-group {
  margin-bottom: 1.5rem;
}

.quote-form label {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 2px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.quote-form label:focus-within {
  border-color: #a8b5ff;
  box-shadow: 0 4px 12px rgba(168, 181, 255, 0.15), 0 0 0 3px rgba(168, 181, 255, 0.05);
}

.quote-form .field-icon {
  color: #a8b5ff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
}

.quote-form textarea {
  resize: vertical;
  min-height: 100px;
}

.quote-form select {
  cursor: pointer;
  background: transparent;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.form-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-note i {
  color: #a8b5ff;
}

/* Related Services - Soft Design */
.related-services {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #fafbfc 0%, #f5f7fa 100%);
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.related-service-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.related-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

.related-service-card .service-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.related-service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.related-service-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #a8b5ff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover {
  gap: 0.75rem;
  color: #8b9aff;
}

.service-link i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-hero-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-hero h1 {
    font-size: 2.5rem;
  }

  .service-hero-description {
    font-size: 1.1rem;
  }

  .service-hero-slider {
    height: 400px;
  }

  .slider-nav {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .slider-prev {
    left: 15px;
  }

  .slider-next {
    right: 15px;
  }

  .service-description {
    padding: 4rem 0;
  }

  .service-description-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sidebar-menu {
    position: static;
  }

  .sidebar-menu-card {
    border-radius: 18px;
  }

  .sidebar-menu-header {
    cursor: pointer;
    user-select: none;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .sidebar-menu-header::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .sidebar-menu-header.active::after {
    transform: rotate(180deg);
  }

  .sidebar-menu-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .sidebar-menu-list.active {
    max-height: 1000px;
  }

  .description-text p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .description-text p:first-child {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .quote-form-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .quote-form-content {
    position: static;
  }

  .process-timeline {
    max-width: 100%;
  }

  .process-step-card {
    flex-direction: column;
    text-align: center;
  }

  .step-icon-wrapper {
    margin: 0 auto 1.5rem;
  }

  .step-connector {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-form-wrapper {
    grid-template-columns: 1fr;
  }

  .quote-form-content {
    position: static;
  }

  .quote-form .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 5rem 0 4rem;
  }

  .service-hero h1 {
    font-size: 2rem;
  }

  .service-hero-cta {
    flex-direction: column;
  }

  .service-hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .service-hero-slider {
    height: 350px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  .slider-dots {
    bottom: 15px;
  }

  .service-description {
    padding: 3rem 0;
  }

  .service-description-layout {
    gap: 1.25rem;
  }

  .sidebar-menu-header {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .sidebar-menu-link {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }

  .description-text {
    margin-top: 2rem;
    padding: 2rem;
  }

  .description-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .description-text p:first-child {
    font-size: 1rem;
  }

  .process-step-card {
    padding: 1.5rem;
  }

  .step-content h3 {
    font-size: 1.5rem;
  }

  .benefits-stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .form-intro-card {
    padding: 2rem;
  }

  .feature-card,
  .related-service-card {
    padding: 2rem;
  }

  .quote-form {
    padding: 2rem;
  }

  .benefits-card {
    padding: 2rem;
  }

  .metric-value {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .service-hero {
    padding: 4rem 0 3rem;
  }

  .service-hero h1 {
    font-size: 1.75rem;
  }

  .service-hero-description {
    font-size: 1rem;
  }

  .service-badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .badge-icon {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .service-hero-slider {
    height: 300px;
    border-radius: 18px;
  }

  .slider-nav {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .slider-prev {
    left: 8px;
  }

  .slider-next {
    right: 8px;
  }

  .slider-dots {
    bottom: 10px;
    gap: 8px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .service-description {
    padding: 2.5rem 0;
  }

  .description-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .description-text p:first-child {
    font-size: 0.95rem;
  }

  .features-grid,
  .related-services-grid {
    grid-template-columns: 1fr;
  }

  .quote-form label {
    padding: 0.875rem 1rem;
  }
}

/* Certificates Section - Modern Grid Design */
.certificates-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #fafbfc 0%, #f5f7fa 100%);
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.certificate-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.certificate-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.certificate-link * {
  pointer-events: none;
}

.certificate-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  background: #f8f9fa;
}

.certificate-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.certificate-card:hover .certificate-image-wrapper img {
  transform: scale (1.05);
}

.certificate-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 181, 255, 0.9) 0%, rgba(197, 168, 232, 0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.certificate-card:hover .certificate-overlay {
  opacity: 1;
}

.certificate-overlay i {
  font-size: 2.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.certificate-overlay span {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.certificate-info {
  padding: 0.75rem 1.5rem;
  background: #fff;
  flex: 1;
  display: flex;
  align-items: center;
  border-top: 1px solid #ededed;
}

.certificate-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

.certificate-card:hover .certificate-info h3 {
}

/* GLightbox Custom Styles */
.glightbox-clean .gslide-description {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
}

.glightbox-clean .gslide-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.glightbox-clean .gslide-image img {
  border-radius: 16px;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.glightbox-clean .gclose {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  top: 20px;
  right: 20px;
}

.glightbox-clean .gclose:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.glightbox-clean .gslide-video {
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    width: 45px;
    height: 45px;
  }

  .glightbox-clean .gclose {
    width: 45px;
    height: 45px;
    top: 10px;
    right: 10px;
  }
}

/* Responsive Design for Certificates */
@media (max-width: 992px) {
  .certificates-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .certificates-section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .certificates-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
  }

  .certificate-info {
    padding: 1.5rem 1.25rem;
  }

  .certificate-info h3 {
    font-size: 1rem;
  }

  .certificate-overlay i {
    font-size: 2rem;
  }

  .certificate-overlay span {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .certificates-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .certificates-section {
    padding: 3rem 0;
  }

  .certificate-card {
    border-radius: 20px;
  }

  .certificate-info {
    padding: 1.25rem 1rem;
  }

  .certificate-info h3 {
    font-size: 0.95rem;
  }
}

/* Reference Gallery */
.reference-gallery {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #f7f9fc 0%, #eef2f7 100%);
}

.reference-gallery .container {
  width: 80%;
}

.reference-gallery .section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.reference-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(15, 35, 65, 0.08), 0 0 0 1px rgba(15, 35, 65, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 35, 65, 0.12), 0 0 0 1px rgba(15, 35, 65, 0.08);
}

.reference-image {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reference-image img {
}

.reference-card:hover .reference-image img {
}

.contact-description{
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 28px;
}

@media (max-width: 768px) {
  .reference-gallery {
    padding: 4rem 0;
  }

  .reference-gallery .container {
    width: 90%;
  }

  .reference-grid {
    gap: 1.25rem;
  }
}

/* Service Case Studies */
.service-case-studies {
  padding: 6rem 0;
  background: #ffffff;
}

.service-case-studies .container {
  width: 80%;
}

.service-case-studies .section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.case-card {
  background: linear-gradient(145deg, rgba(89, 196, 255, 0.08), rgba(197, 168, 232, 0.08));
  border-radius: 24px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  box-shadow: 0 16px 40px rgba(31, 52, 73, 0.12), 0 0 0 1px rgba(31, 52, 73, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(31, 52, 73, 0.18), 0 0 0 1px rgba(31, 52, 73, 0.1);
}

.case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(31, 52, 73, 0.08);
  color: #1f3449;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.case-metric {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #1f3449;
}

.case-metric span:first-child {
  font-size: 2rem;
  font-weight: 700;
}

.case-metric span:last-child {
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  opacity: 0.75;
}

.case-body h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.case-body p {
  color: #526479;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.case-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.case-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #3c4d62;
  font-size: 0.95rem;
}

.case-points li i {
  color: #59c4ff;
}

@media (max-width: 992px) {
  .service-case-studies .container {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .case-card {
    padding: 2rem;
  }

  .case-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .case-metric {
    align-items: flex-start;
  }
}

/* Service FAQ */
.service-faq {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #eef2f7 0%, #f9fbff 100%);
}

.service-faq .container {
  width: 80%;
}

.service-faq .section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-accordion {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.service-faq-item {
  width: 49%;
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 28px rgba(31, 52, 73, 0.12), 0 0 0 1px rgba(31, 52, 73, 0.06);
  border: 1px solid rgba(89, 196, 255, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-faq-item[open] {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(31, 52, 73, 0.16), 0 0 0 1px rgba(89, 196, 255, 0.25);
}

.service-faq-item summary {
  list-style: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f3449;
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
}

.service-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-faq-item summary::after {
  content: '\f107';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  color: #59c4ff;
  transition: transform 0.3s ease;
}

.service-faq-item[open] summary::after {
  transform: rotate(180deg);
}

.service-faq-answer {
  margin-top: 1rem;
  color: #526479;
  line-height: 1.85;
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  .service-faq {
    padding: 4rem 0;
  }

  .service-faq .container {
    width: 90%;
  }
}

