/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* ===== Design System ===== */ :root {
  /*--bg: #0a0b0c;*/
  /*--card: linear-gradient(145deg, #0e0e0f 0%, #151618 100%);*/
  --accent: #e31e24;
  --accent-light: #ff8e5c;
  --radius: 24px;
  /* --shadow: 0 12px 40px rgba(0, 0, 0, 0*/ .6);
  /* --border: 1px solid rgba(255, 255, 255, 0.08);*/
  --font: 'Inter', system-ui, sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-secondary: rgba(255, 255, 255, 0.7);
}
/* ===== Main Showcase ===== */
.comparison-section {
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
 /* background: radial-gradient(circle at center, #0a0b0c 0%, #070809 100%);*/
}
.comparison-card {
  display: flex;
  max-width: 1200px;
  width: 100%;
  /* background: var(--card);
            border: var(--border);
            border-radius: var(--radius);*/
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
/* ===== Custom Slider ===== */
.comparison-slider {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.before-image, .after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}
.after-image {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  transition: clip-path 0.1s ease-out;
}
/* Slider Handle */
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: 3px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  will-change: transform;
  touch-action: none;
  -webkit-touch-callout: none;
}
.slider-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.slider-handle::before, .slider-handle::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 1px;
}
.slider-handle::before {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 30%;
  transform: translateY(-50%);
}
.slider-handle::after {
  width: 2px;
  height: 12px;
  top: 50%;
  right: 30%;
  transform: translateY(-50%);
}
/* Divider Line */
.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255, 110, 46, 0.5);
  transform: translateX(-50%);
  transition: left 0.1s ease-out;
  z-index: 5;
}
/* Labels */
.before-label, .after-label {
  position: absolute;
  top: 20px;
  padding: 6px 12px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  font-family: var(--font);
  pointer-events: none;
}
.before-label {
  left: 20px;
  background: rgba(195, 44, 44, 0.7);
}
.after-label {
  right: 20px;
  background: rgba(44, 195, 44, 0.7);
}
/* Interactive Hint */
.slider-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.comparison-slider:hover .slider-hint {
  opacity: 1;
}
/* ===== Info Panel ===== */
.comparison-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(145deg, #0d0e0f 0%, #121316 100%);
  position: relative;
  text-align: center;
}
.comparison-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  margin-bottom: 30px;
}
.comparison-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 280px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.stats-container {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
/* ------------------ */
.comparison-credits {
  font-size: .8rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 24px;
}
.comparison-credits a {
  color: var(--accent-lite)
}
/* ------------------ */
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.apply-button {
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  color: #000;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(255, 110, 46, 0.3);
}
.apply-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 110, 46, 0.4);
}
.apply-button svg {
  width: 16px;
  height: 16px;
}
.accent-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--accent-light));
}
/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .comparison-section {
    padding: 80px 16px;
  }
  .comparison-info {
    padding: 30px;
  }
  .stats-container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .comparison-card {
    flex-direction: column;
  }
  .comparison-slider, .comparison-info {
    flex: unset;
  }
  .comparison-info {
    padding: 40px 24px;
    border-top: var(--border);
  }
  .comparison-title {
    writing-mode: horizontal-tb;
    margin-bottom: 20px;
  }
  .stats-container {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .comparison-section {
    padding: 60px 12px;
  }
  .comparison-info {
    padding: 32px 20px;
  }
  .slider-hint {
    font-size: 12px;
    padding: 8px 16px;
    bottom: 16px;
  }
  .slider-handle {
    width: 36px;
    height: 36px;
  }
  .stats-container {
    flex-direction: column;
    gap: 15px;
  }
  .stat-value {
    font-size: 1.8rem;
  }
}
.slider-handle.active {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
@media (hover: none) {
  .slider-hint {
    display: none;
  }
  .slider-handle {
    width: 48px;
    height: 48px;
  }
  .comparison-slider {
    cursor: default;
  }
  /* Zoom Image */
  .magnifier-lens {
    position: absolute;
    border: 1px solid #000;
    border-radius: 50%;
    cursor: crosshair;
    box-shadow: 0 0 5px #000;
    pointer-events: none;
    visibility: hidden;
    background-repeat: no-repeat;
  }
  .image-container {
    position: relative;
    display: inline-block;
  }
  img {
    display: block;
    max-width: 100%;
  }
  /* Zoom Image END */
  /*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
  .clients .swiper {
    padding: 10px 0;
  }
  .clients .swiper-wrapper {
    height: auto;
  }
  .clients .swiper-slide img {
    transition: 0.3s;
  }
  .clients .swiper-slide img:hover {
    transform: scale(1.1);
  }
  /*--------------------------------------------------------------	
	  /* whatsapp Button */
  /*-------------------------------------------------------------- */
	

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  transition: 0.3s;
}

.contact .info-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item .icon-wrapper {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-wrapper i {
  color: var(--accent-color);
  font-size: 24px;
  transition: 0.3s;
}

.contact .info-item:hover .icon-wrapper {
  background: var(--accent-color);
}

.contact .info-item:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.contact .info-item p {
  margin: 0;
  font-size: 14px;
  color: var(--default-color);
}

.contact .php-email-form {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .php-email-form .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 5px;
  transition: 0.3s;
}

.contact .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form textarea.form-control {
  min-height: 120px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact .info-item {
    padding: 20px;
  }

  .contact .info-item .icon-wrapper {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .contact .info-item .icon-wrapper i {
    font-size: 20px;
  }

  .contact .info-item h3 {
    font-size: 16px;
  }

  .contact .php-email-form {
    padding: 30px 20px;
  }
}

