/*
  Modern UI Overrides for Kvark Servis
  =====================================
  Complete visual modernization layer
*/

/* === Variables === */
:root {
  --primary: #0b5ed7;
  --primary-light: #3d8bfd;
  --primary-dark: #0a4eb8;
  --accent: #06d6a0;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 50px -12px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Global === */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(11,94,215,0.15);
  color: var(--dark);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* === Typography === */
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h2 { font-size: 36px; }
h3 { font-size: 20px; font-weight: 600; }
p { font-size: 15px; color: var(--gray-600); line-height: 1.75; }

/* === Navigation === */
.nav-area .navbar-area .main-nav {
  background: rgba(255,255,255,0.88);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a {
  font-weight: 500; font-size: 14px; color: var(--dark);
  padding: 8px 14px; border-radius: var(--radius-xs);
  transition: var(--transition);
}
.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a::before { display: none; }
.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a:hover {
  color: var(--primary); background: rgba(11,94,215,0.06);
}
.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a.active {
  color: var(--primary); background: rgba(11,94,215,0.08);
}

/* Nav CTA */
.nav-area .others-option .subscribe a {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50px; padding: 11px 28px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 4px 14px rgba(11,94,215,0.3);
  transition: var(--transition);
}
.nav-area .others-option .subscribe a:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 6px 20px rgba(11,94,215,0.4);
  transform: translateY(-1px);
}

/* === Buttons === */
.default-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50px; padding: 14px 36px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(11,94,215,0.3);
  transition: var(--transition); border: none;
}
.default-btn::before { display: none; }
.default-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 8px 25px rgba(11,94,215,0.4);
  transform: translateY(-2px);
}
.default-btn.page-btn { border-radius: 50px; }

