/* ============================================================
   HOME PAGE — CSS  (home.css)
   ============================================================ */

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

/* ── Section Heading ── */
.section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
  justify-content: center;
}
.section-heading h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  margin: 0;
  letter-spacing: -0.3px;
}
.section-heading-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent));
  border-radius: 2px;
}
.section-heading-line:last-child {
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* Light variant (on dark bg) */
.section-heading--light h2 { color: #fff; }
.section-heading-line--light {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
}
.section-heading-line--light:last-child {
  background: linear-gradient(90deg, rgba(255,255,255,0.4), transparent);
}


/* ============================================================
   DİSTRİBÜTOR LOGO KARUSELİ
   ============================================================ */
.dist-logos-section {
  background: #fff;
  border-bottom: 1px solid #e8edf3;
  padding: 28px 0 0;
  overflow: hidden;
}
.dist-logos-header {
  text-align: center;
  margin-bottom: 20px;
}
.dist-logos-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
}
.dist-logos-track-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.dist-logos-track-wrap::before,
.dist-logos-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.dist-logos-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 100%);
}
.dist-logos-track-wrap::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, #fff 100%);
}
.dist-logos-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: distScroll 28s linear infinite;
}
.dist-logos-track:hover {
  animation-play-state: paused;
}
.dist-logo-item {
  flex-shrink: 0;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e8edf3;
}
.dist-logo-item img {
  height: 48px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter .3s, opacity .3s;
}
.dist-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes distScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .dist-logo-item { padding: 14px 24px; }
  .dist-logo-item img { height: 36px; max-width: 100px; }
  .dist-logos-track-wrap::before,
  .dist-logos-track-wrap::after { width: 40px; }
}


/* ============================================================
   MƏHSUL SECTİONU
   ============================================================ */
