﻿/* ===== AKEL — Main Stylesheet ===== */
/* Tailwind CDN + custom properties */

:root {
  --color-primary: #9c0000;
  --color-primary-dark: #7a0000;
  --color-primary-light: #b41b1b;
  --color-accent: #a90101;
  --color-dark: #1a1a2e;
  --color-dark-secondary: #2d3436;
  --color-gray-900: #1e272e;
  --color-gray-800: #2d3436;
  --color-gray-700: #475666;
  --color-gray-600: #5c767e;
  --color-gray-500: #95a5a6;
  --color-gray-400: #b2bec3;
  --color-gray-300: #dfe6e9;
  --color-gray-200: #ecf0f1;
  --color-gray-100: #f5f6fa;
  --color-white: #ffffff;
  --color-bg-light: #f8f9fa;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--color-gray-800);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container-akel {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container-akel { padding: 0 16px; }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header-scrolled { box-shadow: var(--shadow-md); }
.header-top {
  display: flex;
  align-items: center;

  padding: 12px 0;
  gap: 20px;
}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 60px; width: auto; }
.header-slogan { display: none; }
@media (min-width: 768px) {
  .header-slogan {
    display: block;
    color: var(--color-gray-700);
    font-size: 13px;
    line-height: 1.4;
    max-width: 240px;
    border-left: 2px solid var(--color-primary);
    padding-left: 14px;
  }
}
.header-contacts {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gray-800);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: var(--transition);
}
.header-phone:hover { color: var(--color-primary); }
.header-phone [data-lucide],
.header-email [data-lucide] {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary);
  stroke-width: 2;
  flex-shrink: 0;
  transition: var(--transition);
}
.header-phone:hover [data-lucide],
.header-email:hover [data-lucide] {
  stroke: var(--color-primary-dark);
}
.header-email {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--color-gray-600);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.header-email:hover { color: var(--color-primary); }
@media (min-width: 1024px) {
  .header-email { display: flex; }
}

/* Navigation */
.header-nav {
  border-top: 1px solid var(--color-gray-200);
  background: var(--color-white);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  justify-content: space-between;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 14px 18px;
  color: var(--color-gray-800);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: var(--color-gray-100);
}
.nav-link.has-sub { display: flex; align-items: center; gap: 4px; }
.nav-link .arrow { font-size: 10px; transition: var(--transition); }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 50;
  padding: 8px 0;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-link {
  display: block;
  padding: 10px 20px;
  color: var(--color-gray-800);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.nav-dropdown-link:hover {
  background: var(--color-gray-100);
  color: var(--color-primary);
  padding-left: 26px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.mobile-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-gray-800);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1023px) {
  .mobile-toggle { display: flex; }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    z-index: 200;
    overflow-y: auto;
    padding-top: 80px;
    border-top: none;
  }
  .header-nav.active { right: 0; }
  .nav-list { flex-direction: column; }
  .nav-link { padding: 16px 24px; font-size: 16px; border-bottom: 1px solid var(--color-gray-200); }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding-left: 16px;
    display: none;
    background: var(--color-gray-100);
  }
  .nav-item.open .nav-dropdown { display: block; }
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
}
.mobile-overlay.active { display: block; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-dark-secondary) 100%);
  color: var(--color-white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(156,0,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: #ff4444; }
.hero-subtitle {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--color-gray-400);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
@media (max-width: 768px) {
  .hero { padding: 60px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-image { order: -1; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
  line-height: 1.2;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(156,0,0,0.35);
  color: var(--color-white);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--color-gray-800);
  border-color: var(--color-gray-300);
}
.btn-outline-dark:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--color-gray-900); color: var(--color-white); }
.section-light { background: var(--color-bg-light); }
.section-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--color-gray-500);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-title-left { text-align: left; }
.section-subtitle-left { text-align: left; margin: 0 0 32px; }

/* ===== FEATURES / SERVICES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-gray-200);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--color-white);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-gray-900);
}
.feature-card p { color: var(--color-gray-600); font-size: 14px; line-height: 1.7; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}
.product-card-img {`n  width: 100%;`n  height: 200px;`n  object-fit: cover;`n  background: var(--color-gray-100);`n  position: relative;`n  display: flex;`n  align-items: center;`n  justify-content: center;`n}
.product-card-body { padding: 20px; }
.product-card-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.product-card-body p { font-size: 13px; color: var(--color-gray-600); margin-bottom: 16px; }

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ===== PRODUCTS SECTION NEW ===== */
.products-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card-new {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.product-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card-new:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
}

.product-card-new:hover::before {
  opacity: 1;
}

.product-card-new-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(156,0,0,0.08), rgba(180,27,27,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-new:hover .product-card-new-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(156,0,0,0.25);
}

.product-card-new-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 8px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.product-card-new:hover .product-card-new-title {
  color: var(--color-primary);
}

.product-card-new-desc {
  font-size: 13px;
  color: var(--color-gray-500);
  margin-bottom: 20px;
  line-height: 1.5;
  flex: 1;
}

.product-card-new-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.product-card-new-link::after {
  content: "\2192";
  display: inline-block;
  transition: transform 0.3s ease;
}

