/* ============================================================
   TEXNİKİ SERVİS SƏHİFƏSİ — servis.css
   ============================================================ */

/* ── Hero ── */
.servis-hero {
  background: linear-gradient(135deg, var(--navy, #0a1628) 0%, #112240 100%);
  padding: 96px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.servis-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(37,99,235,0.15) 0%, transparent 70%);
}

.servis-hero--banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.servis-hero--banner::before {
  background: rgba(10, 22, 40, 0.65);
}
.servis-hero-content { position: relative; z-index: 1; }

.servis-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(37,99,235,0.4);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.servis-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}

.servis-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Shared container ── */
.servis-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

/* ── Cards Section ── */
.servis-cards-section {
  background: #fff;
  padding: 80px 0;
}

.servis-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.servis-section-header h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy, #0a1628);
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}
.servis-section-header p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.servis-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.servis-card {
  background: var(--gray-50, #f8fafc);
  border: 1px solid var(--gray-100, #f1f5f9);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.servis-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.1);
  background: #fff;
}

.servis-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
}

.servis-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy, #0a1628);
  margin: 0;
  line-height: 1.3;
}

.servis-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.65;
}

/* ── How It Works Section ── */
.servis-how-section {
  background: var(--gray-50, #f8fafc);
  padding: 80px 0;
}

.servis-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step-counter;
}

.servis-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--gray-100, #f1f5f9);
  transition: transform 0.25s, box-shadow 0.25s;
}
.servis-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,0.08);
}

.servis-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy, #0a1628);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.servis-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy, #0a1628);
  margin: 0;
}

.servis-step p {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* ── CTA Banner (optional inline) ── */
.servis-cta-section {
  background: linear-gradient(135deg, var(--navy, #0a1628) 0%, #1e3a5f 100%);
  padding: 64px 0;
  text-align: center;
}
.servis-cta-section h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
}
.servis-cta-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin: 0 auto 32px;
  max-width: 460px;
  line-height: 1.6;
}
.servis-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: var(--accent, #2563eb);
  color: #fff;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.servis-cta-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}

/* ── Footer ── */
.home-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

.site-footer {
  background: #0a0f1e !important;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.footer-top {
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.footer-logo {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  display: block;
}
.footer-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 0 0 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.footer-socials a:hover {
  background: var(--accent, #2563eb);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links a i {
  font-size: 11px;
  color: var(--accent, #2563eb);
  transition: transform 0.2s;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-links a:hover i { transform: translateX(2px); }

.footer-contact-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(37,99,235,0.18);
  color: var(--accent, #2563eb);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: #fff; }

.footer-bottom {
  padding: 18px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom p {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ── Video Slider Section ── */
.servis-video-section {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--gray-100, #f1f5f9);
}

.sv-slider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sv-track-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.sv-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 2px 16px;
}
.sv-track::-webkit-scrollbar { display: none; }

.sv-card {
  flex-shrink: 0;
  width: 360px;
  background: var(--gray-50, #f8fafc);
  border: 1px solid var(--gray-100, #f1f5f9);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.sv-card:hover {
  box-shadow: 0 10px 32px rgba(10,22,40,0.1);
  transform: translateY(-3px);
}

.sv-video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.sv-video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.sv-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sv-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy, #0a1628);
  margin: 0;
  line-height: 1.4;
}

.sv-card-desc {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.sv-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200, #e2e8f0);
  background: #fff;
  color: #64748b;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sv-nav:hover {
  background: var(--navy, #0a1628);
  color: #fff;
  border-color: var(--navy, #0a1628);
}

@media (max-width: 768px) {
  .servis-video-section { padding: 56px 0; }
  .sv-card { width: 280px; }
}
@media (max-width: 480px) {
  .sv-card { width: calc(100vw - 80px); }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .home-container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .servis-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .servis-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .servis-container { padding: 0 16px; }
  .servis-cards-grid { grid-template-columns: 1fr; }
  .servis-steps { grid-template-columns: 1fr; }
  .servis-cards-section,
  .servis-how-section { padding: 56px 0; }
}