.products-section {
  padding: 60px 0 48px;
  background: var(--gray-50, #f8fafc);
}

/* Category block */
.product-category-block {
  margin-bottom: 56px;
}
.product-category-block:last-child { margin-bottom: 0; }

/* Category title bar */
.category-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 14px 22px;
  background: var(--navy, #0a1628);
  border-radius: 8px;
  color: #fff;
}

.cat-title-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cat-title-icon {
  width: 36px; height: 36px;
  background: var(--accent, #2563eb);
  color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.cat-title-text {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.2px;
}

/* Bütün Məhsullar button */
.cat-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--navy, #001f3f);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.cat-all-btn:hover {
  background: var(--accent, #2563eb);
  transform: translateX(2px);
}
.cat-all-btn i { font-size: 11px; transition: transform 0.2s; }
.cat-all-btn:hover i { transform: translateX(3px); }

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Product Card */
.product-card {
  background: #fff;
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.11);
}

/* Card Image */
.product-card-img-link { display: block; }
.product-card-img {
  position: relative;
  background: var(--gray-50, #f8fafc);
  border-bottom: 1px solid var(--gray-100, #f1f5f9);
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.product-card-img img {
  max-width: 100%;
  max-height: 178px;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,31,63,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 8px 18px;
  border-radius: 30px;
  letter-spacing: 0.03em;
}

/* Card Body */
.product-card-body {
  padding: 18px 18px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card-title {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
}
.product-card-title a {
  color: var(--navy, #001f3f);
  text-decoration: none;
  transition: color 0.2s;
}
.product-card-title a:hover { color: var(--accent, #2563eb); }

.product-card-desc {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

.product-card-specs {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.product-card-specs li {
  font-size: 12px;
  color: #64748b;
}
.product-card-specs li span {
  font-weight: 700;
  color: #334155;
}

/* Card Footer */
.product-card-footer {
  padding: 12px 18px 18px;
}
.btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--accent, #2563eb);
  color: #fff;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  justify-content: center;
}
.btn-detail:hover {
  background: var(--navy, #001f3f);
  transform: translateY(-1px);
}
.btn-detail i { font-size: 11px; transition: transform 0.2s; }
.btn-detail:hover i { transform: translateX(3px); }


/* All Products button */
.all-products-wrap {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid var(--gray-200, #e5e7eb);
}
.btn-all-products {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 36px;
  background: var(--accent, #2563eb);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-all-products:hover {
  background: var(--navy, #0a1628);
  transform: translateY(-2px);
}
.btn-all-products i { font-size: 13px; transition: transform 0.2s; }
.btn-all-products:hover i { transform: translateX(4px); }


/* ============================================================
   VİDEOÇARX SECTİONU — FULLSCREEN BACKGROUND VIDEO
   ============================================================ */
.videobg-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arxa fon video */
.videobg-player {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Qaranlıq overlay */
.videobg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,10,30,0.55) 0%,
    rgba(0,10,30,0.45) 50%,
    rgba(0,10,30,0.65) 100%
  );
  z-index: 1;
}

/* Üzərindəki məzmun */
.videobg-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 760px;
  animation: videobg-fadein 1s ease both;
}

@keyframes videobg-fadein {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.videobg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.25);
  border: 1px solid rgba(37,99,235,0.5);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.videobg-badge i { font-size: 15px; }

.videobg-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.videobg-subtitle {
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}


/* ============================================================
   TƏRƏFDAŞlar SECTİONU
   ============================================================ */
.partners-section {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid var(--gray-100, #f1f5f9);
}

.partners-slider-wrap {
  position: relative;
  overflow: hidden;
}
/* Kənar fade effekti */
.partners-slider-wrap::before,
.partners-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partners-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.partners-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.partners-track-wrap {
  overflow: hidden;
}
.partners-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 12px 0;
  animation: partnersMarquee 45s linear infinite;
}
.partners-track:hover {
  animation-play-state: paused;
}
@keyframes partnersMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partner-item {
  flex-shrink: 0;
  width: 240px;
  height: 120px;
  background: var(--gray-50, #f8fafc);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.partner-item:hover {
  border-color: var(--accent, #2563eb);
  box-shadow: 0 6px 20px rgba(37,99,235,0.14);
  transform: translateY(-3px);
}
.partner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  box-sizing: border-box;
  filter: grayscale(50%);
  transition: filter 0.25s;
}
.partner-item:hover img { filter: grayscale(0%); }
.partner-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}

.partners-nav { display: none; }


/* ============================================================
   YAZI NÜMUNƏLƏRİ SECTİONU
   ============================================================ */
.yazinumune-section {
  padding: 64px 0;
  background: var(--navy, #001f3f);
}

.yazinumune-slider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.yazinumune-track-wrap {
  flex: 1;
  overflow: hidden;
}
.yazinumune-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 0;
}
.yazinumune-track::-webkit-scrollbar { display: none; }

.yazinumune-item {
  flex-shrink: 0;
  width: 300px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.yazinumune-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.3);
}
.yazinumune-img-wrap {
  height: 200px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yazinumune-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.yazinumune-item:hover .yazinumune-img-wrap img { transform: scale(1.05); }
.yazinumune-caption {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.yazinumune-nav {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s, transform 0.15s;
}
.yazinumune-nav:hover {
  background: var(--accent, #2563eb);
  border-color: var(--accent, #2563eb);
  transform: scale(1.08);
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a0f1e;
  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;
}


/* ============================================================
   RESPONSİV
   ============================================================ */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .video-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .home-container { padding: 0 16px; }
  .products-section { padding: 40px 0 32px; }
  .product-grid   { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .videobg-section { min-height: 60vh; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .footer-top     { padding: 36px 0 28px; }
  .section-heading { gap: 12px; margin-bottom: 24px; }
  .section-heading h2 { font-size: 20px; white-space: normal; text-align: center; }
  .category-title-bar { flex-direction: column; align-items: flex-start; gap: 12px; padding: 12px 16px; }
  .cat-title-text { font-size: 15px; }
  .cat-all-btn { width: 100%; justify-content: center; }
  .partner-item   { width: 180px; height: 96px; }
  .yazinumune-item { width: 240px; }
  .all-products-wrap { margin-top: 28px; padding-top: 24px; }
  .btn-all-products { padding: 12px 28px; font-size: 14px; }
}

@media (max-width: 480px) {
  .home-container { padding: 0 12px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card-img { height: 150px; padding: 10px; }
  .product-card-img img { max-height: 130px; }
  .product-card-body { padding: 12px 12px 8px; gap: 6px; }
  .product-card-title { font-size: 13px; }
  .product-card-desc  { display: none; }
  .product-card-footer { padding: 8px 12px 12px; }
  .btn-detail { padding: 9px 14px; font-size: 12px; }
  .section-heading h2 { font-size: 18px; }
  .servis-section { padding: 36px 12px; }
  .servis-grid { gap: 14px; }
  .servis-card { padding: 20px 16px; gap: 14px; }
  .servis-icon { width: 46px; height: 46px; border-radius: 12px; }
  .servis-icon i { font-size: 18px; }
  .servis-text h3 { font-size: 14px; }
  .servis-text p  { font-size: 12.5px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .yazinumune-item { width: 200px; }
  .partners-section { padding: 40px 0; }
  .partner-item { width: 150px; height: 80px; }
  .videobg-title { font-size: 26px; }
  .videobg-subtitle { font-size: 14px; }
  .meqale-card { width: 240px; }
}


/* ============================================================
   SON MƏQALƏLƏR CAROUSEL
   ============================================================ */
.meqale-carousel-section {
  background: var(--gray-50, #f8fafc);
  padding: 64px 0;
  border-top: 1px solid var(--gray-200, #e2e8f0);
  border-bottom: 1px solid var(--gray-200, #e2e8f0);
}

.meqale-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

/* Kart */
.meqale-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e2e8f0);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.meqale-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.meqale-card-img-link { display: block; }
.meqale-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--gray-100, #f1f5f9);
}
.meqale-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.meqale-card:hover .meqale-card-img img { transform: scale(1.06); }

.meqale-card-body {
  padding: 18px 18px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.meqale-card-date {
  font-size: 12px;
  color: var(--accent, #2563eb);
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.meqale-card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy, #001f3f);
  margin: 0;
  line-height: 1.45;
}
.meqale-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.meqale-card-title a:hover { color: var(--accent, #2563eb); }

.meqale-card-desc {
  font-size: 13px;
  color: var(--gray-600, #475569);
  line-height: 1.6;
  margin: 0;
}

.meqale-card-footer {
  padding: 12px 18px 16px;
}
.meqale-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent, #2563eb);
  text-decoration: none;
  transition: gap 0.2s;
}
.meqale-card-btn:hover { gap: 10px; }

/* Nav düymələri */
.meqale-nav {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200, #e2e8f0);
  background: var(--white, #fff);
  color: var(--gray-600, #475569);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.meqale-nav:hover {
  background: var(--navy, #001f3f);
  color: #fff;
  border-color: var(--navy, #001f3f);
}

@media (max-width: 768px) {
  .meqale-carousel-section { padding: 44px 0; }
  .meqale-card { width: 240px; }
  .meqale-card-img { height: 150px; }
}


/* ============================================================
   VİDEO PROMO BÖLMƏ (Ana Səhifə)
   ============================================================ */
.video-promo-section {
  padding: 52px 0;
  background: #f0f4f8;
}
.video-promo-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.video-promo-content {
  flex: 0 0 42%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.video-promo-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent, #2563eb);
  background: rgba(37,99,235,0.10);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.video-promo-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy, #001f3f);
  line-height: 1.3;
  margin: 0 0 24px;
}
.video-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #a8e637;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.video-promo-btn:hover {
  background: #90cb20;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168,230,55,0.40);
}
.video-promo-player {
  flex: 1;
  min-width: 0;
}
.video-promo-video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: block;
  background: #000;
  max-height: 320px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .video-promo-inner {
    flex-direction: column;
    gap: 28px;
  }
  .video-promo-player {
    width: 100%;
  }
  .video-promo-content {
    flex: 1;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .video-promo-title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .video-promo-section { padding: 36px 0; }
  .video-promo-title   { font-size: 20px; }
}