.btn-glass {
  background: rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(10px);
  box-shadow: none !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.btn-glass:hover {
  background: rgba(255,255,255,0.2) !important;
  box-shadow: none !important;
  transform: translateY(-2px);
}

/* === Section Tag (label above h2) === */
.section-tag {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.page-title-tag {
  display: block;
  font-size: 13px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

/* === Hero === */
.main-banner-area, .main-banner-area-four {
  background-image: url(/assets/img/landing.jpg);
  position: relative;
}
.main-banner-area::before, .main-banner-area-four::before {
  background: linear-gradient(145deg, rgba(10,18,40,0.82) 0%, rgba(11,94,215,0.5) 100%);
  opacity: 1;
}
.main-banner-area .banner-text h1, .main-banner-area-four .banner-text h1 {
  font-size: 54px; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.12; margin-bottom: 20px;
}
.main-banner-area .banner-text p, .main-banner-area-four .banner-text p {
  font-size: 18px; opacity: 0.9; line-height: 1.6; margin-bottom: 30px;
}
.hero-badge {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  color: rgba(255,255,255,0.85) !important;
  font-size: 13px !important; font-weight: 500 !important;
  letter-spacing: 1px !important; text-transform: uppercase !important;
}

/* News in hero */
.main-banner-area .list-group-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 6px;
  transition: var(--transition);
}
.main-banner-area .list-group-item:hover { background: rgba(255,255,255,0.16); }
.main-banner-area .list-group-item .badge {
  background: rgba(255,255,255,0.18) !important;
  border-radius: 50px; font-weight: 500;
}

/* === Stats Ribbon === */
.stats-ribbon {
  background: var(--white);
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}
.stats-row {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid var(--gray-100);
  transition: var(--transition);
}
.stat-item:hover { background: var(--gray-50); }
.stats-row .col-6:last-child .stat-item,
.stats-row .col-lg-3:last-child .stat-item { border-right: none; }
.stat-number {
  font-size: 28px; font-weight: 800;
  color: var(--primary); letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 13px; font-weight: 500;
  color: var(--gray-500); margin-top: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* === Section Title === */
.section-title { margin-bottom: 50px; }
.section-title h2 {
  font-size: 36px; font-weight: 800;
  letter-spacing: -0.03em;
}
.section-title h2::after {
  content: ""; display: block;
  width: 50px; height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 2px; margin: 16px auto 0;
}
.section-title.white-title h2::after { background: rgba(255,255,255,0.3); }
.section-title p {
  max-width: 600px; margin: 8px auto 0;
  font-size: 16px; color: var(--gray-500);
}
.section-title.white-title p { color: rgba(255,255,255,0.75); }

.content-heading {
  font-size: 32px !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* === Feature Cards === */
.single-facility {
  border: none;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.single-facility::before { display: none; }
.single-facility::after {
  content: ""; position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  opacity: 0; transition: var(--transition);
}
.single-facility:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.single-facility:hover::after { opacity: 1; }

.facility-icon-wrap {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(11,94,215,0.08), rgba(11,94,215,0.14));
  border-radius: 14px;
  margin-bottom: 18px;
  transition: var(--transition);
}
.facility-icon-wrap i {
  font-size: 28px;
  color: var(--primary);
}
.single-facility:hover .facility-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.single-facility:hover .facility-icon-wrap i { color: var(--white); }

.single-facility h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.single-facility p { font-size: 14px; line-height: 1.7; }
/* Hide old img icons */
.single-facility > img { display: none; }

/* === Service Cards (index) === */
.services-modern {
  background: var(--gray-50);
  padding: 100px 0;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,94,215,0.6) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
}
.service-card-overlay i {
  width: 50px; height: 50px; line-height: 50px;
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  font-size: 24px;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 10px; color: var(--dark);
}
.service-card-body p {
  font-size: 14px; color: var(--gray-500);
  line-height: 1.7; flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 12px;
  transition: var(--transition);
}
.service-link i { font-size: 20px; transition: var(--transition); }
.service-link:hover { color: var(--primary-dark); }
.service-link:hover i { transform: translateX(4px); }

/* === Process Section (index) === */
.process-modern {
  background: linear-gradient(145deg, var(--dark) 0%, var(--primary-dark) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.process-modern::before {
  content: "";
  position: absolute; inset: 0;
  background: url(/assets/img/landing.jpg) center/cover no-repeat;
  opacity: 0.06;
}

.process-step {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.process-step:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}
.process-number {
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.process-icon {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.process-icon i {
  font-size: 28px; color: var(--primary);
}
.process-step h3 {
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.process-step p {
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* === CTA === */
.cta-modern {
  padding: 80px 0;
  background: var(--gray-50);
}
.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  padding: 50px 48px;
  box-shadow: 0 20px 60px rgba(11,94,215,0.2);
}
.cta-card h2 {
  color: var(--white); font-size: 28px;
  font-weight: 800; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.cta-card p {
  color: rgba(255,255,255,0.85);
  font-size: 16px; margin-bottom: 0;
}
.cta-card .default-btn {
  background: var(--white) !important;
  color: var(--primary) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.cta-card .default-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* === Partners === */
.partners-modern {
  padding: 80px 0;
  background: var(--white);
}
.partner-logo {
  max-width: 320px;
  max-height: 100px;
  opacity: 0.7;
  filter: grayscale(30%);
  transition: var(--transition);
}
.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* === Page Title Area === */
.page-title-area {
  padding-top: 200px;
  padding-bottom: 100px;
}
.page-title-area::before {
  background: linear-gradient(145deg, rgba(10,18,40,0.75) 0%, rgba(11,94,215,0.4) 100%);
  opacity: 1;
}
.page-title-area .page-title-content h2 {
  font-size: 46px; font-weight: 800; letter-spacing: -0.03em;
}

/* === Content Section (subpages) === */
.content-section {
  padding: 80px 0;
  background: var(--white);
}
.content-section:nth-child(even) {
  background: var(--gray-50);
}
/* Override old inline bg */
section[style*="background-color:#eaf3fe"] {
  background-color: var(--gray-50) !important;
}

.computer-content {
  max-width: 860px;
  margin: 0 auto;
}
.computer-content h3 {
  font-size: 22px; font-weight: 700;
  margin-top: 28px; margin-bottom: 12px;
}
.computer-content p {
  font-size: 15px; line-height: 1.8;
  color: var(--gray-600);
}
.computer-content ul li {
  margin-bottom: 10px; line-height: 1.7;
}
.computer-content ul li b { color: var(--dark); }

/* === Highlight Cards (O nás) === */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.highlight-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.highlight-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.highlight-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(11,94,215,0.08), rgba(11,94,215,0.14));
  border-radius: 12px;
  flex-shrink: 0;
}
.highlight-icon i {
  font-size: 22px; color: var(--primary);
}
.highlight-card strong {
  font-size: 15px; color: var(--dark); display: block;
}
.highlight-card p {
  font-size: 13px; color: var(--gray-500);
  margin-bottom: 0; line-height: 1.4;
}

/* === Value Cards (O nás) === */
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.value-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(11,94,215,0.08), rgba(11,94,215,0.14));
  border-radius: 14px;
  margin-bottom: 18px;
}
.value-icon i {
  font-size: 26px; color: var(--primary);
}
.value-card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px; color: var(--gray-500);
  line-height: 1.7; margin-bottom: 0;
}

/* === Service Detail Cards (Naše služby) === */
.service-detail-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: var(--transition);
  height: 100%;
}
.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.service-detail-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(11,94,215,0.08), rgba(11,94,215,0.14));
  border-radius: 14px;
  flex-shrink: 0;
}
.service-detail-icon i {
  font-size: 26px; color: var(--primary);
}
.service-detail-card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 8px; margin-top: 0;
}
.service-detail-card p {
  font-size: 14px; color: var(--gray-500);
  line-height: 1.7; margin-bottom: 0;
}

/* === Industry List (Naše služby) === */
.industry-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.industry-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.industry-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}
.industry-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(11,94,215,0.1), rgba(11,94,215,0.18));
  border-radius: 10px;
  flex-shrink: 0;
}
.industry-icon i {
  font-size: 20px; color: var(--primary);
}
.industry-item strong {
  font-size: 15px; color: var(--dark); display: block;
}
.industry-item p {
  font-size: 13px; color: var(--gray-500);
  margin-bottom: 0; line-height: 1.5;
}

