/* ============================================
   HYDRAULIK — Industry color overrides
   Primary: #0891b2 (cyan/teal)
   ============================================ */
/* base.css is loaded via HTML <link>, no @import needed */

:root {
  --color-primary: #0891b2;
  --color-primary-dark: #0e7490;
  --color-secondary: #f59e0b;
}

/* Service detail lists */
.service-details {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.service-details li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.service-details li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}

/* Hero accent bar — water wave gradient */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, var(--color-primary), #164e63);
}

/* Service icon color */
.service-icon {
  background: rgba(8, 145, 178, 0.1);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* CTA section gradient — deep ocean */
.cta-section {
  background: linear-gradient(135deg, #164e63 0%, #0e7490 50%, #0891b2 100%);
}

/* Testimonial accent */
.testimonial-card {
  border-top: 3px solid var(--color-primary);
}

/* Contact form focus */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

/* Page header accent */
.page-header {
  border-bottom: 3px solid var(--color-primary);
}

/* Emergency badge for awaria */
.service-card:nth-child(2) {
  border-left: 4px solid #ef4444;
}

/* Active nav link */
.nav-links a[href]:hover {
  color: var(--color-primary);
}

/* Stats number color override */
.stat-number {
  color: var(--color-primary);
}