.product-card-new:hover .product-card-new-link::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .products-grid-new { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-card-new { padding: 24px 16px 20px; }
  .product-card-new-icon { width: 52px; height: 52px; border-radius: 12px; margin-bottom: 16px; }
  .product-card-new-icon svg { width: 36px; height: 36px; }
  .product-card-new-title { font-size: 14px; }
}

@media (max-width: 480px) {
  .products-grid-new { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .products-grid-new { grid-template-columns: repeat(3, 1fr); }
}

/* Staggered animation for product cards */
.section-products .fade-up:nth-child(2) { transition-delay: 0.05s; }
.section-products .fade-up:nth-child(3) { transition-delay: 0.1s; }
.section-products .fade-up:nth-child(4) { transition-delay: 0.15s; }
.section-products .fade-up:nth-child(5) { transition-delay: 0.2s; }
.section-products .fade-up:nth-child(6) { transition-delay: 0.25s; }
.section-products .fade-up:nth-child(7) { transition-delay: 0.3s; }
.section-products .fade-up:nth-child(8) { transition-delay: 0.35s; }
.section-products .fade-up:nth-child(9) { transition-delay: 0.4s; }


/* Section products specific */
.section-products {
  background: var(--color-white);
  position: relative;
}

.section-products .section-header {
  margin-bottom: 48px;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.stat-number {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  color: var(--color-primary-light);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: var(--color-gray-400);
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ===== CLIENTS GRID ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  height: 90px;
  border: 1px solid var(--color-gray-200);
  transition: var(--transition);
}
.client-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.client-item img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.5);
  opacity: 0.8;
  transition: var(--transition);
}
.client-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}
@media (max-width: 768px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .client-item { height: 70px; padding: 12px; }
  .client-item img { max-height: 38px; }
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--color-white);
}
.cta-section h2 {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 32px;
}
.cta-section .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}
.cta-section .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 16px 0;
  font-size: 13px;
  color: var(--color-gray-500);
}
.breadcrumbs a {
  color: var(--color-gray-500);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { color: var(--color-gray-800); }
.breadcrumbs .sep { margin: 0 8px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-400);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 50px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--color-gray-400);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--color-primary-light); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  font-size: 13px;
  display: flex;

  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-contacts { margin-top: 16px; }
.footer-contacts p {
  font-size: 13px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contacts a {
  color: var(--color-gray-400);
  text-decoration: none;
}
.footer-contacts a:hover { color: var(--color-white); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--color-gray-900), var(--color-dark-secondary));
  color: var(--color-white);
  padding: 60px 0 40px;
}
.page-header h1 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
}
.page-header p {
  color: var(--color-gray-400);
  font-size: 16px;
  max-width: 600px;
}

/* ===== CONTENT PAGE ===== */
.content-page { padding: 40px 0 80px; }
.content-page h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 16px;
  margin-top: 40px;
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 12px;
  margin-top: 28px;
}
.content-page p { margin-bottom: 16px; color: var(--color-gray-600); line-height: 1.8; }
.content-page ul, .content-page ol { margin-bottom: 20px; padding-left: 20px; }
.content-page li { margin-bottom: 8px; color: var(--color-gray-600); }

/* ===== NEWS CARDS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-card-body { padding: 20px; }
.news-card-date { font-size: 12px; color: var(--color-gray-500); margin-bottom: 8px; }
.news-card-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.news-card-body p { font-size: 13px; color: var(--color-gray-600); margin-bottom: 16px; }

@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-700);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: var(--transition);
  background: var(--color-white);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(156,0,0,0.1);
}
textarea.form-control { min-height: 120px; resize: vertical; }

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 10px 22px;
  border: 2px solid var(--color-gray-200);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: var(--color-white);
  color: var(--color-gray-600);
  font-family: inherit;
}
.filter-tab:hover { border-color: var(--color-primary-light); color: var(--color-primary); }
.filter-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.visible { opacity: 1; }

/* ===== TABLE ===== */
.table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-gray-200);
}
table tr:nth-child(even) td {
  background: var(--color-gray-100);
}
table tr:hover td {
  background: rgba(156,0,0,0.04);
}

/* ===== PRODUCT SPECS ===== */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.spec-item {
  display: flex;

  padding: 12px 16px;
  background: var(--color-gray-100);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.spec-label { color: var(--color-gray-600); }
.spec-value { font-weight: 600; color: var(--color-gray-800); }

/* ===== MISC ===== */
.text-primary { color: var(--color-primary); }
.bg-primary { background: var(--color-primary); }
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }
.gap-4 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* ===== CERTIFICATES ===== */
.certs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.cert-item {
  text-align: center;
  transition: var(--transition);
}
.cert-item:hover { transform: translateY(-4px); }
.cert-item img {
  width: 120px;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

/* ===== PAGE HEADER SMALL ===== */
.page-header-sm {
  background: linear-gradient(135deg, var(--color-gray-900), var(--color-dark-secondary));
  color: var(--color-white);
  padding: 40px 0 28px;
}
.page-header-sm h1 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
}

/* Contact info block */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact-info-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-primary);
}
.contact-info-card p, .contact-info-card a {
  font-size: 14px;
  color: var(--color-gray-600);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
}

/* Map placeholder */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}