/* === Process Detail Steps (Proces výroby page) === */
.process-detail-step {
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.process-detail-step.last {
  border-bottom: none;
}
.step-badge {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-weight: 800; font-size: 16px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(11,94,215,0.25);
}
.process-detail-step h3 {
  font-size: 22px; font-weight: 700;
  margin-bottom: 10px; margin-top: 0;
}
.process-detail-step p {
  color: var(--gray-600); margin-bottom: 12px;
}
.step-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}
.step-check i {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-check strong {
  color: var(--dark);
}

/* === Footer === */
.footer-top-area {
  background-attachment: scroll;
}
.footer-top-area::before {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
  opacity: 0.97;
}
.single-widget h3 {
  font-size: 20px; font-weight: 700;
}
.single-widget h3::before {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  height: 3px; width: 40px; border-radius: 2px;
}
.single-widget ul li { font-size: 14px; }

.footer-top-area .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xs);
  color: var(--white); font-size: 14px;
  transition: var(--transition);
}
.footer-top-area .form-control::placeholder {
  color: rgba(255,255,255,0.4);
}
.footer-top-area .form-control:focus {
  border-color: var(--primary-light);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(11,94,215,0.15);
}
.footer-bottom-area {
  background: var(--dark) !important;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-area .copy-right p {
  font-size: 13px; opacity: 0.6;
}

/* === Footer Modern === */
.footer-modern {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  padding: 80px 0 60px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}
.footer-contact-link:hover {
  color: var(--primary-light);
}
.footer-contact-link i {
  font-size: 18px; color: var(--primary-light);
}
.footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--primary-light);
  border-radius: 1px;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}
.footer-links li a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-info-list {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-info-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-info-list li span {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.footer-form .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xs);
  color: var(--white);
  font-size: 14px;
  padding: 10px 14px;
  transition: var(--transition);
}
.footer-form .form-control::placeholder {
  color: rgba(255,255,255,0.35);
}
.footer-form .form-control:focus {
  border-color: var(--primary-light);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(11,94,215,0.15);
}
.footer-form .default-btn {
  padding: 12px 28px;
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-bottom a {
  color: var(--primary-light);
  transition: var(--transition);
}
.footer-bottom a:hover {
  color: var(--white);
}

/* === Go Top === */
.go-top {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(11,94,215,0.3);
  width: 44px; height: 44px; line-height: 44px;
}

/* === Alert === */
.alert-success {
  background: var(--white);
  border: 1px solid rgba(6,214,160,0.3);
  border-left: 4px solid var(--accent);
  color: var(--dark);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

/* === Equipment tabs === */
.products-details-tab .tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  border-bottom: none; margin-bottom: 30px;
}
.products-details-tab .tabs li { margin-bottom: 0; }
.products-details-tab .tabs li a {
  border-radius: 50px; padding: 10px 22px;
  font-size: 14px; font-weight: 500;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
}
.products-details-tab .tabs li.current a,
.products-details-tab .tabs li a:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); border-color: transparent;
  box-shadow: 0 4px 12px rgba(11,94,215,0.25);
}
.products-details-tab .tabs li a .dot { display: none; }
.products-details-tab-content { padding: 20px 0; }
.products-details-tab-content .row { align-items: center; }
.products-details-tab-content img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* === Responsive === */
@media (max-width: 767px) {
  .main-banner-area .banner-text h1,
  .main-banner-area-four .banner-text h1 { font-size: 32px; }
  .main-banner-area .banner-text p,
  .main-banner-area-four .banner-text p { font-size: 15px; }
  .section-title h2 { font-size: 28px; }
  .content-heading { font-size: 26px !important; }
  .page-title-area { padding-top: 150px; padding-bottom: 70px; }
  .page-title-area .page-title-content h2 { font-size: 30px; }
  .stats-ribbon { margin-top: -30px; }
  .stat-number { font-size: 22px; }
  .stat-item { padding: 20px 12px; }
  .service-detail-card { flex-direction: column; }
  .cta-card { padding: 32px 24px; }
  .cta-card h2 { font-size: 22px; }
  .process-detail-step { padding: 24px 0; }
  .step-badge { width: 40px; height: 40px; font-size: 14px; border-radius: 10px; }
  .services-modern,
  .process-modern { padding: 60px 0; }
  .content-section { padding: 60px 0; }
  .cta-modern { padding: 40px 0; }
  .partners-modern { padding: 50px 0; }
}

@media (min-width: 768px) and (max-width: 991px) {
  .main-banner-area .banner-text h1,
  .main-banner-area-four .banner-text h1 { font-size: 40px; }
  .section-title h2 { font-size: 32px; }
  .stats-ribbon { margin-top: -40px; }
}

/* Hide old counter-area and repair-area on index (replaced) */
/* Keep them for other pages if needed */
